WME Mapraid MICH Overlay

Adds a Mapraid MICH area overlay.

// ==UserScript==
// @name         WME Mapraid MICH Overlay
// @namespace    https://gf.qytechs.cn/users/45389
// @version      1.3
// @description  Adds a Mapraid MICH area overlay.
// @author       MapOMatic (edits by drysoft)
// @include     /^https:\/\/(www|beta)\.waze\.com\/(?!user\/)(.{2,6}\/)?editor.*$/
// @exclude      https://www.waze.com/*user/editor/*
// @require      https://gf.qytechs.cn/scripts/24851-wazewrap/code/WazeWrap.js
// @license      GNU GPLv3
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Enter the state abbreviation:
    var _stateAbbr = "MICH";

    // Enter the MapRaid area names and the desired fill colors, in order they appear in the original map legend:
    var _areas = {
        'Equipo 1':{fillColor:'#7cb342'},
        'Equipo 2':{fillColor:'#ffea00'},
        'Equipo 3':{fillColor:'#01579b'},
		'Equipo 4':{fillColor:'#ff7e23'}
    };

    var _settingsStoreName = '_wme_' + _stateAbbr + '_mapraid';
    var _settings;
    var _features;
    var _kml;
    var _layerName = _stateAbbr + ' MapRaid';
    var _layer = null;
    var defaultFillOpacity = 0.2;

    function loadSettingsFromStorage() {
        _settings = $.parseJSON(localStorage.getItem(_settingsStoreName));
        if(!_settings) {
            _settings = {
                layerVisible: true,
                hiddenAreas: []
            };
        } else {
            _settings.layerVisible = (_settings.layerVisible === true);
            _settings.hiddenAreas = _settings.hiddenAreas || [];
        }
    }

    function saveSettingsToStorage() {
        if (localStorage) {
            var settings = {
                layerVisible: _layer.visibility,
                hiddenAreas: _settings.hiddenAreas
            };
            localStorage.setItem(_settingsStoreName, JSON.stringify(settings));
        }
    }

    function GetFeaturesFromKMLString(strKML) {
        var format = new OpenLayers.Format.KML({
            'internalProjection': W.map.baseLayer.projection,
            'externalProjection': new OpenLayers.Projection("EPSG:4326")
        });
        return format.read(strKML);
    }

    function updateDistrictNameDisplay(){
        $('.mapraid-region').remove();
        if (_layer !== null) {
            //var mapCenter = new OpenLayers.Geometry.Point(W.map.center.lon,W.map.center.lat);
			var mapCenter = new OpenLayers.Geometry.Point(W.map.getCenter().lon,W.map.getCenter().lat);
            for (var i=0;i<_layer.features.length;i++){
                var feature = _layer.features[i];
                var color;
                var text = '';
                var num;
                var url;
                if(feature.geometry.containsPoint(mapCenter)) {
                    text = feature.attributes.name;
                    color = '#00ffff';
                    var $div = $('<div>', {id:'mapraid', class:"mapraid-region", style:'display:inline-block;margin-left:10px;', title:'Click to toggle color on/off for this group'})
                    .css({color:color, cursor:"pointer"})
                    .click(toggleAreaFill);
                    var $span = $('<span>').css({display:'inline-block'});
                    $span.text('Mapraid MICH: ' + text).appendTo($div);
                    $('.location-info-region').parent().append($div);
                    if (color) {
                        break;
                    }
                }
            }
        }
    }

    function toggleAreaFill() {
        var text = $('#mapraid span').text();
        if (text) {
            var match = text.match(/Equipo (\d+)/);
            if (match.length > 1) {
                var group = parseInt(match[1]);
                var f = _layer.features[group-1];
                var hide = f.attributes.fillOpacity !== 0;
                f.attributes.fillOpacity = hide ? 0 : defaultFillOpacity;
                var idx = _settings.hiddenAreas.indexOf(group);
                if (hide) {
                    if (idx === -1) _settings.hiddenAreas.push(group);
                } else {
                    if (idx > -1) {
                        _settings.hiddenAreas.splice(idx,1);
                    }
                }
                saveSettingsToStorage();
                _layer.redraw();
            }
        }
    }


    function init() {
        InstallKML();
        loadSettingsFromStorage();
        var layerid = 'wme_' + _stateAbbr + '_mapraid';
        var _features = GetFeaturesFromKMLString(_kml);
        var i = 0;
        for(var areaName in _areas) {
            _features[i].attributes.name = areaName;
            _features[i].attributes.fillColor = _areas[areaName].fillColor;
            _features[i].attributes.fillOpacity = _settings.hiddenAreas.indexOf(i+1) > -1 ? 0 : defaultFillOpacity;
            i++;
        }
        var layerStyle = new OpenLayers.StyleMap({
            strokeDashstyle: 'solid',
            strokeColor: '#ff0000',
            strokeOpacity: 0.4,
            strokeWidth: 5,
            fillOpacity: '${fillOpacity}',
            fillColor: '${fillColor}'
        });
        _layer = new OL.Layer.Vector(_stateAbbr + " MapRaid", {
            rendererOptions: { zIndexing: true },
            uniqueName: layerid,
            shortcutKey: "S+" + 0,
            layerGroup: _stateAbbr + '_mapraid',
            zIndex: -9999,
            displayInLayerSwitcher: true,
            visibility: _settings.layerVisible,
            styleMap: layerStyle
        });
        I18n.translations[I18n.locale].layers.name[layerid] = _stateAbbr + " MapRaid";
        _layer.addFeatures(_features);
        W.map.addLayer(_layer);
        W.map.events.register("moveend", null, updateDistrictNameDisplay);
        window.addEventListener('beforeunload', function saveOnClose() { saveSettingsToStorage(); }, false);
        updateDistrictNameDisplay();

        // Add the layer checkbox to the Layers menu.
        WazeWrap.Interface.AddLayerCheckbox("display", "MapRaid Michoacan", _settings.layerVisible, layerToggled);
    }

    function layerToggled(visible) {
        _layer.setVisibility(visible);
        saveSettingsToStorage();
    }

    function awaitLogin(e) {
        if (e && e.user === null) {
            return;
        }
        if (typeof Waze === 'undefined' ||
            typeof W.loginManager === 'undefined' ||
            typeof WazeWrap.Interface === 'undefined') {
            setTimeout(awaitLogin, 100);
            return;
        }
        // if (!W.loginManager.hasUser()) {
        //    W.loginManager.events.register("login", null, awaitLogin);
        //    W.loginManager.events.register("loginStatus", null, awaitLogin);
        //    return;
        //}
        // TODO: check whether this is actually useful to do
        if (typeof document.getElementById('WazeMap') === undefined) {
            setTimeout(awaitLogin, 100);
            return;
        }
        init();
    }

    awaitLogin();

    function InstallKML(){
        OpenLayers.Format.KML=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{kml:"http://www.opengis.net/kml/2.2",gx:"http://www.google.com/kml/ext/2.2"},kmlns:"http://earth.google.com/kml/2.0",placemarksDesc:"No description available",foldersName:"OpenLayers export",foldersDesc:"Exported on "+new Date,extractAttributes:!0,kvpAttributes:!1,extractStyles:!1,extractTracks:!1,trackAttributes:null,internalns:null,features:null,styles:null,styleBaseUrl:"",fetched:null,maxDepth:0,initialize:function(a){this.regExes=
            {trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g,kmlColor:/(\w{2})(\w{2})(\w{2})(\w{2})/,kmlIconPalette:/root:\/\/icons\/palette-(\d+)(\.\w+)/,straightBracket:/\$\[(.*?)\]/g};this.externalProjection=new OpenLayers.Projection("EPSG:4326");OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){this.features=[];this.styles={};this.fetched={};return this.parseData(a,{depth:0,styleBaseUrl:this.styleBaseUrl})},parseData:function(a,b){"string"==typeof a&&
                (a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));for(var c=["Link","NetworkLink","Style","StyleMap","Placemark"],d=0,e=c.length;d<e;++d){var f=c[d],g=this.getElementsByTagNameNS(a,"*",f);if(0!=g.length)switch(f.toLowerCase()){case "link":case "networklink":this.parseLinks(g,b);break;case "style":this.extractStyles&&this.parseStyles(g,b);break;case "stylemap":this.extractStyles&&this.parseStyleMaps(g,b);break;case "placemark":this.parseFeatures(g,b)}}return this.features},parseLinks:function(a,
b){if(b.depth>=this.maxDepth)return!1;var c=OpenLayers.Util.extend({},b);c.depth++;for(var d=0,e=a.length;d<e;d++){var f=this.parseProperty(a[d],"*","href");f&&!this.fetched[f]&&(this.fetched[f]=!0,(f=this.fetchLink(f))&&this.parseData(f,c))}},fetchLink:function(a){if(a=OpenLayers.Request.GET({url:a,async:!1}))return a.responseText},parseStyles:function(a,b){for(var c=0,d=a.length;c<d;c++){var e=this.parseStyle(a[c]);e&&(this.styles[(b.styleBaseUrl||"")+"#"+e.id]=e)}},parseKmlColor:function(a){var b=
                null;a&&(a=a.match(this.regExes.kmlColor))&&(b={color:"#"+a[4]+a[3]+a[2],opacity:parseInt(a[1],16)/255});return b},parseStyle:function(a){for(var b={},c=["LineStyle","PolyStyle","IconStyle","BalloonStyle","LabelStyle"],d,e,f=0,g=c.length;f<g;++f)if(d=c[f],e=this.getElementsByTagNameNS(a,"*",d)[0])switch(d.toLowerCase()){case "linestyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.strokeColor=d.color,b.strokeOpacity=d.opacity;(d=this.parseProperty(e,"*","width"))&&(b.strokeWidth=
d);break;case "polystyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.fillOpacity=d.opacity,b.fillColor=d.color;"0"==this.parseProperty(e,"*","fill")&&(b.fillColor="none");"0"==this.parseProperty(e,"*","outline")&&(b.strokeWidth="0");break;case "iconstyle":var h=parseFloat(this.parseProperty(e,"*","scale")||1);d=32*h;var i=32*h,j=this.getElementsByTagNameNS(e,"*","Icon")[0];if(j){var k=this.parseProperty(j,"*","href");if(k){var l=this.parseProperty(j,"*","w"),m=this.parseProperty(j,
"*","h");OpenLayers.String.startsWith(k,"http://maps.google.com/mapfiles/kml")&&(!l&&!m)&&(m=l=64,h/=2);l=l||m;m=m||l;l&&(d=parseInt(l)*h);m&&(i=parseInt(m)*h);if(m=k.match(this.regExes.kmlIconPalette))l=m[1],m=m[2],k=this.parseProperty(j,"*","x"),j=this.parseProperty(j,"*","y"),k="http://maps.google.com/mapfiles/kml/pal"+l+"/icon"+(8*(j?7-j/32:7)+(k?k/32:0))+m;b.graphicOpacity=1;b.externalGraphic=k}}if(e=this.getElementsByTagNameNS(e,"*","hotSpot")[0])k=parseFloat(e.getAttribute("x")),j=parseFloat(e.getAttribute("y")),
                    l=e.getAttribute("xunits"),"pixels"==l?b.graphicXOffset=-k*h:"insetPixels"==l?b.graphicXOffset=-d+k*h:"fraction"==l&&(b.graphicXOffset=-d*k),e=e.getAttribute("yunits"),"pixels"==e?b.graphicYOffset=-i+j*h+1:"insetPixels"==e?b.graphicYOffset=-(j*h)+1:"fraction"==e&&(b.graphicYOffset=-i*(1-j)+1);b.graphicWidth=d;b.graphicHeight=i;break;case "balloonstyle":(e=OpenLayers.Util.getXmlNodeValue(e))&&(b.balloonStyle=e.replace(this.regExes.straightBracket,"${$1}"));break;case "labelstyle":if(d=this.parseProperty(e,
"*","color"),d=this.parseKmlColor(d))b.fontColor=d.color,b.fontOpacity=d.opacity}!b.strokeColor&&b.fillColor&&(b.strokeColor=b.fillColor);if((a=a.getAttribute("id"))&&b)b.id=a;return b},parseStyleMaps:function(a,b){for(var c=0,d=a.length;c<d;c++)for(var e=a[c],f=this.getElementsByTagNameNS(e,"*","Pair"),e=e.getAttribute("id"),g=0,h=f.length;g<h;g++){var i=f[g],j=this.parseProperty(i,"*","key");(i=this.parseProperty(i,"*","styleUrl"))&&"normal"==j&&(this.styles[(b.styleBaseUrl||"")+"#"+e]=this.styles[(b.styleBaseUrl||
"")+i])}},parseFeatures:function(a,b){for(var c=[],d=0,e=a.length;d<e;d++){var f=a[d],g=this.parseFeature.apply(this,[f]);if(g){this.extractStyles&&(g.attributes&&g.attributes.styleUrl)&&(g.style=this.getStyle(g.attributes.styleUrl,b));if(this.extractStyles){var h=this.getElementsByTagNameNS(f,"*","Style")[0];if(h&&(h=this.parseStyle(h)))g.style=OpenLayers.Util.extend(g.style,h)}if(this.extractTracks){if((f=this.getElementsByTagNameNS(f,this.namespaces.gx,"Track"))&&0<f.length)g={features:[],feature:g},
                    this.readNode(f[0],g),0<g.features.length&&c.push.apply(c,g.features)}else c.push(g)}else throw"Bad Placemark: "+d;}this.features=this.features.concat(c)},readers:{kml:{when:function(a,b){b.whens.push(OpenLayers.Date.parse(this.getChildValue(a)))},_trackPointAttribute:function(a,b){var c=a.nodeName.split(":").pop();b.attributes[c].push(this.getChildValue(a))}},gx:{Track:function(a,b){var c={whens:[],points:[],angles:[]};if(this.trackAttributes){var d;c.attributes={};for(var e=0,f=this.trackAttributes.length;e<
f;++e)d=this.trackAttributes[e],c.attributes[d]=[],d in this.readers.kml||(this.readers.kml[d]=this.readers.kml._trackPointAttribute)}this.readChildNodes(a,c);if(c.whens.length!==c.points.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:coord ("+c.points.length+") elements.");var g=0<c.angles.length;if(g&&c.whens.length!==c.angles.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:angles ("+c.angles.length+") elements.");for(var h,
i,e=0,f=c.whens.length;e<f;++e){h=b.feature.clone();h.fid=b.feature.fid||b.feature.id;i=c.points[e];h.geometry=i;"z"in i&&(h.attributes.altitude=i.z);this.internalProjection&&this.externalProjection&&h.geometry.transform(this.externalProjection,this.internalProjection);if(this.trackAttributes){i=0;for(var j=this.trackAttributes.length;i<j;++i)h.attributes[d]=c.attributes[this.trackAttributes[i]][e]}h.attributes.when=c.whens[e];h.attributes.trackId=b.feature.id;g&&(i=c.angles[e],h.attributes.heading=
parseFloat(i[0]),h.attributes.tilt=parseFloat(i[1]),h.attributes.roll=parseFloat(i[2]));b.features.push(h)}},coord:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/),d=new OpenLayers.Geometry.Point(c[0],c[1]);2<c.length&&(d.z=parseFloat(c[2]));b.points.push(d)},angles:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/);b.angles.push(c)}}},parseFeature:function(a){for(var b=["MultiGeometry","Polygon","LineString","Point"],
c,d,e,f=0,g=b.length;f<g;++f)if(c=b[f],this.internalns=a.namespaceURI?a.namespaceURI:this.kmlns,d=this.getElementsByTagNameNS(a,this.internalns,c),0<d.length){if(b=this.parseGeometry[c.toLowerCase()])e=b.apply(this,[d[0]]),this.internalProjection&&this.externalProjection&&e.transform(this.externalProjection,this.internalProjection);else throw new TypeError("Unsupported geometry type: "+c);break}var h;this.extractAttributes&&(h=this.parseAttributes(a));c=new OpenLayers.Feature.Vector(e,h);a=a.getAttribute("id")||
                    a.getAttribute("name");null!=a&&(c.fid=a);return c},getStyle:function(a,b){var c=OpenLayers.Util.removeTail(a),d=OpenLayers.Util.extend({},b);d.depth++;d.styleBaseUrl=c;!this.styles[a]&&!OpenLayers.String.startsWith(a,"#")&&d.depth<=this.maxDepth&&!this.fetched[c]&&(c=this.fetchLink(c))&&this.parseData(c,d);return OpenLayers.Util.extend({},this.styles[a])},parseGeometry:{point:function(a){var b=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),a=[];if(0<b.length)var c=b[0].firstChild.nodeValue,
                    c=c.replace(this.regExes.removeSpace,""),a=c.split(",");b=null;if(1<a.length)2==a.length&&(a[2]=null),b=new OpenLayers.Geometry.Point(a[0],a[1],a[2]);else throw"Bad coordinate string: "+c;return b},linestring:function(a,b){var c=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),d=null;if(0<c.length){for(var c=this.getChildValue(c[0]),c=c.replace(this.regExes.trimSpace,""),c=c.replace(this.regExes.trimComma,","),d=c.split(this.regExes.splitSpace),e=d.length,f=Array(e),g,h,i=0;i<e;++i)if(g=
d[i].split(","),h=g.length,1<h)2==g.length&&(g[2]=null),f[i]=new OpenLayers.Geometry.Point(g[0],g[1],g[2]);else throw"Bad LineString point coordinates: "+d[i];if(e)d=b?new OpenLayers.Geometry.LinearRing(f):new OpenLayers.Geometry.LineString(f);else throw"Bad LineString coordinates: "+c;}return d},polygon:function(a){var a=this.getElementsByTagNameNS(a,this.internalns,"LinearRing"),b=a.length,c=Array(b);if(0<b)for(var d=0,e=a.length;d<e;++d)if(b=this.parseGeometry.linestring.apply(this,[a[d],!0]))c[d]=
                        b;else throw"Bad LinearRing geometry: "+d;return new OpenLayers.Geometry.Polygon(c)},multigeometry:function(a){for(var b,c=[],d=a.childNodes,e=0,f=d.length;e<f;++e)a=d[e],1==a.nodeType&&(b=this.parseGeometry[(a.prefix?a.nodeName.split(":")[1]:a.nodeName).toLowerCase()])&&c.push(b.apply(this,[a]));return new OpenLayers.Geometry.Collection(c)}},parseAttributes:function(a){var b={},c=a.getElementsByTagName("ExtendedData");c.length&&(b=this.parseExtendedData(c[0]));for(var d,e,f,a=a.childNodes,c=0,g=
a.length;c<g;++c)if(d=a[c],1==d.nodeType&&(e=d.childNodes,1<=e.length&&3>=e.length)){switch(e.length){case 1:f=e[0];break;case 2:f=e[0];e=e[1];f=3==f.nodeType||4==f.nodeType?f:e;break;default:f=e[1]}if(3==f.nodeType||4==f.nodeType)if(d=d.prefix?d.nodeName.split(":")[1]:d.nodeName,f=OpenLayers.Util.getXmlNodeValue(f))f=f.replace(this.regExes.trimSpace,""),b[d]=f}return b},parseExtendedData:function(a){var b={},c,d,e,f,g=a.getElementsByTagName("Data");c=0;for(d=g.length;c<d;c++){e=g[c];f=e.getAttribute("name");
var h={},i=e.getElementsByTagName("value");i.length&&(h.value=this.getChildValue(i[0]));this.kvpAttributes?b[f]=h.value:(e=e.getElementsByTagName("displayName"),e.length&&(h.displayName=this.getChildValue(e[0])),b[f]=h)}a=a.getElementsByTagName("SimpleData");c=0;for(d=a.length;c<d;c++)h={},e=a[c],f=e.getAttribute("name"),h.value=this.getChildValue(e),this.kvpAttributes?b[f]=h.value:(h.displayName=f,b[f]=h);return b},parseProperty:function(a,b,c){var d,a=this.getElementsByTagNameNS(a,b,c);try{d=OpenLayers.Util.getXmlNodeValue(a[0])}catch(e){d=
    null}return d},write:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=this.createElementNS(this.kmlns,"kml"),c=this.createFolderXML(),d=0,e=a.length;d<e;++d)c.appendChild(this.createPlacemarkXML(a[d]));b.appendChild(c);return OpenLayers.Format.XML.prototype.write.apply(this,[b])},createFolderXML:function(){var a=this.createElementNS(this.kmlns,"Folder");if(this.foldersName){var b=this.createElementNS(this.kmlns,"name"),c=this.createTextNode(this.foldersName);b.appendChild(c);a.appendChild(b)}this.foldersDesc&&
        (b=this.createElementNS(this.kmlns,"description"),c=this.createTextNode(this.foldersDesc),b.appendChild(c),a.appendChild(b));return a},createPlacemarkXML:function(a){var b=this.createElementNS(this.kmlns,"name");b.appendChild(this.createTextNode(a.style&&a.style.label?a.style.label:a.attributes.name||a.id));var c=this.createElementNS(this.kmlns,"description");c.appendChild(this.createTextNode(a.attributes.description||this.placemarksDesc));var d=this.createElementNS(this.kmlns,"Placemark");null!=
        a.fid&&d.setAttribute("id",a.fid);d.appendChild(b);d.appendChild(c);b=this.buildGeometryNode(a.geometry);d.appendChild(b);a.attributes&&(a=this.buildExtendedData(a.attributes))&&d.appendChild(a);return d},buildGeometryNode:function(a){var b=a.CLASS_NAME,b=this.buildGeometry[b.substring(b.lastIndexOf(".")+1).toLowerCase()],c=null;b&&(c=b.apply(this,[a]));return c},buildGeometry:{point:function(a){var b=this.createElementNS(this.kmlns,"Point");b.appendChild(this.buildCoordinatesNode(a));return b},multipoint:function(a){return this.buildGeometry.collection.apply(this,
[a])},linestring:function(a){var b=this.createElementNS(this.kmlns,"LineString");b.appendChild(this.buildCoordinatesNode(a));return b},multilinestring:function(a){return this.buildGeometry.collection.apply(this,[a])},linearring:function(a){var b=this.createElementNS(this.kmlns,"LinearRing");b.appendChild(this.buildCoordinatesNode(a));return b},polygon:function(a){for(var b=this.createElementNS(this.kmlns,"Polygon"),a=a.components,c,d,e=0,f=a.length;e<f;++e)c=0==e?"outerBoundaryIs":"innerBoundaryIs",
        c=this.createElementNS(this.kmlns,c),d=this.buildGeometry.linearring.apply(this,[a[e]]),c.appendChild(d),b.appendChild(c);return b},multipolygon:function(a){return this.buildGeometry.collection.apply(this,[a])},collection:function(a){for(var b=this.createElementNS(this.kmlns,"MultiGeometry"),c,d=0,e=a.components.length;d<e;++d)(c=this.buildGeometryNode.apply(this,[a.components[d]]))&&b.appendChild(c);return b}},buildCoordinatesNode:function(a){var b=this.createElementNS(this.kmlns,"coordinates"),
        c;if(c=a.components){for(var d=c.length,e=Array(d),f=0;f<d;++f)a=c[f],e[f]=this.buildCoordinates(a);c=e.join(" ")}else c=this.buildCoordinates(a);c=this.createTextNode(c);b.appendChild(c);return b},buildCoordinates:function(a){this.internalProjection&&this.externalProjection&&(a=a.clone(),a.transform(this.internalProjection,this.externalProjection));return a.x+","+a.y},buildExtendedData:function(a){var b=this.createElementNS(this.kmlns,"ExtendedData"),c;for(c in a)if(a[c]&&"name"!=c&&"description"!=
c&&"styleUrl"!=c){var d=this.createElementNS(this.kmlns,"Data");d.setAttribute("name",c);var e=this.createElementNS(this.kmlns,"value");if("object"==typeof a[c]){if(a[c].value&&e.appendChild(this.createTextNode(a[c].value)),a[c].displayName){var f=this.createElementNS(this.kmlns,"displayName");f.appendChild(this.getXMLDoc().createCDATASection(a[c].displayName));d.appendChild(f)}}else e.appendChild(this.createTextNode(a[c]));d.appendChild(e);b.appendChild(d)}return this.isSimpleContent(b)?null:b},
                                                                      CLASS_NAME:"OpenLayers.Format.KML"});

        _kml = `
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
  <Document>
    <name>MapRaid_MX-MICH</name>
    <description/>
    <Style id="poly-01579B-1000-145-normal">
      <LineStyle>
        <color>ff9b5701</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>919b5701</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
    </Style>
    <Style id="poly-01579B-1000-145-highlight">
      <LineStyle>
        <color>ff9b5701</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>919b5701</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
    </Style>
    <StyleMap id="poly-01579B-1000-145">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-01579B-1000-145-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-01579B-1000-145-highlight</styleUrl>
      </Pair>
    </StyleMap>
    <Style id="poly-9C27B0-1000-161-normal">
      <LineStyle>
        <color>ffb0279c</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>a1b0279c</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
    </Style>
    <Style id="poly-9C27B0-1000-161-highlight">
      <LineStyle>
        <color>ffb0279c</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>a1b0279c</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
    </Style>
    <StyleMap id="poly-9C27B0-1000-161">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-9C27B0-1000-161-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-9C27B0-1000-161-highlight</styleUrl>
      </Pair>
    </StyleMap>
    <Style id="poly-C2185B-1000-128-normal">
      <LineStyle>
        <color>ff5b18c2</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>805b18c2</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
    </Style>
    <Style id="poly-C2185B-1000-128-highlight">
      <LineStyle>
        <color>ff5b18c2</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>805b18c2</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
    </Style>
    <StyleMap id="poly-C2185B-1000-128">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-C2185B-1000-128-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-C2185B-1000-128-highlight</styleUrl>
      </Pair>
    </StyleMap>
    <Style id="poly-F9A825-1000-156-normal">
      <LineStyle>
        <color>ff25a8f9</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>9c25a8f9</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
    </Style>
    <Style id="poly-F9A825-1000-156-highlight">
      <LineStyle>
        <color>ff25a8f9</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>9c25a8f9</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
    </Style>
    <StyleMap id="poly-F9A825-1000-156">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-F9A825-1000-156-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-F9A825-1000-156-highlight</styleUrl>
      </Pair>
    </StyleMap>
    <Folder>
      <name>MapRaid_MX_MICH</name>
      <Placemark>
        <name>Equipo 1</name>
        <description><![CDATA[description: <br>fid: 115<br>tessellate: -1<br>extrude: 0<br>visibility: -1<br>CVE_MUN: 004]]></description>
        <styleUrl>#poly-01579B-1000-145</styleUrl>
        <ExtendedData>
          <Data name="description">
            <value/>
          </Data>
          <Data name="fid">
            <value>115</value>
          </Data>
          <Data name="tessellate">
            <value>-1</value>
          </Data>
          <Data name="extrude">
            <value>0</value>
          </Data>
          <Data name="visibility">
            <value>-1</value>
          </Data>
          <Data name="CVE_MUN">
            <value>004</value>
          </Data>
        </ExtendedData>
        <Polygon>
          <outerBoundaryIs>
            <LinearRing>
              <tessellate>1</tessellate>
              <coordinates>
                -102.368821,20.328057,0
                -102.372381,20.329951,0
                -102.377829,20.329492,0
                -102.383122,20.330205,0
                -102.387996,20.333076,0
                -102.391522,20.333949,0
                -102.393337,20.333313,0
                -102.397195,20.328672,0
                -102.399849,20.327741,0
                -102.409966,20.333497,0
                -102.414406,20.333778,0
                -102.418596,20.33241,0
                -102.421229,20.332706,0
                -102.424605,20.334745,0
                -102.426858,20.338391,0
                -102.430014,20.340501,0
                -102.43351,20.341092,0
                -102.436423,20.340718,0
                -102.442473,20.338264,0
                -102.447386,20.338491,0
                -102.454472,20.334082,0
                -102.454805,20.332468,0
                -102.453823,20.330123,0
                -102.45486,20.328969,0
                -102.4583,20.328702,0
                -102.464941,20.330515,0
                -102.467834,20.330597,0
                -102.476149,20.326449,0
                -102.480496,20.325243,0
                -102.486122,20.320113,0
                -102.488863,20.310236,0
                -102.490039,20.308947,0
                -102.492312,20.308072,0
                -102.496207,20.307904,0
                -102.499558,20.313074,0
                -102.50352,20.315969,0
                -102.505442,20.315858,0
                -102.506559,20.314716,0
                -102.507408,20.311625,0
                -102.507284,20.303478,0
                -102.508955,20.301355,0
                -102.511884,20.300082,0
                -102.520839,20.300799,0
                -102.530477,20.295826,0
                -102.530824,20.293378,0
                -102.529785,20.290424,0
                -102.523025,20.28792,0
                -102.521059,20.285786,0
                -102.520196,20.278069,0
                -102.522403,20.275666,0
                -102.528584,20.270953,0
                -102.5313,20.270346,0
                -102.53431,20.271382,0
                -102.535437,20.272513,0
                -102.534298,20.276444,0
                -102.535864,20.278985,0
                -102.541948,20.280723,0
                -102.544118,20.280559,0
                -102.54709,20.277884,0
                -102.54848,20.271038,0
                -102.550491,20.267321,0
                -102.552087,20.261929,0
                -102.553402,20.260835,0
                -102.554977,20.260685,0
                -102.556982,20.261567,0
                -102.557837,20.263599,0
                -102.557451,20.267194,0
                -102.555681,20.270164,0
                -102.555818,20.271402,0
                -102.562462,20.277549,0
                -102.564583,20.278155,0
                -102.566827,20.276919,0
                -102.568747,20.274508,0
                -102.565419,20.270186,0
                -102.565659,20.2675,0
                -102.566679,20.265625,0
                -102.568561,20.265004,0
                -102.574155,20.265776,0
                -102.580103,20.264381,0
                -102.590486,20.258465,0
                -102.593453,20.262484,0
                -102.596818,20.261447,0
                -102.59752,20.261748,0
                -102.598941,20.267108,0
                -102.610146,20.269089,0
                -102.611548,20.268092,0
                -102.614806,20.263306,0
                -102.612395,20.259212,0
                -102.613254,20.255086,0
                -102.617243,20.25495,0
                -102.621004,20.252482,0
                -102.62052,20.251166,0
                -102.61796,20.249643,0
                -102.616922,20.247871,0
                -102.620058,20.245164,0
                -102.621036,20.241728,0
                -102.623873,20.237236,0
                -102.627331,20.229386,0
                -102.633811,20.225863,0
                -102.641893,20.223456,0
                -102.647749,20.224826,0
                -102.649971,20.22785,0
                -102.651256,20.228658,0
                -102.656927,20.228566,0
                -102.660133,20.231432,0
                -102.66973,20.230777,0
                -102.670838,20.229984,0
                -102.672903,20.226566,0
                -102.679025,20.226913,0
                -102.68534,20.218081,0
                -102.684588,20.212153,0
                -102.682943,20.206669,0
                -102.682855,20.197112,0
                -102.682062,20.190927,0
                -102.680844,20.189683,0
                -102.678915,20.185146,0
                -102.679722,20.171502,0
                -102.689676,20.166033,0
                -102.698227,20.166311,0
                -102.708875,20.168322,0
                -102.725313,20.165346,0
                -102.726594,20.165244,0
                -102.730226,20.166618,0
                -102.743259,20.154854,0
                -102.748779,20.153004,0
                -102.752494,20.148615,0
                -102.753696,20.148966,0
                -102.754907,20.152246,0
                -102.757498,20.153368,0
                -102.760133,20.152265,0
                -102.762196,20.149934,0
                -102.767054,20.148662,0
                -102.771288,20.145037,0
                -102.776178,20.141941,0
                -102.774398,20.13966,0
                -102.775267,20.13897,0
                -102.77731,20.138171,0
                -102.784701,20.137619,0
                -102.785147,20.137914,0
                -102.789377,20.138384,0
                -102.789338,20.139,0
                -102.791342,20.139507,0
                -102.792023,20.141553,0
                -102.797001,20.141229,0
                -102.798804,20.141761,0
                -102.808143,20.140973,0
                -102.810069,20.139872,0
                -102.815204,20.139265,0
                -102.819282,20.137248,0
                -102.811179,20.134976,0
                -102.80743,20.133177,0
                -102.806244,20.130416,0
                -102.804554,20.129078,0
                -102.804279,20.127296,0
                -102.801873,20.123034,0
                -102.802689,20.119669,0
                -102.807261,20.112663,0
                -102.814443,20.10668,0
                -102.816947,20.106067,0
                -102.818655,20.107113,0
                -102.824304,20.108038,0
                -102.828338,20.11167,0
                -102.833194,20.113752,0
                -102.834774,20.115133,0
                -102.835162,20.116562,0
                -102.837489,20.113482,0
                -102.840675,20.116109,0
                -102.845421,20.123289,0
                -102.84606,20.13077,0
                -102.848384,20.130864,0
                -102.850116,20.131851,0
                -102.852763,20.133749,0
                -102.854994,20.136713,0
                -102.85549,20.139498,0
                -102.857074,20.142702,0
                -102.857006,20.144303,0
                -102.855736,20.147791,0
                -102.854986,20.14735,0
                -102.852909,20.14785,0
                -102.852308,20.149247,0
                -102.862453,20.154393,0
                -102.864606,20.157204,0
                -102.865953,20.162364,0
                -102.867462,20.162664,0
                -102.871067,20.158914,0
                -102.875496,20.157576,0
                -102.881483,20.160074,0
                -102.886881,20.158809,0
                -102.89061,20.161157,0
                -102.891883,20.162819,0
                -102.894634,20.164168,0
                -102.901845,20.164433,0
                -102.906904,20.162207,0
                -102.910315,20.16249,0
                -102.917555,20.164463,0
                -102.921334,20.164747,0
                -102.923989,20.166249,0
                -102.930266,20.166994,0
                -102.935773,20.170708,0
                -102.94017,20.171682,0
                -102.950306,20.170417,0
                -102.954143,20.170878,0
                -102.954003,20.166569,0
                -102.943233,20.149777,0
                -102.9245,20.136258,0
                -102.926448,20.129575,0
                -102.933735,20.128491,0
                -102.940501,20.128399,0
                -102.942026,20.128829,0
                -102.94412,20.130825,0
                -102.947299,20.132399,0
                -102.947716,20.13402,0
                -102.950429,20.136628,0
                -102.951175,20.138185,0
                -102.954155,20.138735,0
                -102.956411,20.1411,0
                -102.957758,20.141219,0
                -102.95958,20.14124,0
                -102.961598,20.140197,0
                -102.963787,20.134786,0
                -102.964462,20.127136,0
                -102.968145,20.126619,0
                -102.970584,20.125404,0
                -102.976268,20.125368,0
                -102.985537,20.1274,0
                -102.98891,20.126195,0
                -102.992353,20.126373,0
                -102.995975,20.125612,0
                -102.998394,20.125961,0
                -103.000026,20.12765,0
                -102.999431,20.127898,0
                -102.999323,20.129842,0
                -103.001714,20.135106,0
                -103.004819,20.138196,0
                -103.010153,20.137152,0
                -103.031413,20.136551,0
                -103.0335,20.135664,0
                -103.035231,20.133486,0
                -103.031333,20.126751,0
                -103.042738,20.124675,0
                -103.044408,20.123601,0
                -103.043093,20.122953,0
                -103.042053,20.121015,0
                -103.041676,20.118857,0
                -103.043304,20.116016,0
                -103.04259,20.115196,0
                -103.041278,20.114941,0
                -103.03844,20.1166,0
                -103.035373,20.116716,0
                -103.034561,20.115862,0
                -103.034428,20.112587,0
                -103.032816,20.111361,0
                -103.033751,20.108697,0
                -103.033831,20.105935,0
                -103.036094,20.099424,0
                -103.039106,20.096779,0
                -103.040701,20.091096,0
                -103.041711,20.090641,0
                -103.035694,20.083921,0
                -103.035448,20.081398,0
                -103.032744,20.080426,0
                -103.030729,20.078549,0
                -103.03071,20.077748,0
                -103.033531,20.076642,0
                -103.033779,20.075676,0
                -103.033417,20.074708,0
                -103.030507,20.072715,0
                -103.032407,20.068725,0
                -103.031623,20.066414,0
                -103.029083,20.06475,0
                -103.030874,20.063796,0
                -103.030806,20.062183,0
                -103.028806,20.058312,0
                -103.024656,20.057758,0
                -103.026066,20.056012,0
                -103.02439,20.055086,0
                -103.024445,20.052367,0
                -103.021628,20.053303,0
                -103.021046,20.050554,0
                -103.021472,20.049424,0
                -103.020737,20.048931,0
                -103.02072,20.047306,0
                -103.021901,20.047276,0
                -103.023584,20.049198,0
                -103.025116,20.049924,0
                -103.026517,20.049344,0
                -103.026537,20.048488,0
                -103.025652,20.047794,0
                -103.025786,20.046466,0
                -103.028178,20.044552,0
                -103.027486,20.043445,0
                -103.027746,20.041443,0
                -103.026363,20.039348,0
                -103.027158,20.037994,0
                -103.026872,20.037271,0
                -103.028431,20.037282,0
                -103.028458,20.036661,0
                -103.02479,20.034801,0
                -103.024385,20.033309,0
                -103.025795,20.031688,0
                -103.028077,20.031095,0
                -103.030186,20.029507,0
                -103.031508,20.029824,0
                -103.033098,20.029307,0
                -103.033765,20.030564,0
                -103.034546,20.029373,0
                -103.035696,20.029415,0
                -103.036488,20.026987,0
                -103.03437,20.025169,0
                -103.034557,20.026161,0
                -103.032793,20.026154,0
                -103.03261,20.02468,0
                -103.033722,20.024263,0
                -103.034295,20.02295,0
                -103.036943,20.021824,0
                -103.036283,20.020945,0
                -103.037182,20.01775,0
                -103.037817,20.017581,0
                -103.037425,20.016968,0
                -103.03921,20.0166,0
                -103.041068,20.013304,0
                -103.042402,20.013598,0
                -103.045609,20.011287,0
                -103.044532,20.009608,0
                -103.044968,20.008103,0
                -103.046394,20.006817,0
                -103.04818,20.007278,0
                -103.047422,20.004881,0
                -103.044052,20.004552,0
                -103.045998,20.002649,0
                -103.044109,20.002526,0
                -103.043812,20.001979,0
                -103.044729,20.001119,0
                -103.044409,19.999978,0
                -103.046752,19.998278,0
                -103.048553,19.998142,0
                -103.050161,19.996742,0
                -103.050623,19.992761,0
                -103.051504,19.991611,0
                -103.04935,19.990672,0
                -103.04545,19.983594,0
                -103.044297,19.98289,0
                -103.042867,19.98027,0
                -103.041985,19.980236,0
                -103.040601,19.978944,0
                -103.040412,19.976785,0
                -103.039067,19.976106,0
                -103.039294,19.974879,0
                -103.038197,19.972815,0
                -103.037354,19.972768,0
                -103.036226,19.969443,0
                -103.034782,19.967913,0
                -103.0325,19.968435,0
                -103.029377,19.967435,0
                -103.028198,19.964856,0
                -103.026085,19.96416,0
                -103.026209,19.962017,0
                -103.02522,19.960492,0
                -103.023564,19.962379,0
                -103.021656,19.962211,0
                -103.020776,19.960452,0
                -103.019224,19.960638,0
                -103.016227,19.959343,0
                -103.015483,19.959754,0
                -103.010762,19.967027,0
                -103.012218,19.970158,0
                -103.010955,19.971067,0
                -103.004488,19.971706,0
                -102.999906,19.975133,0
                -102.99381,19.983895,0
                -102.97793,19.987194,0
                -102.97563,19.988753,0
                -102.968498,19.991124,0
                -102.963312,19.989837,0
                -102.96263,19.992671,0
                -102.95844,19.991988,0
                -102.958465,19.995381,0
                -102.956669,19.994957,0
                -102.956654,19.995638,0
                -102.954949,19.995712,0
                -102.95489,19.994678,0
                -102.952757,19.995259,0
                -102.952457,19.996366,0
                -102.951215,19.996557,0
                -102.948428,19.992654,0
                -102.945765,19.991093,0
                -102.943471,19.985535,0
                -102.943624,19.984134,0
                -102.936438,19.982864,0
                -102.93362,19.986107,0
                -102.928929,19.984031,0
                -102.926268,19.984188,0
                -102.922126,19.982158,0
                -102.918776,19.979465,0
                -102.917582,19.977182,0
                -102.915499,19.976161,0
                -102.914749,19.974801,0
                -102.911597,19.973391,0
                -102.91184,19.972488,0
                -102.904995,19.969079,0
                -102.902622,19.966863,0
                -102.885585,19.970233,0
                -102.882097,19.969585,0
                -102.882051,19.97561,0
                -102.880692,19.974728,0
                -102.87879,19.974191,0
                -102.87455,19.974497,0
                -102.863801,19.97064,0
                -102.859779,19.971374,0
                -102.861394,19.969788,0
                -102.856467,19.968044,0
                -102.855625,19.968607,0
                -102.854736,19.968095,0
                -102.846713,19.96833,0
                -102.824684,19.962952,0
                -102.821969,19.964577,0
                -102.8191,19.961198,0
                -102.818495,19.962518,0
                -102.815393,19.960956,0
                -102.815592,19.960494,0
                -102.810138,19.958669,0
                -102.809341,19.959106,0
                -102.808124,19.958089,0
                -102.807705,19.956185,0
                -102.806146,19.956007,0
                -102.806691,19.957516,0
                -102.805706,19.957186,0
                -102.803896,19.955103,0
                -102.803639,19.953052,0
                -102.803037,19.952601,0
                -102.800307,19.952362,0
                -102.799271,19.951623,0
                -102.796366,19.951727,0
                -102.794354,19.950319,0
                -102.790302,19.951104,0
                -102.787933,19.953176,0
                -102.787848,19.95427,0
                -102.786881,19.954548,0
                -102.786648,19.955545,0
                -102.780814,19.958664,0
                -102.779919,19.960039,0
                -102.776874,19.960154,0
                -102.775343,19.958557,0
                -102.784036,19.951236,0
                -102.783241,19.949166,0
                -102.776937,19.941482,0
                -102.770634,19.929868,0
                -102.764462,19.923833,0
                -102.756062,19.91844,0
                -102.744795,19.907867,0
                -102.73309,19.900915,0
                -102.731215,19.899508,0
                -102.731298,19.89893,0
                -102.73252,19.890383,0
                -102.735655,19.887616,0
                -102.739792,19.885766,0
                -102.739606,19.88508,0
                -102.741915,19.881005,0
                -102.74249,19.878759,0
                -102.737508,19.875383,0
                -102.734769,19.874518,0
                -102.735371,19.872191,0
                -102.735051,19.871301,0
                -102.733841,19.870887,0
                -102.733685,19.869823,0
                -102.735573,19.867436,0
                -102.734877,19.86039,0
                -102.730323,19.854459,0
                -102.730353,19.853209,0
                -102.733117,19.850731,0
                -102.734345,19.850397,0
                -102.735053,19.847314,0
                -102.743142,19.844604,0
                -102.749339,19.834479,0
                -102.75333,19.834124,0
                -102.751696,19.832153,0
                -102.749578,19.832137,0
                -102.748377,19.830121,0
                -102.748951,19.829689,0
                -102.748496,19.829047,0
                -102.74521,19.828003,0
                -102.744977,19.824833,0
                -102.743065,19.822985,0
                -102.743649,19.822081,0
                -102.741274,19.820659,0
                -102.739177,19.817684,0
                -102.739396,19.815826,0
                -102.741836,19.815878,0
                -102.741903,19.815125,0
                -102.74465,19.814228,0
                -102.74523,19.811973,0
                -102.749981,19.812747,0
                -102.750569,19.814274,0
                -102.751188,19.813586,0
                -102.753179,19.813417,0
                -102.754924,19.813416,0
                -102.755208,19.813959,0
                -102.758923,19.809387,0
                -102.759083,19.807984,0
                -102.760953,19.808434,0
                -102.762726,19.810057,0
                -102.764832,19.809311,0
                -102.767272,19.809216,0
                -102.768678,19.810098,0
                -102.769778,19.809483,0
                -102.774661,19.812717,0
                -102.778883,19.812603,0
                -102.780057,19.813653,0
                -102.78175,19.813049,0
                -102.783573,19.814902,0
                -102.784984,19.815449,0
                -102.787246,19.813605,0
                -102.792312,19.814116,0
                -102.792841,19.813146,0
                -102.794297,19.812685,0
                -102.819527,19.777941,0
                -102.812809,19.775953,0
                -102.811849,19.773989,0
                -102.813199,19.766369,0
                -102.812326,19.764162,0
                -102.809061,19.760868,0
                -102.808606,19.759561,0
                -102.809338,19.758342,0
                -102.810524,19.758162,0
                -102.814679,19.752639,0
                -102.816602,19.751873,0
                -102.816901,19.751133,0
                -102.816274,19.749905,0
                -102.81238,19.749983,0
                -102.805247,19.752947,0
                -102.803926,19.752158,0
                -102.804181,19.749151,0
                -102.802586,19.74663,0
                -102.803323,19.746867,0
                -102.803912,19.74572,0
                -102.805653,19.745455,0
                -102.807586,19.743717,0
                -102.809381,19.743391,0
                -102.810805,19.741016,0
                -102.806854,19.739956,0
                -102.806391,19.73859,0
                -102.804944,19.738256,0
                -102.805313,19.736955,0
                -102.804765,19.736645,0
                -102.805319,19.735913,0
                -102.804877,19.734675,0
                -102.798318,19.728783,0
                -102.795806,19.728373,0
                -102.794214,19.725384,0
                -102.79406,19.720827,0
                -102.792171,19.717671,0
                -102.785624,19.712547,0
                -102.785964,19.709591,0
                -102.785467,19.708202,0
                -102.782215,19.707186,0
                -102.780482,19.704324,0
                -102.78051,19.701795,0
                -102.783093,19.698192,0
                -102.782032,19.697022,0
                -102.782232,19.695211,0
                -102.785282,19.6948,0
                -102.789947,19.690874,0
                -102.789884,19.689478,0
                -102.792232,19.688423,0
                -102.790627,19.686857,0
                -102.795496,19.684716,0
                -102.795666,19.683516,0
                -102.796716,19.682424,0
                -102.797633,19.678124,0
                -102.800428,19.677873,0
                -102.804439,19.676328,0
                -102.805663,19.674838,0
                -102.80507,19.674139,0
                -102.800387,19.674921,0
                -102.800493,19.673417,0
                -102.79968,19.673123,0
                -102.798594,19.674005,0
                -102.795756,19.673323,0
                -102.793429,19.673783,0
                -102.792387,19.674625,0
                -102.791203,19.673186,0
                -102.792737,19.67074,0
                -102.791159,19.668059,0
                -102.791471,19.664978,0
                -102.793104,19.661431,0
                -102.793105,19.659199,0
                -102.792018,19.657912,0
                -102.792601,19.654551,0
                -102.792197,19.653611,0
                -102.789668,19.6534,0
                -102.787212,19.651728,0
                -102.785134,19.652722,0
                -102.784186,19.652088,0
                -102.784378,19.651269,0
                -102.78733,19.64955,0
                -102.787485,19.648229,0
                -102.783174,19.647427,0
                -102.782051,19.64662,0
                -102.783314,19.643531,0
                -102.782283,19.64259,0
                -102.780645,19.644212,0
                -102.779598,19.644312,0
                -102.779078,19.638644,0
                -102.778307,19.638153,0
                -102.776835,19.634113,0
                -102.777275,19.630265,0
                -102.776738,19.628434,0
                -102.774342,19.62662,0
                -102.769483,19.627891,0
                -102.760859,19.627534,0
                -102.758965,19.624868,0
                -102.755596,19.624574,0
                -102.753664,19.622899,0
                -102.755431,19.61982,0
                -102.753742,19.620157,0
                -102.753123,19.619449,0
                -102.753214,19.61744,0
                -102.749232,19.614683,0
                -102.747566,19.612777,0
                -102.737235,19.615076,0
                -102.730491,19.613769,0
                -102.728656,19.61302,0
                -102.728513,19.611891,0
                -102.726088,19.613137,0
                -102.725586,19.611976,0
                -102.725856,19.609941,0
                -102.722845,19.609804,0
                -102.720689,19.61067,0
                -102.720074,19.609739,0
                -102.719505,19.610026,0
                -102.718819,19.609412,0
                -102.720989,19.60769,0
                -102.720281,19.605856,0
                -102.717475,19.60573,0
                -102.717193,19.605101,0
                -102.718176,19.604089,0
                -102.715932,19.602935,0
                -102.715988,19.600342,0
                -102.714147,19.600471,0
                -102.718004,19.599935,0
                -102.718467,19.592873,0
                -102.721108,19.591574,0
                -102.721236,19.590258,0
                -102.724531,19.585415,0
                -102.72658,19.586144,0
                -102.725252,19.58392,0
                -102.722353,19.582377,0
                -102.725077,19.581384,0
                -102.726002,19.579466,0
                -102.725662,19.578039,0
                -102.720359,19.579622,0
                -102.721263,19.576915,0
                -102.720644,19.574291,0
                -102.716801,19.570637,0
                -102.719616,19.569486,0
                -102.719646,19.56829,0
                -102.717835,19.567787,0
                -102.716053,19.56638,0
                -102.713517,19.563261,0
                -102.716347,19.561211,0
                -102.716847,19.557417,0
                -102.718352,19.554671,0
                -102.717711,19.551257,0
                -102.718446,19.550319,0
                -102.71784,19.548647,0
                -102.715813,19.54634,0
                -102.711586,19.545568,0
                -102.710656,19.541069,0
                -102.712519,19.537353,0
                -102.716707,19.533526,0
                -102.716708,19.532935,0
                -102.715058,19.532333,0
                -102.714566,19.530783,0
                -102.71692,19.528307,0
                -102.717193,19.525814,0
                -102.718418,19.525863,0
                -102.717519,19.519468,0
                -102.722315,19.518141,0
                -102.7218,19.516664,0
                -102.72281,19.514808,0
                -102.722946,19.512179,0
                -102.723969,19.511297,0
                -102.724577,19.509122,0
                -102.725756,19.508799,0
                -102.72609,19.509656,0
                -102.72548,19.511401,0
                -102.727243,19.512167,0
                -102.73097,19.510545,0
                -102.730154,19.506846,0
                -102.731285,19.506662,0
                -102.733611,19.50358,0
                -102.735347,19.50334,0
                -102.738883,19.498667,0
                -102.738578,19.494764,0
                -102.737664,19.492957,0
                -102.736004,19.493168,0
                -102.733308,19.496017,0
                -102.731994,19.496047,0
                -102.728694,19.495117,0
                -102.725581,19.493155,0
                -102.723728,19.493176,0
                -102.722649,19.494397,0
                -102.721241,19.494436,0
                -102.720259,19.495253,0
                -102.719278,19.497351,0
                -102.7181,19.497528,0
                -102.716478,19.498994,0
                -102.715394,19.498587,0
                -102.713665,19.49914,0
                -102.713997,19.500905,0
                -102.712248,19.499717,0
                -102.710037,19.5027,0
                -102.707728,19.503564,0
                -102.704379,19.507173,0
                -102.702443,19.507439,0
                -102.701627,19.508637,0
                -102.700325,19.508113,0
                -102.699435,19.509115,0
                -102.696722,19.508724,0
                -102.692618,19.510227,0
                -102.690931,19.512738,0
                -102.689487,19.513416,0
                -102.677421,19.510256,0
                -102.673025,19.511995,0
                -102.673461,19.508731,0
                -102.672646,19.504457,0
                -102.67037,19.498832,0
                -102.671843,19.496639,0
                -102.671383,19.495332,0
                -102.671976,19.494592,0
                -102.67115,19.492341,0
                -102.668848,19.491422,0
                -102.67093,19.490626,0
                -102.65845,19.487047,0
                -102.634595,19.495968,0
                -102.631522,19.498537,0
                -102.629598,19.499274,0
                -102.628918,19.500451,0
                -102.626702,19.498809,0
                -102.623003,19.497524,0
                -102.62053,19.498772,0
                -102.609516,19.510079,0
                -102.602699,19.514364,0
                -102.59846,19.518649,0
                -102.592901,19.52184,0
                -102.591137,19.520097,0
                -102.586529,19.522981,0
                -102.583995,19.522694,0
                -102.581802,19.525782,0
                -102.582986,19.52803,0
                -102.582322,19.528759,0
                -102.582318,19.528326,0
                -102.57955,19.526577,0
                -102.578253,19.52449,0
                -102.576192,19.524895,0
                -102.576879,19.522647,0
                -102.575902,19.522976,0
                -102.575188,19.521887,0
                -102.576297,19.518439,0
                -102.576348,19.515889,0
                -102.571861,19.511192,0
                -102.572942,19.50695,0
                -102.575272,19.503675,0
                -102.575181,19.502565,0
                -102.573655,19.501486,0
                -102.57378,19.500127,0
                -102.575943,19.498062,0
                -102.549081,19.492423,0
                -102.545686,19.482814,0
                -102.542705,19.478033,0
                -102.543247,19.475409,0
                -102.546767,19.474169,0
                -102.546836,19.472881,0
                -102.548313,19.471428,0
                -102.552843,19.47066,0
                -102.554757,19.470937,0
                -102.555768,19.465148,0
                -102.557331,19.464433,0
                -102.558921,19.465329,0
                -102.559806,19.46465,0
                -102.560575,19.465166,0
                -102.563299,19.464927,0
                -102.564697,19.462275,0
                -102.567117,19.452258,0
                -102.566622,19.450908,0
                -102.567211,19.45004,0
                -102.567095,19.448131,0
                -102.568581,19.445478,0
                -102.568176,19.443355,0
                -102.566731,19.442645,0
                -102.564781,19.443033,0
                -102.558702,19.447004,0
                -102.547693,19.439488,0
                -102.551104,19.438797,0
                -102.554924,19.439862,0
                -102.557986,19.43958,0
                -102.559619,19.437576,0
                -102.55924,19.43688,0
                -102.556626,19.436339,0
                -102.552493,19.433474,0
                -102.548603,19.433836,0
                -102.546593,19.435099,0
                -102.544536,19.43325,0
                -102.543597,19.43096,0
                -102.543715,19.42958,0
                -102.548437,19.428723,0
                -102.551044,19.425378,0
                -102.551743,19.425746,0
                -102.55563,19.431536,0
                -102.560284,19.433891,0
                -102.565081,19.435157,0
                -102.567221,19.432521,0
                -102.568011,19.42964,0
                -102.570723,19.426729,0
                -102.574224,19.424255,0
                -102.576787,19.423909,0
                -102.577192,19.422671,0
                -102.576669,19.421973,0
                -102.573056,19.420083,0
                -102.572904,19.417318,0
                -102.572012,19.41528,0
                -102.568801,19.412626,0
                -102.579831,19.395415,0
                -102.582552,19.389667,0
                -102.584113,19.389181,0
                -102.585515,19.389787,0
                -102.587956,19.388679,0
                -102.591528,19.380161,0
                -102.594575,19.375604,0
                -102.594285,19.372193,0
                -102.594737,19.371185,0
                -102.598589,19.367998,0
                -102.601056,19.364487,0
                -102.600882,19.359813,0
                -102.601461,19.356874,0
                -102.605134,19.351166,0
                -102.605499,19.34933,0
                -102.604789,19.348071,0
                -102.605528,19.346977,0
                -102.604994,19.344987,0
                -102.605999,19.341913,0
                -102.605056,19.338455,0
                -102.606601,19.336282,0
                -102.607882,19.335615,0
                -102.610073,19.330894,0
                -102.610282,19.329944,0
                -102.608639,19.329062,0
                -102.611152,19.32501,0
                -102.611178,19.322796,0
                -102.614342,19.31935,0
                -102.616274,19.319489,0
                -102.617152,19.317328,0
                -102.620002,19.315151,0
                -102.621738,19.314928,0
                -102.623403,19.315611,0
                -102.624167,19.314829,0
                -102.626074,19.314852,0
                -102.626155,19.313359,0
                -102.628555,19.311922,0
                -102.627733,19.310263,0
                -102.629267,19.308834,0
                -102.629908,19.307105,0
                -102.632716,19.306982,0
                -102.632638,19.305553,0
                -102.631243,19.304505,0
                -102.634549,19.301837,0
                -102.634504,19.299947,0
                -102.635796,19.297295,0
                -102.638224,19.295091,0
                -102.638521,19.292044,0
                -102.637858,19.291305,0
                -102.639564,19.290519,0
                -102.639397,19.288316,0
                -102.64084,19.280949,0
                -102.643096,19.27834,0
                -102.639483,19.276926,0
                -102.641057,19.274188,0
                -102.638883,19.273013,0
                -102.638973,19.269923,0
                -102.641005,19.268091,0
                -102.640307,19.266601,0
                -102.640961,19.266171,0
                -102.642716,19.266687,0
                -102.643132,19.266198,0
                -102.63821,19.26266,0
                -102.639648,19.261248,0
                -102.643342,19.260645,0
                -102.645594,19.259493,0
                -102.645532,19.255312,0
                -102.648802,19.253239,0
                -102.648949,19.251515,0
                -102.648259,19.249945,0
                -102.651227,19.24923,0
                -102.649683,19.246954,0
                -102.651468,19.243107,0
                -102.656654,19.241156,0
                -102.65652,19.239839,0
                -102.653296,19.23798,0
                -102.651861,19.236385,0
                -102.651842,19.235519,0
                -102.656836,19.232502,0
                -102.655241,19.22992,0
                -102.656159,19.228737,0
                -102.657831,19.228291,0
                -102.660003,19.229869,0
                -102.661298,19.228556,0
                -102.661909,19.227262,0
                -102.661984,19.224077,0
                -102.66098,19.221156,0
                -102.661806,19.219098,0
                -102.662707,19.218719,0
                -102.667731,19.221508,0
                -102.668652,19.220064,0
                -102.668087,19.217494,0
                -102.669976,19.214601,0
                -102.669266,19.213623,0
                -102.669923,19.212412,0
                -102.676615,19.218027,0
                -102.693899,19.226297,0
                -102.69703,19.225944,0
                -102.699648,19.224273,0
                -102.700692,19.224537,0
                -102.701518,19.226249,0
                -102.699157,19.231507,0
                -102.696989,19.231661,0
                -102.69826,19.23291,0
                -102.696694,19.234092,0
                -102.696225,19.235949,0
                -102.697323,19.238049,0
                -102.6965,19.238897,0
                -102.695553,19.238862,0
                -102.694368,19.237428,0
                -102.694259,19.238418,0
                -102.695169,19.242,0
                -102.69489,19.247774,0
                -102.698826,19.249931,0
                -102.700433,19.248485,0
                -102.702017,19.248235,0
                -102.702261,19.246998,0
                -102.703486,19.246551,0
                -102.705262,19.247053,0
                -102.705397,19.244279,0
                -102.706534,19.243578,0
                -102.70545,19.242574,0
                -102.705534,19.241907,0
                -102.705914,19.241462,0
                -102.707803,19.242326,0
                -102.708422,19.241177,0
                -102.708151,19.239442,0
                -102.706826,19.239054,0
                -102.70713,19.238318,0
                -102.707629,19.237725,0
                -102.709022,19.238533,0
                -102.710686,19.236006,0
                -102.712722,19.235808,0
                -102.714668,19.237295,0
                -102.716546,19.237441,0
                -102.717024,19.238562,0
                -102.719444,19.238109,0
                -102.72791,19.242395,0
                -102.73542,19.241593,0
                -102.737721,19.242202,0
                -102.7399,19.245663,0
                -102.740619,19.248334,0
                -102.745291,19.249481,0
                -102.746662,19.252173,0
                -102.748649,19.253523,0
                -102.749879,19.25327,0
                -102.753816,19.255805,0
                -102.762287,19.250695,0
                -102.763612,19.250611,0
                -102.76512,19.248632,0
                -102.7693,19.247737,0
                -102.773204,19.245359,0
                -102.772513,19.245021,0
                -102.768892,19.237832,0
                -102.768189,19.235065,0
                -102.769248,19.232849,0
                -102.771595,19.23305,0
                -102.773485,19.238937,0
                -102.775122,19.240074,0
                -102.780966,19.238501,0
                -102.789359,19.235183,0
                -102.78955,19.225792,0
                -102.788844,19.222868,0
                -102.785352,19.22044,0
                -102.783019,19.220527,0
                -102.779755,19.222477,0
                -102.775476,19.221857,0
                -102.773536,19.220558,0
                -102.774,19.219925,0
                -102.773321,19.218765,0
                -102.774078,19.217378,0
                -102.776114,19.215869,0
                -102.782329,19.217999,0
                -102.787214,19.215266,0
                -102.787579,19.214091,0
                -102.787072,19.21326,0
                -102.784744,19.213473,0
                -102.781035,19.212049,0
                -102.778988,19.20892,0
                -102.778561,19.20713,0
                -102.779717,19.205702,0
                -102.781309,19.205013,0
                -102.783184,19.206222,0
                -102.784698,19.209949,0
                -102.785965,19.210568,0
                -102.787431,19.210115,0
                -102.788989,19.208057,0
                -102.789171,19.206494,0
                -102.7889,19.2054,0
                -102.786688,19.203914,0
                -102.78672,19.201004,0
                -102.790812,19.197728,0
                -102.78949,19.194898,0
                -102.788743,19.194744,0
                -102.786532,19.197296,0
                -102.78475,19.197423,0
                -102.784138,19.196776,0
                -102.784068,19.194596,0
                -102.780964,19.191473,0
                -102.776492,19.18928,0
                -102.771866,19.188298,0
                -102.771342,19.187517,0
                -102.771226,19.186155,0
                -102.77219,19.184863,0
                -102.775105,19.185047,0
                -102.779512,19.187386,0
                -102.783377,19.185832,0
                -102.784812,19.184241,0
                -102.784644,19.182882,0
                -102.782848,19.181283,0
                -102.776162,19.179277,0
                -102.775843,19.178219,0
                -102.775536,19.17656,0
                -102.777087,19.171538,0
                -102.776696,19.170705,0
                -102.774629,19.169548,0
                -102.773982,19.166904,0
                -102.774843,19.167278,0
                -102.775999,19.166695,0
                -102.777963,19.164867,0
                -102.779916,19.158715,0
                -102.779137,19.156144,0
                -102.776925,19.154094,0
                -102.774854,19.153827,0
                -102.77283,19.155006,0
                -102.769755,19.155568,0
                -102.767854,19.156916,0
                -102.766576,19.1614,0
                -102.765656,19.161866,0
                -102.764089,19.161463,0
                -102.762394,19.160522,0
                -102.760723,19.158315,0
                -102.7596,19.152692,0
                -102.752205,19.147632,0
                -102.74349,19.146254,0
                -102.740561,19.143995,0
                -102.748201,19.139134,0
                -102.748577,19.136816,0
                -102.746603,19.135689,0
                -102.745623,19.136431,0
                -102.74309,19.141066,0
                -102.739925,19.140997,0
                -102.738204,19.139837,0
                -102.737197,19.1378,0
                -102.737224,19.135806,0
                -102.738796,19.129156,0
                -102.7391,19.124576,0
                -102.737742,19.122892,0
                -102.734255,19.12234,0
                -102.724688,19.12654,0
                -102.722002,19.125799,0
                -102.721332,19.123702,0
                -102.725314,19.121826,0
                -102.728889,19.118204,0
                -102.729761,19.116511,0
                -102.727424,19.110657,0
                -102.719502,19.109838,0
                -102.718304,19.108449,0
                -102.717577,19.106156,0
                -102.717925,19.103467,0
                -102.721204,19.09746,0
                -102.721344,19.09594,0
                -102.720298,19.094842,0
                -102.717341,19.094234,0
                -102.71445,19.095176,0
                -102.713506,19.096864,0
                -102.712773,19.10511,0
                -102.710393,19.106391,0
                -102.703591,19.101925,0
                -102.700606,19.098984,0
                -102.701113,19.097028,0
                -102.704478,19.09441,0
                -102.703746,19.092202,0
                -102.701507,19.09215,0
                -102.698095,19.09422,0
                -102.693756,19.098025,0
                -102.691227,19.098562,0
                -102.690094,19.097797,0
                -102.691026,19.094783,0
                -102.694795,19.092449,0
                -102.69594,19.091034,0
                -102.6955,19.090002,0
                -102.694238,19.089243,0
                -102.6924,19.089203,0
                -102.688183,19.089914,0
                -102.685312,19.085106,0
                -102.684346,19.079572,0
                -102.68255,19.07794,0
                -102.679929,19.079634,0
                -102.677155,19.084993,0
                -102.672817,19.085212,0
                -102.671512,19.082097,0
                -102.675252,19.074719,0
                -102.675207,19.072382,0
                -102.673851,19.070483,0
                -102.672465,19.069893,0
                -102.669984,19.070454,0
                -102.66748,19.072001,0
                -102.664478,19.07222,0
                -102.663644,19.071598,0
                -102.663094,19.070108,0
                -102.664007,19.06263,0
                -102.663495,19.060034,0
                -102.657334,19.053911,0
                -102.652675,19.04812,0
                -102.649097,19.047152,0
                -102.646282,19.047446,0
                -102.634712,19.052099,0
                -102.621994,19.048896,0
                -102.621504,19.047894,0
                -102.620039,19.047184,0
                -102.61459,19.045622,0
                -102.614246,19.04646,0
                -102.610888,19.047418,0
                -102.602841,19.045581,0
                -102.598866,19.045786,0
                -102.595785,19.046974,0
                -102.595477,19.047818,0
                -102.59094,19.047528,0
                -102.587911,19.045151,0
                -102.583107,19.039511,0
                -102.579653,19.038611,0
                -102.576984,19.036843,0
                -102.571487,19.035768,0
                -102.568506,19.034321,0
                -102.56848,19.033502,0
                -102.570052,19.031348,0
                -102.576765,19.026796,0
                -102.579461,19.023178,0
                -102.57802,19.020821,0
                -102.576411,19.021951,0
                -102.5739,19.022499,0
                -102.569369,19.021752,0
                -102.562879,19.018325,0
                -102.561866,19.017092,0
                -102.561074,19.013186,0
                -102.565896,19.008388,0
                -102.566828,19.004893,0
                -102.566397,19.003378,0
                -102.565754,19.003028,0
                -102.563283,19.004029,0
                -102.556141,19.002916,0
                -102.548677,19.003476,0
                -102.543029,19.002738,0
                -102.535914,19.000801,0
                -102.526804,18.997189,0
                -102.522683,18.994235,0
                -102.521382,18.99393,0
                -102.518566,18.995106,0
                -102.516418,18.997664,0
                -102.515704,18.999885,0
                -102.516249,19.001692,0
                -102.515811,19.00477,0
                -102.513261,19.011471,0
                -102.510884,19.013474,0
                -102.510396,19.014934,0
                -102.502021,19.013491,0
                -102.503534,19.044514,0
                -102.516439,19.054777,0
                -102.525385,19.05805,0
                -102.526508,19.059248,0
                -102.523166,19.068731,0
                -102.525223,19.077311,0
                -102.523183,19.08609,0
                -102.517545,19.09156,0
                -102.514346,19.100912,0
                -102.515833,19.10611,0
                -102.515635,19.108971,0
                -102.514389,19.109141,0
                -102.513913,19.113115,0
                -102.509631,19.120173,0
                -102.510113,19.121276,0
                -102.506063,19.120156,0
                -102.506317,19.121284,0
                -102.508662,19.123231,0
                -102.50845,19.125799,0
                -102.506615,19.127476,0
                -102.507259,19.128848,0
                -102.506759,19.130336,0
                -102.511562,19.132687,0
                -102.511266,19.133803,0
                -102.507823,19.137152,0
                -102.508092,19.138193,0
                -102.505672,19.138606,0
                -102.504081,19.137909,0
                -102.504303,19.142292,0
                -102.502462,19.141643,0
                -102.501116,19.142601,0
                -102.499884,19.142426,0
                -102.497668,19.144769,0
                -102.495567,19.145232,0
                -102.495095,19.146032,0
                -102.493596,19.145845,0
                -102.494962,19.147048,0
                -102.490749,19.148398,0
                -102.488721,19.150137,0
                -102.482682,19.152682,0
                -102.481528,19.154151,0
                -102.482293,19.155668,0
                -102.478157,19.156524,0
                -102.477026,19.155375,0
                -102.467722,19.135976,0
                -102.45806,19.132884,0
                -102.442539,19.139869,0
                -102.436173,19.136747,0
                -102.435183,19.138611,0
                -102.435029,19.141312,0
                -102.432932,19.14356,0
                -102.432379,19.145479,0
                -102.430361,19.147704,0
                -102.429133,19.148083,0
                -102.428889,19.149397,0
                -102.424958,19.152477,0
                -102.422434,19.15562,0
                -102.422217,19.156841,0
                -102.419126,19.159907,0
                -102.418618,19.162525,0
                -102.41935,19.163637,0
                -102.417057,19.165787,0
                -102.416447,19.167576,0
                -102.41755,19.169722,0
                -102.417461,19.172215,0
                -102.416522,19.171987,0
                -102.414983,19.174349,0
                -102.41477,19.177448,0
                -102.41319,19.179918,0
                -102.41328,19.180116,0
                -102.393058,19.173019,0
                -102.38714,19.182425,0
                -102.386808,19.185601,0
                -102.367482,19.182864,0
                -102.360615,19.18962,0
                -102.352687,19.195774,0
                -102.342884,19.21322,0
                -102.333699,19.21902,0
                -102.325819,19.21887,0
                -102.323737,19.21718,0
                -102.321989,19.216903,0
                -102.321667,19.214983,0
                -102.319396,19.212996,0
                -102.319006,19.210595,0
                -102.314094,19.204381,0
                -102.313725,19.203358,0
                -102.314547,19.202121,0
                -102.314558,19.20061,0
                -102.312053,19.201015,0
                -102.311177,19.203079,0
                -102.309929,19.203077,0
                -102.307453,19.20569,0
                -102.307663,19.206585,0
                -102.306082,19.206322,0
                -102.305052,19.207131,0
                -102.300158,19.207974,0
                -102.291574,19.198809,0
                -102.281251,19.201073,0
                -102.252971,19.227983,0
                -102.248042,19.224988,0
                -102.243467,19.218917,0
                -102.239776,19.215942,0
                -102.231033,19.213052,0
                -102.22998,19.213765,0
                -102.22673,19.213685,0
                -102.225132,19.215314,0
                -102.224116,19.215522,0
                -102.221017,19.213531,0
                -102.215913,19.213475,0
                -102.214665,19.213996,0
                -102.21454,19.215188,0
                -102.210106,19.215789,0
                -102.208687,19.217787,0
                -102.207414,19.217758,0
                -102.204327,19.219558,0
                -102.203051,19.222668,0
                -102.20372,19.225107,0
                -102.202854,19.229429,0
                -102.201157,19.230059,0
                -102.199722,19.229571,0
                -102.1968,19.230576,0
                -102.196188,19.234211,0
                -102.194182,19.2348,0
                -102.193844,19.235825,0
                -102.193848,19.237077,0
                -102.195053,19.239011,0
                -102.19422,19.240004,0
                -102.196724,19.242874,0
                -102.195579,19.245285,0
                -102.195954,19.251222,0
                -102.194024,19.252566,0
                -102.194216,19.257895,0
                -102.193305,19.261364,0
                -102.194163,19.261744,0
                -102.194249,19.26305,0
                -102.192996,19.264868,0
                -102.192875,19.26716,0
                -102.193857,19.267114,0
                -102.193853,19.271796,0
                -102.192367,19.273077,0
                -102.191492,19.273055,0
                -102.188786,19.275582,0
                -102.187349,19.275656,0
                -102.18609,19.278398,0
                -102.182497,19.281276,0
                -102.181472,19.279971,0
                -102.175517,19.280292,0
                -102.17529,19.277758,0
                -102.176148,19.275482,0
                -102.176258,19.269726,0
                -102.175434,19.267821,0
                -102.176303,19.267488,0
                -102.171672,19.264277,0
                -102.166789,19.263217,0
                -102.163876,19.254011,0
                -102.159844,19.254735,0
                -102.158992,19.253439,0
                -102.159596,19.251865,0
                -102.160619,19.251208,0
                -102.160273,19.25,0
                -102.157946,19.247312,0
                -102.156226,19.246322,0
                -102.155993,19.244089,0
                -102.154988,19.242191,0
                -102.15628,19.238025,0
                -102.155032,19.236921,0
                -102.150292,19.237442,0
                -102.149297,19.23605,0
                -102.147162,19.232422,0
                -102.146916,19.229285,0
                -102.145348,19.225426,0
                -102.145022,19.221351,0
                -102.14439,19.220617,0
                -102.144837,19.218742,0
                -102.143611,19.216856,0
                -102.136473,19.212714,0
                -102.134052,19.212232,0
                -102.13307,19.209771,0
                -102.130425,19.20835,0
                -102.130478,19.20655,0
                -102.128073,19.204971,0
                -102.126898,19.205158,0
                -102.125962,19.204224,0
                -102.123923,19.199818,0
                -102.120608,19.200063,0
                -102.117975,19.198563,0
                -102.113251,19.199365,0
                -102.107668,19.196347,0
                -102.105203,19.196586,0
                -102.10468,19.195753,0
                -102.10318,19.196925,0
                -102.10193,19.192589,0
                -102.099278,19.192788,0
                -102.096822,19.191519,0
                -102.097747,19.187708,0
                -102.096327,19.187472,0
                -102.093236,19.185229,0
                -102.090438,19.184965,0
                -102.087787,19.190321,0
                -102.087831,19.191585,0
                -102.088913,19.192388,0
                -102.090262,19.196501,0
                -102.089259,19.200769,0
                -102.089591,19.204153,0
                -102.088138,19.208501,0
                -102.088689,19.209969,0
                -102.083952,19.223537,0
                -102.08638,19.224499,0
                -102.086112,19.225985,0
                -102.086953,19.227377,0
                -102.082422,19.22827,0
                -102.085056,19.230949,0
                -102.085685,19.232792,0
                -102.084842,19.234872,0
                -102.084224,19.240151,0
                -102.08176,19.24108,0
                -102.078312,19.239747,0
                -102.075397,19.236809,0
                -102.075009,19.234975,0
                -102.072684,19.233551,0
                -102.070759,19.229526,0
                -102.067545,19.230691,0
                -102.066791,19.229167,0
                -102.063325,19.228567,0
                -102.06201,19.227686,0
                -102.061262,19.228011,0
                -102.061273,19.227373,0
                -102.063204,19.226047,0
                -102.061453,19.223253,0
                -102.058244,19.224255,0
                -102.05625,19.224052,0
                -102.059252,19.232209,0
                -102.0621,19.230316,0
                -102.063454,19.232891,0
                -102.060561,19.23596,0
                -102.061589,19.238187,0
                -102.062403,19.239282,0
                -102.067752,19.241858,0
                -102.06696,19.244835,0
                -102.072774,19.247862,0
                -102.073751,19.252263,0
                -102.072947,19.255435,0
                -102.076582,19.258908,0
                -102.077437,19.260544,0
                -102.07722,19.265094,0
                -102.079913,19.267133,0
                -102.079653,19.268505,0
                -102.081817,19.27255,0
                -102.069591,19.277909,0
                -102.036348,19.27248,0
                -102.034835,19.268956,0
                -102.031975,19.266261,0
                -102.015042,19.264027,0
                -101.998288,19.25288,0
                -101.990545,19.252359,0
                -101.975781,19.25196,0
                -101.961379,19.255803,0
                -101.951475,19.260288,0
                -101.949897,19.26018,0
                -101.950338,19.262186,0
                -101.949228,19.262989,0
                -101.945929,19.261544,0
                -101.942486,19.264723,0
                -101.943119,19.265554,0
                -101.945478,19.265451,0
                -101.946535,19.267574,0
                -101.949851,19.269308,0
                -101.949494,19.271923,0
                -101.949961,19.272962,0
                -101.948634,19.273525,0
                -101.948274,19.274362,0
                -101.949381,19.275996,0
                -101.948636,19.277398,0
                -101.950886,19.278653,0
                -101.9533,19.281532,0
                -101.953804,19.281387,0
                -101.954639,19.28261,0
                -101.954748,19.284579,0
                -101.953864,19.285529,0
                -101.956383,19.287439,0
                -101.956883,19.289056,0
                -101.961758,19.293088,0
                -101.964125,19.299925,0
                -101.963229,19.302331,0
                -101.963977,19.304903,0
                -101.968448,19.30982,0
                -101.970757,19.314587,0
                -101.97272,19.317036,0
                -101.974221,19.321066,0
                -101.977471,19.323898,0
                -101.979181,19.324114,0
                -101.98136,19.323091,0
                -101.983862,19.32284,0
                -101.985916,19.323241,0
                -101.986778,19.322581,0
                -101.987996,19.322969,0
                -101.989798,19.324926,0
                -101.990559,19.324743,0
                -101.990984,19.326655,0
                -101.992371,19.325395,0
                -101.993727,19.325725,0
                -101.995107,19.329939,0
                -101.994698,19.331423,0
                -101.995963,19.331603,0
                -101.996815,19.333385,0
                -101.995525,19.339347,0
                -101.996458,19.343409,0
                -101.993851,19.345722,0
                -101.994526,19.346662,0
                -101.992385,19.350086,0
                -101.991596,19.353288,0
                -101.980683,19.359536,0
                -101.967471,19.36093,0
                -101.968651,19.362659,0
                -101.970769,19.370459,0
                -101.966294,19.370957,0
                -101.965065,19.369849,0
                -101.96248,19.371435,0
                -101.957466,19.37138,0
                -101.955396,19.372024,0
                -101.954807,19.371477,0
                -101.953565,19.37166,0
                -101.953887,19.369474,0
                -101.95252,19.368381,0
                -101.952512,19.369711,0
                -101.951612,19.370232,0
                -101.949468,19.37083,0
                -101.948227,19.370273,0
                -101.947024,19.37087,0
                -101.948297,19.373262,0
                -101.94826,19.376195,0
                -101.941508,19.377849,0
                -101.940638,19.379,0
                -101.938927,19.37841,0
                -101.937568,19.379173,0
                -101.933645,19.376397,0
                -101.93339,19.372945,0
                -101.932336,19.371145,0
                -101.928752,19.369218,0
                -101.928582,19.362877,0
                -101.927701,19.363362,0
                -101.926998,19.366,0
                -101.925034,19.367529,0
                -101.922095,19.368035,0
                -101.919904,19.366374,0
                -101.918261,19.367094,0
                -101.915361,19.367175,0
                -101.913126,19.369615,0
                -101.905825,19.373418,0
                -101.902963,19.373489,0
                -101.901543,19.374579,0
                -101.89907,19.37495,0
                -101.894356,19.374467,0
                -101.888792,19.375881,0
                -101.883163,19.38047,0
                -101.882571,19.382128,0
                -101.86147,19.3801,0
                -101.858623,19.384304,0
                -101.858176,19.386772,0
                -101.856325,19.387554,0
                -101.854084,19.387075,0
                -101.85343,19.385323,0
                -101.851912,19.38418,0
                -101.851022,19.386273,0
                -101.838218,19.38636,0
                -101.837261,19.377759,0
                -101.838503,19.373612,0
                -101.841154,19.371216,0
                -101.837618,19.368832,0
                -101.838552,19.368506,0
                -101.837914,19.367029,0
                -101.839582,19.36546,0
                -101.839921,19.366589,0
                -101.841381,19.36569,0
                -101.843401,19.363213,0
                -101.84087,19.36331,0
                -101.838761,19.364753,0
                -101.837533,19.364598,0
                -101.83596,19.363496,0
                -101.835776,19.36222,0
                -101.833884,19.362794,0
                -101.834213,19.361366,0
                -101.833788,19.361138,0
                -101.832505,19.362163,0
                -101.830968,19.361914,0
                -101.827983,19.365567,0
                -101.825081,19.367189,0
                -101.820573,19.367049,0
                -101.819578,19.368141,0
                -101.81445,19.369797,0
                -101.808118,19.369577,0
                -101.807139,19.372024,0
                -101.80835,19.372947,0
                -101.809234,19.376189,0
                -101.810943,19.377749,0
                -101.810611,19.378354,0
                -101.811121,19.378749,0
                -101.808905,19.402554,0
                -101.829007,19.416934,0
                -101.835684,19.428224,0
                -101.832369,19.438977,0
                -101.830808,19.438609,0
                -101.830754,19.439726,0
                -101.831615,19.439639,0
                -101.831504,19.440375,0
                -101.830558,19.440248,0
                -101.82888,19.44155,0
                -101.828908,19.442264,0
                -101.800943,19.465511,0
                -101.805446,19.484919,0
                -101.805132,19.488644,0
                -101.805126,19.488624,0
                -101.795871,19.490038,0
                -101.791704,19.490218,0
                -101.787739,19.489315,0
                -101.783607,19.489673,0
                -101.781632,19.491,0
                -101.778966,19.496067,0
                -101.779307,19.496417,0
                -101.776094,19.496521,0
                -101.775964,19.495473,0
                -101.777796,19.492002,0
                -101.777478,19.490965,0
                -101.77594,19.489891,0
                -101.776181,19.486046,0
                -101.775113,19.483193,0
                -101.771139,19.483994,0
                -101.770711,19.484968,0
                -101.768737,19.484307,0
                -101.76832,19.483246,0
                -101.766215,19.484366,0
                -101.761857,19.484504,0
                -101.760663,19.483956,0
                -101.758223,19.484358,0
                -101.755629,19.483351,0
                -101.753749,19.481777,0
                -101.750429,19.48103,0
                -101.751787,19.476298,0
                -101.74443,19.475962,0
                -101.743256,19.471397,0
                -101.741494,19.469408,0
                -101.736249,19.468092,0
                -101.734622,19.466007,0
                -101.730993,19.464513,0
                -101.727925,19.464585,0
                -101.727204,19.463686,0
                -101.716686,19.458059,0
                -101.705085,19.456113,0
                -101.67975,19.455755,0
                -101.680575,19.453343,0
                -101.676881,19.448026,0
                -101.674029,19.445665,0
                -101.660465,19.441915,0
                -101.654782,19.443646,0
                -101.637264,19.447272,0
                -101.636578,19.450148,0
                -101.609955,19.450545,0
                -101.605392,19.444088,0
                -101.602919,19.437066,0
                -101.603615,19.434325,0
                -101.59478,19.429739,0
                -101.593031,19.431669,0
                -101.58255,19.431837,0
                -101.577861,19.431171,0
                -101.569017,19.432591,0
                -101.567877,19.431836,0
                -101.566051,19.432664,0
                -101.565477,19.432416,0
                -101.566069,19.431756,0
                -101.567798,19.431447,0
                -101.567107,19.430455,0
                -101.564635,19.42924,0
                -101.565083,19.428691,0
                -101.561993,19.425631,0
                -101.56105,19.425365,0
                -101.560565,19.426287,0
                -101.552901,19.425144,0
                -101.551312,19.424273,0
                -101.547427,19.424457,0
                -101.530892,19.411665,0
                -101.519719,19.424464,0
                -101.516241,19.414228,0
                -101.512511,19.409243,0
                -101.509164,19.410175,0
                -101.505844,19.408667,0
                -101.50124,19.408016,0
                -101.498296,19.40666,0
                -101.493811,19.407535,0
                -101.490842,19.40056,0
                -101.489424,19.400584,0
                -101.488174,19.402217,0
                -101.481829,19.406504,0
                -101.479574,19.406352,0
                -101.477152,19.404057,0
                -101.473385,19.402625,0
                -101.465728,19.40707,0
                -101.458691,19.406037,0
                -101.457724,19.40478,0
                -101.454135,19.41362,0
                -101.441261,19.413465,0
                -101.439787,19.417369,0
                -101.435621,19.424835,0
                -101.431863,19.431431,0
                -101.430978,19.431819,0
                -101.426168,19.444196,0
                -101.427164,19.447675,0
                -101.42819,19.448613,0
                -101.427884,19.451518,0
                -101.426196,19.454346,0
                -101.426411,19.454939,0
                -101.424386,19.456082,0
                -101.422968,19.455821,0
                -101.420258,19.457046,0
                -101.41738,19.456647,0
                -101.41634,19.462511,0
                -101.414454,19.463999,0
                -101.415096,19.467418,0
                -101.413982,19.46795,0
                -101.412954,19.466585,0
                -101.412116,19.466507,0
                -101.412582,19.463802,0
                -101.410038,19.464872,0
                -101.409508,19.463021,0
                -101.408278,19.465266,0
                -101.407556,19.464006,0
                -101.402512,19.461564,0
                -101.401352,19.46178,0
                -101.399346,19.458761,0
                -101.397918,19.458834,0
                -101.397868,19.458346,0
                -101.395854,19.458998,0
                -101.395272,19.460193,0
                -101.393904,19.460204,0
                -101.393282,19.460939,0
                -101.3947,19.461209,0
                -101.39491,19.461806,0
                -101.393272,19.463261,0
                -101.392564,19.465827,0
                -101.391488,19.466288,0
                -101.389264,19.470584,0
                -101.385534,19.472885,0
                -101.384262,19.472962,0
                -101.380644,19.476099,0
                -101.379085,19.476463,0
                -101.376679,19.48068,0
                -101.374243,19.48067,0
                -101.373348,19.484535,0
                -101.376288,19.485466,0
                -101.375633,19.487476,0
                -101.377334,19.488163,0
                -101.378401,19.486858,0
                -101.378334,19.485808,0
                -101.381267,19.484334,0
                -101.383056,19.484539,0
                -101.383616,19.48355,0
                -101.387048,19.492294,0
                -101.3882,19.497299,0
                -101.384872,19.500094,0
                -101.378114,19.498507,0
                -101.375232,19.499349,0
                -101.374544,19.500253,0
                -101.371326,19.500753,0
                -101.372263,19.500685,0
                -101.372322,19.506613,0
                -101.370146,19.510719,0
                -101.365648,19.515053,0
                -101.365204,19.51712,0
                -101.362998,19.515996,0
                -101.361351,19.516092,0
                -101.360969,19.514227,0
                -101.36068,19.518092,0
                -101.357751,19.518617,0
                -101.352956,19.52221,0
                -101.350392,19.525659,0
                -101.349744,19.532681,0
                -101.348649,19.533718,0
                -101.347868,19.532892,0
                -101.336528,19.542978,0
                -101.326291,19.542271,0
                -101.325399,19.543633,0
                -101.321541,19.540907,0
                -101.320737,19.542242,0
                -101.320361,19.542028,0
                -101.32063,19.539395,0
                -101.319248,19.53844,0
                -101.315547,19.537898,0
                -101.315385,19.538821,0
                -101.313505,19.538102,0
                -101.306361,19.525888,0
                -101.307609,19.524341,0
                -101.299435,19.521529,0
                -101.297203,19.521354,0
                -101.295506,19.52337,0
                -101.296095,19.524831,0
                -101.295105,19.528221,0
                -101.291787,19.524341,0
                -101.285262,19.522548,0
                -101.283393,19.522679,0
                -101.279493,19.52518,0
                -101.276142,19.53027,0
                -101.274748,19.530946,0
                -101.273639,19.529859,0
                -101.267669,19.527785,0
                -101.267127,19.526959,0
                -101.267495,19.521888,0
                -101.268471,19.521477,0
                -101.267635,19.520628,0
                -101.26827,19.519076,0
                -101.267815,19.517528,0
                -101.269291,19.515921,0
                -101.267718,19.513493,0
                -101.268134,19.511714,0
                -101.265375,19.511615,0
                -101.262331,19.512824,0
                -101.261078,19.512726,0
                -101.255653,19.522456,0
                -101.254039,19.522287,0
                -101.252447,19.516302,0
                -101.254456,19.515566,0
                -101.256134,19.514042,0
                -101.256598,19.510107,0
                -101.258458,19.505572,0
                -101.263203,19.503376,0
                -101.267168,19.504239,0
                -101.270016,19.501118,0
                -101.266514,19.496569,0
                -101.267102,19.489584,0
                -101.269144,19.484247,0
                -101.264143,19.481475,0
                -101.26586,19.476078,0
                -101.263793,19.465834,0
                -101.258455,19.463358,0
                -101.256304,19.460867,0
                -101.255065,19.460445,0
                -101.252019,19.461076,0
                -101.250991,19.460496,0
                -101.247707,19.471288,0
                -101.245156,19.473022,0
                -101.241185,19.472988,0
                -101.240347,19.474202,0
                -101.240114,19.47615,0
                -101.23829,19.476572,0
                -101.237788,19.479276,0
                -101.236457,19.4795,0
                -101.236151,19.479041,0
                -101.234461,19.480293,0
                -101.230496,19.479458,0
                -101.226639,19.477257,0
                -101.224067,19.478356,0
                -101.223372,19.480583,0
                -101.220319,19.478603,0
                -101.219656,19.476793,0
                -101.214053,19.472134,0
                -101.208165,19.470198,0
                -101.205733,19.467635,0
                -101.205271,19.466346,0
                -101.203067,19.465186,0
                -101.201329,19.463303,0
                -101.200744,19.461891,0
                -101.201514,19.461914,0
                -101.201773,19.461303,0
                -101.200952,19.460907,0
                -101.201223,19.459612,0
                -101.199414,19.458738,0
                -101.199455,19.457387,0
                -101.197945,19.457731,0
                -101.192951,19.456206,0
                -101.188978,19.45669,0
                -101.187569,19.455414,0
                -101.187113,19.453031,0
                -101.185083,19.453446,0
                -101.183295,19.451679,0
                -101.183422,19.44923,0
                -101.181733,19.447248,0
                -101.180421,19.448744,0
                -101.181764,19.449502,0
                -101.181388,19.450637,0
                -101.182753,19.45347,0
                -101.182192,19.453827,0
                -101.180818,19.45324,0
                -101.180379,19.453931,0
                -101.179115,19.453859,0
                -101.181743,19.455951,0
                -101.18011,19.45688,0
                -101.179895,19.458467,0
                -101.182382,19.462815,0
                -101.180479,19.464756,0
                -101.181914,19.466331,0
                -101.180822,19.46817,0
                -101.182096,19.468281,0
                -101.182359,19.469879,0
                -101.180754,19.469843,0
                -101.18058,19.470755,0
                -101.181289,19.471754,0
                -101.180104,19.472445,0
                -101.181559,19.473541,0
                -101.182249,19.475806,0
                -101.184517,19.478822,0
                -101.18476,19.479902,0
                -101.184095,19.481114,0
                -101.184742,19.48549,0
                -101.184119,19.486406,0
                -101.184404,19.487037,0
                -101.182889,19.489045,0
                -101.180056,19.491381,0
                -101.178507,19.496713,0
                -101.179194,19.497576,0
                -101.175744,19.502404,0
                -101.175378,19.50525,0
                -101.173333,19.507193,0
                -101.172778,19.509168,0
                -101.17376,19.510538,0
                -101.171464,19.512502,0
                -101.170316,19.517815,0
                -101.16856,19.520419,0
                -101.168901,19.521785,0
                -101.165833,19.524099,0
                -101.164418,19.524233,0
                -101.163642,19.525287,0
                -101.161886,19.524125,0
                -101.160862,19.525202,0
                -101.16068,19.526778,0
                -101.158634,19.52906,0
                -101.157634,19.529468,0
                -101.156673,19.528428,0
                -101.155156,19.528749,0
                -101.154076,19.530579,0
                -101.146319,19.536883,0
                -101.143842,19.53736,0
                -101.141527,19.536818,0
                -101.140617,19.535281,0
                -101.139411,19.534996,0
                -101.139734,19.533607,0
                -101.137854,19.532655,0
                -101.136356,19.526938,0
                -101.136927,19.526697,0
                -101.135427,19.524152,0
                -101.134191,19.523793,0
                -101.133769,19.525722,0
                -101.131984,19.524155,0
                -101.130713,19.526966,0
                -101.13112,19.528747,0
                -101.129348,19.528721,0
                -101.1281,19.529575,0
                -101.123325,19.529773,0
                -101.12309,19.531325,0
                -101.122303,19.532004,0
                -101.122244,19.533928,0
                -101.120763,19.534254,0
                -101.118735,19.538392,0
                -101.116737,19.538962,0
                -101.115437,19.540532,0
                -101.112645,19.542187,0
                -101.111588,19.544417,0
                -101.107802,19.546303,0
                -101.107223,19.551548,0
                -101.109665,19.554221,0
                -101.109755,19.555423,0
                -101.111995,19.554612,0
                -101.111681,19.553197,0
                -101.114448,19.551401,0
                -101.116409,19.551482,0
                -101.118825,19.550366,0
                -101.119789,19.551148,0
                -101.122617,19.551588,0
                -101.127088,19.551236,0
                -101.128189,19.549971,0
                -101.129472,19.551132,0
                -101.131162,19.554648,0
                -101.129401,19.558457,0
                -101.129447,19.561228,0
                -101.12686,19.562084,0
                -101.125667,19.563704,0
                -101.129524,19.565891,0
                -101.131877,19.565548,0
                -101.131651,19.567171,0
                -101.130999,19.567313,0
                -101.13064,19.568617,0
                -101.127825,19.568635,0
                -101.127713,19.570541,0
                -101.126162,19.572368,0
                -101.121575,19.575331,0
                -101.116041,19.582456,0
                -101.107843,19.588142,0
                -101.104795,19.587418,0
                -101.103338,19.588386,0
                -101.102278,19.587179,0
                -101.095816,19.583828,0
                -101.090341,19.583653,0
                -101.085091,19.584728,0
                -101.080819,19.580456,0
                -101.078983,19.579631,0
                -101.077092,19.579996,0
                -101.074865,19.57897,0
                -101.073182,19.577808,0
                -101.072725,19.575851,0
                -101.068416,19.574131,0
                -101.067042,19.574472,0
                -101.06595,19.573279,0
                -101.064043,19.577904,0
                -101.061447,19.578531,0
                -101.058909,19.57794,0
                -101.05868,19.576752,0
                -101.053415,19.57423,0
                -101.052461,19.572557,0
                -101.051387,19.573088,0
                -101.049316,19.570722,0
                -101.04785,19.570972,0
                -101.044781,19.572978,0
                -101.043017,19.572967,0
                -101.042982,19.574638,0
                -101.044921,19.574508,0
                -101.046221,19.575183,0
                -101.050282,19.574847,0
                -101.051839,19.575585,0
                -101.052391,19.577458,0
                -101.051283,19.578315,0
                -101.05139,19.582909,0
                -101.049698,19.585511,0
                -101.047944,19.585511,0
                -101.048933,19.586784,0
                -101.052387,19.585747,0
                -101.052043,19.587192,0
                -101.049917,19.588863,0
                -101.050464,19.59245,0
                -101.04721,19.591493,0
                -101.047385,19.590765,0
                -101.046585,19.59073,0
                -101.04572,19.591301,0
                -101.044747,19.594238,0
                -101.044756,19.595018,0
                -101.045606,19.595551,0
                -101.048668,19.595743,0
                -101.05078,19.59675,0
                -101.050313,19.59746,0
                -101.050974,19.598942,0
                -101.050683,19.599654,0
                -101.05169,19.601685,0
                -101.053196,19.602743,0
                -101.051449,19.604406,0
                -101.051742,19.605553,0
                -101.049637,19.606661,0
                -101.049317,19.607427,0
                -101.051584,19.606297,0
                -101.051979,19.607701,0
                -101.05494,19.610258,0
                -101.055885,19.609882,0
                -101.055316,19.611133,0
                -101.056544,19.613815,0
                -101.059508,19.616108,0
                -101.064673,19.614359,0
                -101.065997,19.615771,0
                -101.068086,19.616591,0
                -101.067553,19.618306,0
                -101.067852,19.622478,0
                -101.077728,19.635337,0
                -101.078165,19.640754,0
                -101.08037,19.645215,0
                -101.080337,19.646486,0
                -101.082224,19.648972,0
                -101.081379,19.65115,0
                -101.079612,19.651814,0
                -101.081606,19.652097,0
                -101.081503,19.652941,0
                -101.082151,19.65264,0
                -101.08266,19.656436,0
                -101.083388,19.656856,0
                -101.083107,19.657552,0
                -101.084342,19.658107,0
                -101.083609,19.659463,0
                -101.083242,19.659008,0
                -101.083756,19.661469,0
                -101.084089,19.661219,0
                -101.085332,19.663774,0
                -101.086161,19.664024,0
                -101.084895,19.665177,0
                -101.084008,19.667596,0
                -101.085228,19.668229,0
                -101.08385,19.668299,0
                -101.084395,19.670448,0
                -101.084045,19.671751,0
                -101.084633,19.671946,0
                -101.082809,19.671961,0
                -101.084942,19.672667,0
                -101.084809,19.67316,0
                -101.086013,19.674071,0
                -101.084722,19.676494,0
                -101.100421,19.677791,0
                -101.096145,19.687513,0
                -101.096166,19.688994,0
                -101.098557,19.689705,0
                -101.097119,19.701217,0
                -101.09514,19.702587,0
                -101.096068,19.707844,0
                -101.095556,19.711066,0
                -101.089118,19.719691,0
                -101.089791,19.719958,0
                -101.088204,19.720022,0
                -101.088051,19.722332,0
                -101.086593,19.722668,0
                -101.086451,19.723855,0
                -101.084479,19.724534,0
                -101.085017,19.726587,0
                -101.084182,19.729844,0
                -101.085295,19.730107,0
                -101.08497,19.731714,0
                -101.087794,19.730704,0
                -101.086966,19.731468,0
                -101.087158,19.735633,0
                -101.089264,19.737915,0
                -101.089249,19.739315,0
                -101.092425,19.739859,0
                -101.092374,19.741114,0
                -101.098024,19.742837,0
                -101.100508,19.74207,0
                -101.102242,19.738681,0
                -101.103687,19.73824,0
                -101.106429,19.740039,0
                -101.109348,19.73963,0
                -101.111407,19.742093,0
                -101.110745,19.74243,0
                -101.110762,19.743654,0
                -101.115693,19.74446,0
                -101.114987,19.745415,0
                -101.115538,19.747507,0
                -101.112797,19.750692,0
                -101.112002,19.751258,0
                -101.109307,19.751257,0
                -101.106881,19.759599,0
                -101.106256,19.762117,0
                -101.10914,19.764349,0
                -101.109595,19.766354,0
                -101.113636,19.77015,0
                -101.121998,19.767356,0
                -101.124024,19.76613,0
                -101.12742,19.765461,0
                -101.129801,19.764114,0
                -101.135797,19.764561,0
                -101.138891,19.763874,0
                -101.142852,19.761759,0
                -101.157831,19.757884,0
                -101.158058,19.751529,0
                -101.157189,19.746544,0
                -101.158382,19.74645,0
                -101.160909,19.746444,0
                -101.161478,19.747649,0
                -101.165966,19.748613,0
                -101.171652,19.751337,0
                -101.173182,19.748573,0
                -101.194233,19.74823,0
                -101.201972,19.751802,0
                -101.203604,19.753537,0
                -101.210249,19.757545,0
                -101.217177,19.758133,0
                -101.218245,19.761734,0
                -101.22315,19.760057,0
                -101.228165,19.756691,0
                -101.229297,19.75701,0
                -101.230113,19.757589,0
                -101.231131,19.768446,0
                -101.232006,19.770657,0
                -101.2341,19.770342,0
                -101.235248,19.771626,0
                -101.237015,19.771978,0
                -101.237525,19.774977,0
                -101.239332,19.776758,0
                -101.239707,19.780314,0
                -101.242314,19.785247,0
                -101.244225,19.787471,0
                -101.241147,19.788622,0
                -101.240286,19.790743,0
                -101.242544,19.791435,0
                -101.241094,19.793203,0
                -101.240424,19.795783,0
                -101.241371,19.795635,0
                -101.242033,19.794646,0
                -101.244377,19.794774,0
                -101.245728,19.79604,0
                -101.245813,19.797132,0
                -101.248156,19.797689,0
                -101.247041,19.799072,0
                -101.248113,19.799923,0
                -101.24605,19.801073,0
                -101.247165,19.804185,0
                -101.2536,19.812181,0
                -101.255276,19.815621,0
                -101.266202,19.825645,0
                -101.270938,19.82727,0
                -101.274328,19.835517,0
                -101.27604,19.837936,0
                -101.279387,19.84526,0
                -101.264978,19.853937,0
                -101.262284,19.856644,0
                -101.259223,19.858313,0
                -101.257101,19.860956,0
                -101.261035,19.861339,0
                -101.265091,19.858768,0
                -101.268935,19.857944,0
                -101.274429,19.859384,0
                -101.27446,19.860642,0
                -101.276886,19.860406,0
                -101.276627,19.860814,0
                -101.278147,19.861398,0
                -101.279771,19.859556,0
                -101.280524,19.860908,0
                -101.281384,19.860648,0
                -101.281981,19.861896,0
                -101.284605,19.861763,0
                -101.285915,19.862357,0
                -101.287609,19.860885,0
                -101.293375,19.859152,0
                -101.299185,19.858411,0
                -101.303008,19.856894,0
                -101.303597,19.858011,0
                -101.304479,19.858166,0
                -101.304296,19.857538,0
                -101.308794,19.857346,0
                -101.312611,19.85564,0
                -101.314613,19.85349,0
                -101.317416,19.852621,0
                -101.318517,19.851469,0
                -101.323624,19.850351,0
                -101.327204,19.848428,0
                -101.331234,19.848616,0
                -101.334914,19.849672,0
                -101.335587,19.848783,0
                -101.336602,19.848778,0
                -101.336297,19.847283,0
                -101.336931,19.846065,0
                -101.339692,19.845207,0
                -101.339772,19.843744,0
                -101.341568,19.843292,0
                -101.342773,19.843772,0
                -101.344621,19.84171,0
                -101.346788,19.841667,0
                -101.349084,19.84017,0
                -101.352107,19.839829,0
                -101.351816,19.838586,0
                -101.353551,19.838187,0
                -101.356066,19.840476,0
                -101.36002,19.838889,0
                -101.356503,19.833891,0
                -101.357542,19.829455,0
                -101.357256,19.827024,0
                -101.354716,19.82483,0
                -101.359268,19.821211,0
                -101.368066,19.817845,0
                -101.372228,19.819012,0
                -101.376568,19.826278,0
                -101.377132,19.828623,0
                -101.410099,19.823181,0
                -101.412361,19.822452,0
                -101.413199,19.821303,0
                -101.41715,19.823565,0
                -101.427341,19.822351,0
                -101.443031,19.821994,0
                -101.446623,19.820608,0
                -101.449395,19.821009,0
                -101.451363,19.820323,0
                -101.468568,19.819343,0
                -101.472866,19.814344,0
                -101.473248,19.812584,0
                -101.471342,19.810525,0
                -101.472202,19.81088,0
                -101.47502,19.808626,0
                -101.476534,19.803671,0
                -101.479648,19.799548,0
                -101.48586,19.801151,0
                -101.488086,19.7995,0
                -101.49043,19.799989,0
                -101.493862,19.803352,0
                -101.498075,19.802925,0
                -101.498759,19.805221,0
                -101.500511,19.807317,0
                -101.500639,19.810844,0
                -101.503797,19.811329,0
                -101.504204,19.813648,0
                -101.504846,19.814354,0
                -101.505655,19.814062,0
                -101.504871,19.815747,0
                -101.503422,19.816025,0
                -101.502894,19.817073,0
                -101.503611,19.818294,0
                -101.502108,19.819034,0
                -101.502394,19.819365,0
                -101.499219,19.819331,0
                -101.497667,19.820112,0
                -101.496692,19.822839,0
                -101.49725,19.826099,0
                -101.495196,19.83069,0
                -101.499198,19.84502,0
                -101.507144,19.851956,0
                -101.507483,19.85705,0
                -101.503047,19.858421,0
                -101.502654,19.859097,0
                -101.50968,19.862209,0
                -101.511209,19.861598,0
                -101.51617,19.861636,0
                -101.523747,19.865107,0
                -101.528395,19.864972,0
                -101.53274,19.866301,0
                -101.53458,19.866049,0
                -101.537927,19.867012,0
                -101.546298,19.867628,0
                -101.546531,19.868349,0
                -101.547194,19.867708,0
                -101.554653,19.867642,0
                -101.561292,19.868767,0
                -101.566854,19.86759,0
                -101.571746,19.8683,0
                -101.573277,19.868745,0
                -101.574236,19.87204,0
                -101.575898,19.872702,0
                -101.576612,19.871926,0
                -101.577966,19.871755,0
                -101.578298,19.870425,0
                -101.582822,19.870143,0
                -101.588397,19.876398,0
                -101.590522,19.88028,0
                -101.593499,19.880358,0
                -101.595158,19.881958,0
                -101.59958,19.881968,0
                -101.59977,19.8865,0
                -101.598606,19.889775,0
                -101.597864,19.890673,0
                -101.597157,19.890017,0
                -101.594828,19.89622,0
                -101.595964,19.897925,0
                -101.600819,19.899177,0
                -101.596928,19.898306,0
                -101.597827,19.898879,0
                -101.598133,19.901201,0
                -101.599802,19.902886,0
                -101.600957,19.907751,0
                -101.600882,19.910312,0
                -101.599446,19.912369,0
                -101.597019,19.912514,0
                -101.591878,19.915965,0
                -101.590222,19.91817,0
                -101.589725,19.922653,0
                -101.590798,19.923081,0
                -101.592236,19.922486,0
                -101.593928,19.925327,0
                -101.593705,19.926381,0
                -101.594624,19.926796,0
                -101.603162,19.927016,0
                -101.590951,19.934068,0
                -101.588697,19.937519,0
                -101.587721,19.936424,0
                -101.58554,19.936641,0
                -101.583932,19.937423,0
                -101.584763,19.937897,0
                -101.576079,19.940988,0
                -101.572524,19.939475,0
                -101.56812,19.939497,0
                -101.565472,19.941709,0
                -101.553919,19.946627,0
                -101.550478,19.946691,0
                -101.547812,19.947991,0
                -101.555794,19.954486,0
                -101.558703,19.960836,0
                -101.555582,19.9617,0
                -101.559219,19.965516,0
                -101.559515,19.96682,0
                -101.56068,19.967793,0
                -101.56645,19.968554,0
                -101.565934,19.971383,0
                -101.565034,19.972702,0
                -101.565217,19.975078,0
                -101.564619,19.976849,0
                -101.560447,19.981431,0
                -101.563863,19.985883,0
                -101.564278,19.988085,0
                -101.55129,19.993606,0
                -101.534624,19.998209,0
                -101.528219,19.997224,0
                -101.52526,19.998196,0
                -101.524558,20.005402,0
                -101.521098,20.006415,0
                -101.518802,20.006303,0
                -101.513912,20.01223,0
                -101.512999,20.012588,0
                -101.498406,20.010794,0
                -101.492914,20.017594,0
                -101.479652,20.014875,0
                -101.472498,20.018727,0
                -101.466262,20.023095,0
                -101.463765,20.030569,0
                -101.464313,20.034401,0
                -101.463741,20.035789,0
                -101.464835,20.036654,0
                -101.463558,20.037295,0
                -101.462538,20.037331,0
                -101.461541,20.035964,0
                -101.457996,20.03459,0
                -101.453215,20.034807,0
                -101.450197,20.034033,0
                -101.442761,20.03497,0
                -101.43455,20.029633,0
                -101.430183,20.029142,0
                -101.426786,20.03278,0
                -101.421698,20.036392,0
                -101.402451,20.044826,0
                -101.402608,20.04703,0
                -101.396418,20.050628,0
                -101.394278,20.052912,0
                -101.395836,20.060798,0
                -101.3951,20.062214,0
                -101.396217,20.064937,0
                -101.394992,20.068636,0
                -101.395447,20.06996,0
                -101.39425,20.072498,0
                -101.393898,20.075013,0
                -101.392179,20.077196,0
                -101.388946,20.078492,0
                -101.387513,20.082961,0
                -101.392315,20.083308,0
                -101.404696,20.080195,0
                -101.40453,20.09568,0
                -101.405522,20.09762,0
                -101.404544,20.09791,0
                -101.404518,20.098937,0
                -101.403249,20.100156,0
                -101.404716,20.101488,0
                -101.405736,20.101151,0
                -101.408342,20.102633,0
                -101.40738,20.105706,0
                -101.404844,20.105942,0
                -101.404326,20.106791,0
                -101.405448,20.107441,0
                -101.408689,20.123134,0
                -101.404514,20.126869,0
                -101.402827,20.127295,0
                -101.395607,20.128419,0
                -101.394599,20.127522,0
                -101.391008,20.127121,0
                -101.390599,20.128731,0
                -101.389185,20.130348,0
                -101.389376,20.134864,0
                -101.38999,20.137193,0
                -101.392265,20.13943,0
                -101.391233,20.13974,0
                -101.392375,20.144029,0
                -101.400286,20.141435,0
                -101.403604,20.142116,0
                -101.403593,20.143154,0
                -101.406346,20.144321,0
                -101.409061,20.152288,0
                -101.409751,20.151984,0
                -101.414433,20.156133,0
                -101.416182,20.158963,0
                -101.415226,20.159371,0
                -101.416471,20.161676,0
                -101.418094,20.162777,0
                -101.422498,20.163226,0
                -101.423689,20.169891,0
                -101.422538,20.171442,0
                -101.419891,20.201591,0
                -101.411779,20.203342,0
                -101.405602,20.203323,0
                -101.387988,20.201328,0
                -101.385394,20.199958,0
                -101.378156,20.198242,0
                -101.363198,20.195794,0
                -101.352618,20.234932,0
                -101.353317,20.234923,0
                -101.35323,20.237325,0
                -101.357964,20.241579,0
                -101.359891,20.245397,0
                -101.361051,20.246308,0
                -101.360519,20.249056,0
                -101.395324,20.248549,0
                -101.397455,20.252309,0
                -101.399362,20.253341,0
                -101.403135,20.260112,0
                -101.406477,20.263631,0
                -101.415591,20.264759,0
                -101.416642,20.267252,0
                -101.418195,20.26813,0
                -101.419654,20.271542,0
                -101.419696,20.274444,0
                -101.420562,20.275204,0
                -101.422824,20.275109,0
                -101.425147,20.276093,0
                -101.430017,20.276129,0
                -101.435482,20.277381,0
                -101.437082,20.268262,0
                -101.436857,20.263785,0
                -101.446677,20.264043,0
                -101.448922,20.265282,0
                -101.452913,20.266044,0
                -101.454942,20.267519,0
                -101.45593,20.26717,0
                -101.458325,20.2696,0
                -101.458969,20.270198,0
                -101.456574,20.271173,0
                -101.455975,20.272703,0
                -101.456257,20.273925,0
                -101.453812,20.273974,0
                -101.454435,20.275165,0
                -101.458372,20.276021,0
                -101.457171,20.285142,0
                -101.449254,20.287482,0
                -101.448264,20.289581,0
                -101.444985,20.289725,0
                -101.444412,20.291828,0
                -101.444554,20.295102,0
                -101.446507,20.296663,0
                -101.4482,20.296472,0
                -101.449723,20.298229,0
                -101.440393,20.303526,0
                -101.440197,20.305193,0
                -101.443539,20.304642,0
                -101.443775,20.30543,0
                -101.450358,20.304241,0
                -101.450471,20.305054,0
                -101.453164,20.305009,0
                -101.453187,20.304151,0
                -101.454996,20.304952,0
                -101.456697,20.30437,0
                -101.454925,20.317851,0
                -101.451543,20.317839,0
                -101.450877,20.318388,0
                -101.450942,20.319498,0
                -101.453067,20.319333,0
                -101.453871,20.320043,0
                -101.45547,20.320164,0
                -101.456823,20.319265,0
                -101.45851,20.32121,0
                -101.458817,20.323285,0
                -101.460606,20.323884,0
                -101.461921,20.326519,0
                -101.463929,20.328523,0
                -101.472599,20.331248,0
                -101.474707,20.330404,0
                -101.478108,20.330761,0
                -101.480227,20.330174,0
                -101.483917,20.326298,0
                -101.485318,20.323725,0
                -101.488113,20.322057,0
                -101.491419,20.318186,0
                -101.493242,20.314006,0
                -101.498318,20.313026,0
                -101.501068,20.311673,0
                -101.502561,20.312789,0
                -101.50324,20.3147,0
                -101.503103,20.317138,0
                -101.504503,20.31895,0
                -101.5037,20.320256,0
                -101.501435,20.320906,0
                -101.502308,20.324498,0
                -101.506351,20.324827,0
                -101.510476,20.318914,0
                -101.514176,20.317912,0
                -101.517132,20.317921,0
                -101.52067,20.320845,0
                -101.524156,20.321231,0
                -101.523706,20.324517,0
                -101.521891,20.327533,0
                -101.52208,20.331415,0
                -101.522936,20.332347,0
                -101.526806,20.332115,0
                -101.528638,20.332882,0
                -101.531409,20.331264,0
                -101.533084,20.329772,0
                -101.534428,20.326901,0
                -101.53781,20.324375,0
                -101.541954,20.329466,0
                -101.547311,20.330429,0
                -101.550631,20.332451,0
                -101.554028,20.332197,0
                -101.555657,20.328509,0
                -101.559865,20.324978,0
                -101.560565,20.323034,0
                -101.563291,20.32135,0
                -101.563509,20.319646,0
                -101.561435,20.316589,0
                -101.56339,20.31644,0
                -101.564487,20.317004,0
                -101.565782,20.315741,0
                -101.566567,20.315681,0
                -101.567852,20.316791,0
                -101.570798,20.315938,0
                -101.571625,20.317968,0
                -101.571606,20.320713,0
                -101.573176,20.321398,0
                -101.575743,20.321324,0
                -101.576887,20.325521,0
                -101.577833,20.326384,0
                -101.583591,20.327182,0
                -101.584213,20.325748,0
                -101.584072,20.319552,0
                -101.58506,20.318105,0
                -101.584442,20.316722,0
                -101.586794,20.314295,0
                -101.588811,20.313345,0
                -101.589245,20.309602,0
                -101.592154,20.309696,0
                -101.596008,20.311845,0
                -101.600933,20.310053,0
                -101.600757,20.308729,0
                -101.599107,20.30656,0
                -101.600575,20.302544,0
                -101.60028,20.298418,0
                -101.601074,20.298019,0
                -101.603996,20.298035,0
                -101.605507,20.299293,0
                -101.60589,20.302697,0
                -101.604511,20.308941,0
                -101.605463,20.309918,0
                -101.608523,20.309747,0
                -101.611271,20.312725,0
                -101.614794,20.311733,0
                -101.617775,20.312403,0
                -101.619927,20.315503,0
                -101.621296,20.315576,0
                -101.624654,20.31458,0
                -101.627235,20.310759,0
                -101.627585,20.30834,0
                -101.625792,20.305605,0
                -101.629224,20.298684,0
                -101.628428,20.295924,0
                -101.633566,20.291321,0
                -101.634921,20.288967,0
                -101.632306,20.283975,0
                -101.628875,20.281933,0
                -101.623969,20.276108,0
                -101.623823,20.273605,0
                -101.625672,20.269748,0
                -101.625534,20.266998,0
                -101.628398,20.264773,0
                -101.632034,20.264789,0
                -101.632782,20.267445,0
                -101.632353,20.269504,0
                -101.63352,20.271067,0
                -101.634368,20.271182,0
                -101.637031,20.269831,0
                -101.638838,20.265816,0
                -101.640462,20.26602,0
                -101.642074,20.26788,0
                -101.643152,20.266854,0
                -101.6438,20.265658,0
                -101.643563,20.261898,0
                -101.646772,20.260063,0
                -101.648827,20.255968,0
                -101.650926,20.253484,0
                -101.648957,20.25105,0
                -101.645264,20.24928,0
                -101.644017,20.247166,0
                -101.64422,20.242546,0
                -101.646809,20.238345,0
                -101.647725,20.238367,0
                -101.648933,20.239468,0
                -101.647409,20.238429,0
                -101.648868,20.239778,0
                -101.652443,20.239587,0
                -101.654577,20.243496,0
                -101.658218,20.241838,0
                -101.660283,20.239241,0
                -101.663308,20.23758,0
                -101.663892,20.235812,0
                -101.663644,20.231737,0
                -101.667733,20.22718,0
                -101.667349,20.221869,0
                -101.66926,20.219416,0
                -101.665643,20.216384,0
                -101.665769,20.215312,0
                -101.667596,20.21369,0
                -101.669253,20.212882,0
                -101.673119,20.212555,0
                -101.675145,20.217358,0
                -101.678123,20.218882,0
                -101.685479,20.218461,0
                -101.686917,20.217221,0
                -101.689456,20.213468,0
                -101.688711,20.210644,0
                -101.692694,20.207279,0
                -101.689818,20.200874,0
                -101.690394,20.196817,0
                -101.6938,20.191957,0
                -101.699636,20.189337,0
                -101.701838,20.189208,0
                -101.703871,20.19044,0
                -101.70444,20.195613,0
                -101.706028,20.200594,0
                -101.710622,20.205306,0
                -101.713592,20.20578,0
                -101.715869,20.204358,0
                -101.720798,20.204919,0
                -101.723064,20.206002,0
                -101.72594,20.205618,0
                -101.726735,20.20764,0
                -101.726751,20.21056,0
                -101.730777,20.21471,0
                -101.731868,20.214455,0
                -101.73171,20.211956,0
                -101.732716,20.210676,0
                -101.737332,20.207988,0
                -101.742764,20.206779,0
                -101.743515,20.203912,0
                -101.748118,20.204905,0
                -101.752213,20.203696,0
                -101.75716,20.204651,0
                -101.757757,20.204407,0
                -101.758457,20.202096,0
                -101.759392,20.201732,0
                -101.76444,20.20454,0
                -101.767913,20.204614,0
                -101.776844,20.211494,0
                -101.778369,20.211567,0
                -101.780373,20.21014,0
                -101.782309,20.210751,0
                -101.784647,20.214456,0
                -101.784018,20.217871,0
                -101.785576,20.219238,0
                -101.788397,20.218757,0
                -101.794069,20.215938,0
                -101.796536,20.212824,0
                -101.798451,20.21124,0
                -101.80019,20.210956,0
                -101.802266,20.214388,0
                -101.803835,20.214342,0
                -101.808074,20.208144,0
                -101.808418,20.204953,0
                -101.816819,20.201803,0
                -101.822925,20.202341,0
                -101.824861,20.201838,0
                -101.825523,20.202276,0
                -101.824731,20.203878,0
                -101.821422,20.204743,0
                -101.819441,20.206693,0
                -101.819646,20.208666,0
                -101.822363,20.21113,0
                -101.828444,20.214931,0
                -101.829904,20.21963,0
                -101.828927,20.221558,0
                -101.830488,20.222178,0
                -101.8315,20.224027,0
                -101.833866,20.22479,0
                -101.842156,20.220908,0
                -101.84424,20.219333,0
                -101.849541,20.217652,0
                -101.856053,20.211901,0
                -101.869296,20.210649,0
                -101.871598,20.210989,0
                -101.872063,20.210301,0
                -101.871301,20.208058,0
                -101.87203,20.20443,0
                -101.874768,20.201992,0
                -101.877672,20.201341,0
                -101.879662,20.201778,0
                -101.881429,20.199998,0
                -101.878336,20.191436,0
                -101.879194,20.189182,0
                -101.881616,20.187984,0
                -101.883673,20.19016,0
                -101.887381,20.188473,0
                -101.888912,20.188913,0
                -101.88812,20.191829,0
                -101.886088,20.193569,0
                -101.885883,20.194452,0
                -101.887193,20.198375,0
                -101.891575,20.203261,0
                -101.897785,20.204128,0
                -101.901435,20.201849,0
                -101.904707,20.203008,0
                -101.907968,20.200046,0
                -101.909599,20.194037,0
                -101.914889,20.194407,0
                -101.917897,20.195077,0
                -101.919357,20.197044,0
                -101.918015,20.200902,0
                -101.918068,20.20295,0
                -101.915519,20.204034,0
                -101.915663,20.2067,0
                -101.911418,20.203396,0
                -101.909338,20.203405,0
                -101.908945,20.206573,0
                -101.907393,20.208872,0
                -101.907046,20.213305,0
                -101.907939,20.215153,0
                -101.909613,20.216479,0
                -101.915702,20.219197,0
                -101.91778,20.219331,0
                -101.926426,20.21226,0
                -101.928747,20.208353,0
                -101.930603,20.208121,0
                -101.931508,20.208762,0
                -101.931481,20.209484,0
                -101.929702,20.211522,0
                -101.929392,20.213785,0
                -101.930583,20.2164,0
                -101.928252,20.217278,0
                -101.931352,20.22177,0
                -101.932347,20.225889,0
                -101.93305,20.226436,0
                -101.937154,20.225532,0
                -101.939873,20.227082,0
                -101.93901,20.232659,0
                -101.936199,20.237346,0
                -101.938081,20.239268,0
                -101.938129,20.241383,0
                -101.936999,20.24268,0
                -101.933092,20.242755,0
                -101.932172,20.243738,0
                -101.934379,20.24927,0
                -101.94001,20.251276,0
                -101.944945,20.255077,0
                -101.946289,20.257254,0
                -101.94648,20.259793,0
                -101.943594,20.267772,0
                -101.946503,20.270261,0
                -101.947725,20.270765,0
                -101.950512,20.270494,0
                -101.951184,20.271583,0
                -101.950319,20.272761,0
                -101.947436,20.27412,0
                -101.945801,20.276749,0
                -101.941475,20.279468,0
                -101.938592,20.280011,0
                -101.936862,20.281461,0
                -101.936765,20.283275,0
                -101.937725,20.285089,0
                -101.939551,20.28518,0
                -101.942338,20.284002,0
                -101.945318,20.284003,0
                -101.946759,20.285092,0
                -101.947143,20.286362,0
                -101.945316,20.288628,0
                -101.943297,20.289806,0
                -101.94022,20.293976,0
                -101.935318,20.29479,0
                -101.934548,20.295878,0
                -101.934547,20.297691,0
                -101.940602,20.299235,0
                -101.943581,20.300778,0
                -101.949541,20.298423,0
                -101.952327,20.301416,0
                -101.959919,20.305136,0
                -101.959918,20.306587,0
                -101.959053,20.307493,0
                -101.955689,20.308762,0
                -101.956745,20.311936,0
                -101.956264,20.312933,0
                -101.953572,20.312933,0
                -101.950016,20.311481,0
                -101.948958,20.315107,0
                -101.957031,20.31783,0
                -101.95953,20.319826,0
                -101.960876,20.319554,0
                -101.962414,20.318013,0
                -101.963472,20.318557,0
                -101.962991,20.320099,0
                -101.955683,20.326626,0
                -101.951548,20.329345,0
                -101.947317,20.330976,0
                -101.94722,20.333334,0
                -101.945393,20.335963,0
                -101.944046,20.337957,0
                -101.943949,20.339408,0
                -101.944717,20.342129,0
                -101.946359,20.343178,0
                -101.95135,20.344307,0
                -101.962337,20.344689,0
                -101.964094,20.349861,0
                -101.966685,20.353129,0
                -101.9678,20.359288,0
                -101.968991,20.36026,0
                -101.970824,20.36026,0
                -101.974587,20.358238,0
                -101.976226,20.357998,0
                -101.980879,20.358565,0
                -101.987067,20.360362,0
                -101.989701,20.359614,0
                -101.989944,20.360789,0
                -101.99639,20.359643,0
                -101.997295,20.35892,0
                -101.996947,20.357354,0
                -101.998919,20.356755,0
                -101.999225,20.358276,0
                -102.000039,20.358123,0
                -101.999401,20.354717,0
                -102.003158,20.354451,0
                -102.00273,20.353507,0
                -102.009887,20.353332,0
                -102.01248,20.352144,0
                -102.013702,20.350632,0
                -102.013835,20.34791,0
                -102.010292,20.341088,0
                -102.009533,20.338229,0
                -102.005601,20.334891,0
                -102.004903,20.333066,0
                -102.006035,20.328253,0
                -102.007291,20.32673,0
                -102.014661,20.328323,0
                -102.015848,20.329639,0
                -102.014891,20.332155,0
                -102.017204,20.336085,0
                -102.016529,20.339051,0
                -102.017306,20.341767,0
                -102.018056,20.342678,0
                -102.02332,20.343935,0
                -102.025198,20.348646,0
                -102.023398,20.353146,0
                -102.02317,20.358565,0
                -102.021827,20.362984,0
                -102.017906,20.370899,0
                -102.011452,20.378558,0
                -102.010064,20.381856,0
                -102.010163,20.385333,0
                -102.013716,20.388813,0
                -102.013414,20.393703,0
                -102.016043,20.394556,0
                -102.017556,20.394018,0
                -102.018655,20.392581,0
                -102.018932,20.386009,0
                -102.022651,20.38089,0
                -102.026992,20.380922,0
                -102.036664,20.378565,0
                -102.044048,20.379359,0
                -102.051902,20.378737,0
                -102.056195,20.376906,0
                -102.060331,20.376955,0
                -102.065033,20.374922,0
                -102.069326,20.375405,0
                -102.071783,20.378084,0
                -102.073872,20.379323,0
                -102.081134,20.380194,0
                -102.087312,20.384894,0
                -102.09358,20.383784,0
                -102.097727,20.383901,0
                -102.104878,20.3791,0
                -102.10886,20.378049,0
                -102.115145,20.38113,0
                -102.121117,20.378323,0
                -102.123056,20.378109,0
                -102.131575,20.381129,0
                -102.133709,20.379701,0
                -102.134311,20.375913,0
                -102.134898,20.375663,0
                -102.141577,20.375406,0
                -102.144561,20.376448,0
                -102.146965,20.37637,0
                -102.150533,20.37851,0
                -102.15415,20.378913,0
                -102.162488,20.379622,0
                -102.168429,20.378605,0
                -102.168514,20.37746,0
                -102.167477,20.376249,0
                -102.160048,20.374904,0
                -102.159008,20.368504,0
                -102.158158,20.36696,0
                -102.15913,20.36646,0
                -102.165741,20.366991,0
                -102.173262,20.369229,0
                -102.176477,20.36843,0
                -102.178076,20.367049,0
                -102.177424,20.363201,0
                -102.174587,20.361711,0
                -102.173434,20.357809,0
                -102.174207,20.356617,0
                -102.176056,20.355691,0
                -102.180082,20.35526,0
                -102.185931,20.35366,0
                -102.189301,20.353708,0
                -102.195961,20.350486,0
                -102.197367,20.351021,0
                -102.19907,20.352857,0
                -102.20348,20.354865,0
                -102.205871,20.354774,0
                -102.20701,20.355111,0
                -102.208122,20.35668,0
                -102.210052,20.35504,0
                -102.211758,20.352147,0
                -102.217949,20.351826,0
                -102.219352,20.351095,0
                -102.221257,20.348224,0
                -102.221805,20.344069,0
                -102.226218,20.344468,0
                -102.231836,20.341486,0
                -102.238027,20.341808,0
                -102.241362,20.33934,0
                -102.247135,20.33902,0
                -102.25416,20.335266,0
                -102.257216,20.338444,0
                -102.259083,20.339372,0
                -102.260007,20.339186,0
                -102.260167,20.336874,0
                -102.260957,20.335849,0
                -102.267568,20.335627,0
                -102.268606,20.337019,0
                -102.274198,20.338677,0
                -102.274704,20.341245,0
                -102.277121,20.343165,0
                -102.284086,20.34556,0
                -102.286063,20.345235,0
                -102.288278,20.341545,0
                -102.289606,20.340733,0
                -102.293609,20.345907,0
                -102.291944,20.352824,0
                -102.293066,20.353386,0
                -102.296378,20.353132,0
                -102.297905,20.353899,0
                -102.300468,20.356523,0
                -102.305948,20.358058,0
                -102.30824,20.357825,0
                -102.309321,20.356627,0
                -102.310165,20.353228,0
                -102.313229,20.350029,0
                -102.314759,20.345885,0
                -102.31609,20.344587,0
                -102.319472,20.344758,0
                -102.327224,20.349483,0
                -102.330617,20.345767,0
                -102.335949,20.341536,0
                -102.342438,20.339993,0
                -102.343959,20.336222,0
                -102.34602,20.335065,0
                -102.348457,20.334799,0
                -102.355882,20.337576,0
                -102.358911,20.33675,0
                -102.360119,20.335461,0
                -102.362701,20.329723,0
                -102.36629,20.327879,0
                -102.368821,20.328057,0
              </coordinates>
            </LinearRing>
          </outerBoundaryIs>
        </Polygon>
      </Placemark>
      <Placemark>
        <name>Equipo 2</name>
        <description><![CDATA[description: <br>fid: 117<br>tessellate: -1<br>extrude: 0<br>visibility: -1<br>CVE_MUN: 003]]></description>
        <styleUrl>#poly-F9A825-1000-156</styleUrl>
        <ExtendedData>
          <Data name="description">
            <value/>
          </Data>
          <Data name="fid">
            <value>117</value>
          </Data>
          <Data name="tessellate">
            <value>-1</value>
          </Data>
          <Data name="extrude">
            <value>0</value>
          </Data>
          <Data name="visibility">
            <value>-1</value>
          </Data>
          <Data name="CVE_MUN">
            <value>003</value>
          </Data>
        </ExtendedData>
        <Polygon>
          <outerBoundaryIs>
            <LinearRing>
              <tessellate>1</tessellate>
              <coordinates>
                -101.002276,19.952363,0
                -101.003092,19.953173,0
                -101.003382,19.9544,0
                -101.002549,19.955501,0
                -101.002795,19.956465,0
                -101.003906,19.956879,0
                -101.002216,19.961606,0
                -101.00249,19.965011,0
                -101.004505,19.965977,0
                -101.004583,19.96659,0
                -101.002662,19.968125,0
                -100.999087,19.969531,0
                -100.997199,19.972339,0
                -100.991748,19.975276,0
                -100.987843,19.978979,0
                -100.976709,19.982738,0
                -100.977438,19.985255,0
                -100.979359,19.985696,0
                -100.980525,19.987216,0
                -100.980684,19.988531,0
                -100.979494,19.991396,0
                -100.979269,19.993803,0
                -100.980089,19.995306,0
                -100.9834,19.996542,0
                -100.98372,19.99821,0
                -100.982701,20.002631,0
                -100.975272,20.003139,0
                -100.97278,20.002089,0
                -100.972013,20.003977,0
                -100.968147,20.006969,0
                -100.967335,20.009914,0
                -100.967644,20.011293,0
                -100.968065,20.011965,0
                -100.975033,20.014209,0
                -100.975442,20.015228,0
                -100.979104,20.017778,0
                -100.979053,20.019356,0
                -100.979872,20.020339,0
                -100.980569,20.023218,0
                -100.982307,20.023396,0
                -100.983087,20.024789,0
                -100.986074,20.025426,0
                -100.987854,20.026918,0
                -100.993401,20.027283,0
                -100.997587,20.025588,0
                -100.999469,20.026097,0
                -101.002791,20.02838,0
                -101.008089,20.028093,0
                -101.006561,20.029637,0
                -101.004367,20.03032,0
                -101.005136,20.034927,0
                -101.003855,20.035845,0
                -101.003567,20.037964,0
                -101.008406,20.03695,0
                -101.012702,20.037758,0
                -101.012298,20.039556,0
                -101.014211,20.040346,0
                -101.01361,20.040558,0
                -101.013987,20.045711,0
                -101.012982,20.045778,0
                -101.008136,20.050684,0
                -101.00804,20.052019,0
                -101.006424,20.054013,0
                -101.005174,20.054268,0
                -101.004485,20.056051,0
                -101.000167,20.060156,0
                -100.994008,20.063147,0
                -100.992834,20.064906,0
                -100.996662,20.067234,0
                -100.996821,20.068042,0
                -100.999755,20.070787,0
                -101.002023,20.071794,0
                -101.003574,20.074353,0
                -101.009166,20.079534,0
                -101.017278,20.085695,0
                -101.021353,20.086945,0
                -101.025795,20.086636,0
                -101.028137,20.087914,0
                -101.03526,20.087336,0
                -101.036649,20.088361,0
                -101.040087,20.088978,0
                -101.040333,20.090632,0
                -101.042901,20.091954,0
                -101.043015,20.091391,0
                -101.047412,20.089845,0
                -101.048879,20.090207,0
                -101.048834,20.089608,0
                -101.050813,20.089792,0
                -101.051043,20.091131,0
                -101.07486,20.088388,0
                -101.078837,20.085086,0
                -101.079968,20.082816,0
                -101.094277,20.082039,0
                -101.097903,20.081208,0
                -101.105745,20.077452,0
                -101.110544,20.076044,0
                -101.113102,20.076225,0
                -101.113922,20.077233,0
                -101.114966,20.075045,0
                -101.117575,20.074912,0
                -101.117519,20.073273,0
                -101.119689,20.073529,0
                -101.119481,20.071022,0
                -101.126054,20.06435,0
                -101.132036,20.060668,0
                -101.133147,20.059985,0
                -101.154371,20.08503,0
                -101.156607,20.08381,0
                -101.158549,20.086881,0
                -101.165191,20.087163,0
                -101.165037,20.088545,0
                -101.165487,20.088471,0
                -101.16635,20.091179,0
                -101.169647,20.093232,0
                -101.171117,20.09398,0
                -101.172316,20.096859,0
                -101.173556,20.097811,0
                -101.175237,20.097116,0
                -101.175633,20.095915,0
                -101.173701,20.091713,0
                -101.173363,20.087306,0
                -101.172145,20.086717,0
                -101.172634,20.08494,0
                -101.170515,20.084618,0
                -101.16966,20.082308,0
                -101.173628,20.076244,0
                -101.170886,20.075695,0
                -101.17162,20.073452,0
                -101.174014,20.072105,0
                -101.176683,20.064508,0
                -101.181574,20.061187,0
                -101.196318,20.057189,0
                -101.182694,20.053274,0
                -101.18137,20.053372,0
                -101.18093,20.051971,0
                -101.17683,20.050568,0
                -101.171689,20.047506,0
                -101.16934,20.045765,0
                -101.167482,20.042776,0
                -101.16664,20.042466,0
                -101.167111,20.045384,0
                -101.164674,20.046204,0
                -101.163901,20.045918,0
                -101.15995,20.041931,0
                -101.160352,20.0402,0
                -101.179319,20.029571,0
                -101.182295,20.026861,0
                -101.186941,20.027572,0
                -101.191313,20.027283,0
                -101.196282,20.024861,0
                -101.201532,20.025739,0
                -101.203056,20.007224,0
                -101.213476,20.010809,0
                -101.220726,20.011436,0
                -101.226286,20.019486,0
                -101.229988,20.022936,0
                -101.230774,20.02512,0
                -101.230357,20.027266,0
                -101.238346,20.032119,0
                -101.247234,20.027738,0
                -101.247257,20.025831,0
                -101.250766,20.023264,0
                -101.249966,20.02842,0
                -101.25274,20.033615,0
                -101.253031,20.035496,0
                -101.256708,20.034845,0
                -101.261067,20.032411,0
                -101.270856,20.031106,0
                -101.27179,20.030325,0
                -101.277238,20.029237,0
                -101.280972,20.027544,0
                -101.28317,20.030713,0
                -101.29487,20.038125,0
                -101.29646,20.038645,0
                -101.301138,20.038026,0
                -101.301802,20.037373,0
                -101.306828,20.037725,0
                -101.308756,20.036248,0
                -101.316475,20.037424,0
                -101.319166,20.035769,0
                -101.321372,20.033166,0
                -101.328296,20.031979,0
                -101.334039,20.031523,0
                -101.337264,20.03278,0
                -101.339801,20.031781,0
                -101.348207,20.032111,0
                -101.350743,20.034462,0
                -101.35134,20.034375,0
                -101.354072,20.038398,0
                -101.358431,20.038582,0
                -101.363229,20.037602,0
                -101.36324,20.036903,0
                -101.36593,20.036018,0
                -101.367539,20.036114,0
                -101.370434,20.036641,0
                -101.37155,20.03831,0
                -101.373015,20.038549,0
                -101.374947,20.040429,0
                -101.381712,20.033518,0
                -101.388736,20.030398,0
                -101.390226,20.032764,0
                -101.391994,20.033841,0
                -101.397641,20.034139,0
                -101.399719,20.036319,0
                -101.40168,20.035009,0
                -101.40203,20.038051,0
                -101.402451,20.044826,0
                -101.421698,20.036392,0
                -101.426786,20.03278,0
                -101.430183,20.029142,0
                -101.43455,20.029633,0
                -101.442761,20.03497,0
                -101.450197,20.034033,0
                -101.453215,20.034807,0
                -101.457996,20.03459,0
                -101.461541,20.035964,0
                -101.462538,20.037331,0
                -101.463558,20.037295,0
                -101.464835,20.036654,0
                -101.463741,20.035789,0
                -101.464313,20.034401,0
                -101.463765,20.030569,0
                -101.466262,20.023095,0
                -101.472498,20.018727,0
                -101.479652,20.014875,0
                -101.492914,20.017594,0
                -101.498406,20.010794,0
                -101.512999,20.012588,0
                -101.513912,20.01223,0
                -101.518802,20.006303,0
                -101.521098,20.006415,0
                -101.524558,20.005402,0
                -101.52526,19.998196,0
                -101.528219,19.997224,0
                -101.534624,19.998209,0
                -101.55129,19.993606,0
                -101.564278,19.988085,0
                -101.563863,19.985883,0
                -101.560447,19.981431,0
                -101.564619,19.976849,0
                -101.565217,19.975078,0
                -101.565034,19.972702,0
                -101.565934,19.971383,0
                -101.56645,19.968554,0
                -101.56068,19.967793,0
                -101.559515,19.96682,0
                -101.559219,19.965516,0
                -101.555582,19.9617,0
                -101.558703,19.960836,0
                -101.555794,19.954486,0
                -101.547812,19.947991,0
                -101.550478,19.946691,0
                -101.553919,19.946627,0
                -101.565472,19.941709,0
                -101.56812,19.939497,0
                -101.572524,19.939475,0
                -101.576079,19.940988,0
                -101.584763,19.937897,0
                -101.583932,19.937423,0
                -101.58554,19.936641,0
                -101.587721,19.936424,0
                -101.588697,19.937519,0
                -101.590951,19.934068,0
                -101.603162,19.927016,0
                -101.594624,19.926796,0
                -101.593705,19.926381,0
                -101.593928,19.925327,0
                -101.592236,19.922486,0
                -101.590798,19.923081,0
                -101.589725,19.922653,0
                -101.590222,19.91817,0
                -101.591878,19.915965,0
                -101.597019,19.912514,0
                -101.599446,19.912369,0
                -101.600949,19.910085,0
                -101.599802,19.902886,0
                -101.598133,19.901201,0
                -101.597827,19.898879,0
                -101.595671,19.897702,0
                -101.594828,19.89622,0
                -101.597157,19.890017,0
                -101.597864,19.890673,0
                -101.598606,19.889775,0
                -101.59977,19.8865,0
                -101.59958,19.881968,0
                -101.595158,19.881958,0
                -101.593499,19.880358,0
                -101.590522,19.88028,0
                -101.588397,19.876398,0
                -101.582822,19.870143,0
                -101.578298,19.870425,0
                -101.577966,19.871755,0
                -101.576612,19.871926,0
                -101.575898,19.872702,0
                -101.574236,19.87204,0
                -101.573277,19.868745,0
                -101.571746,19.8683,0
                -101.566854,19.86759,0
                -101.561292,19.868767,0
                -101.554653,19.867642,0
                -101.547194,19.867708,0
                -101.546531,19.868349,0
                -101.546298,19.867628,0
                -101.537927,19.867012,0
                -101.53458,19.866049,0
                -101.53274,19.866301,0
                -101.528395,19.864972,0
                -101.523747,19.865107,0
                -101.51617,19.861636,0
                -101.511209,19.861598,0
                -101.50968,19.862209,0
                -101.502654,19.859097,0
                -101.503047,19.858421,0
                -101.507483,19.85705,0
                -101.507144,19.851956,0
                -101.499198,19.84502,0
                -101.495196,19.83069,0
                -101.49725,19.826099,0
                -101.496692,19.822839,0
                -101.497667,19.820112,0
                -101.499219,19.819331,0
                -101.502394,19.819365,0
                -101.502108,19.819034,0
                -101.503611,19.818294,0
                -101.502894,19.817073,0
                -101.503422,19.816025,0
                -101.504871,19.815747,0
                -101.505655,19.814062,0
                -101.504846,19.814354,0
                -101.504204,19.813648,0
                -101.503797,19.811329,0
                -101.500639,19.810844,0
                -101.500511,19.807317,0
                -101.498759,19.805221,0
                -101.498042,19.802815,0
                -101.493329,19.803223,0
                -101.490174,19.799902,0
                -101.48783,19.799413,0
                -101.485605,19.801064,0
                -101.479393,19.799461,0
                -101.476279,19.803584,0
                -101.474764,19.808539,0
                -101.471946,19.810793,0
                -101.471087,19.810438,0
                -101.472992,19.812497,0
                -101.472611,19.814257,0
                -101.468313,19.819256,0
                -101.451108,19.820236,0
                -101.44914,19.820922,0
                -101.446368,19.820521,0
                -101.442776,19.821907,0
                -101.427086,19.822264,0
                -101.416895,19.823478,0
                -101.412944,19.821216,0
                -101.412106,19.822365,0
                -101.409844,19.823094,0
                -101.376877,19.828536,0
                -101.376313,19.826191,0
                -101.371973,19.818925,0
                -101.367811,19.817758,0
                -101.359013,19.821124,0
                -101.354461,19.824743,0
                -101.357001,19.826937,0
                -101.357287,19.829368,0
                -101.356248,19.833804,0
                -101.359765,19.838802,0
                -101.355811,19.840389,0
                -101.353296,19.8381,0
                -101.351561,19.838499,0
                -101.351852,19.839742,0
                -101.348829,19.840083,0
                -101.346533,19.84158,0
                -101.344366,19.841623,0
                -101.342518,19.843685,0
                -101.341313,19.843205,0
                -101.339517,19.843657,0
                -101.339437,19.84512,0
                -101.336676,19.845978,0
                -101.336042,19.847196,0
                -101.336347,19.848691,0
                -101.335332,19.848696,0
                -101.334659,19.849585,0
                -101.330979,19.848529,0
                -101.326949,19.848341,0
                -101.323369,19.850264,0
                -101.318262,19.851382,0
                -101.317161,19.852534,0
                -101.314358,19.853403,0
                -101.312356,19.855553,0
                -101.308539,19.857259,0
                -101.304041,19.857451,0
                -101.304224,19.858079,0
                -101.303342,19.857924,0
                -101.302753,19.856807,0
                -101.29893,19.858324,0
                -101.291507,19.85975,0
                -101.287354,19.860798,0
                -101.28566,19.86227,0
                -101.283658,19.861494,0
                -101.281726,19.861809,0
                -101.281129,19.860561,0
                -101.280269,19.860821,0
                -101.279516,19.859469,0
                -101.277892,19.861311,0
                -101.276372,19.860727,0
                -101.276631,19.860319,0
                -101.274205,19.860555,0
                -101.274174,19.859297,0
                -101.26868,19.857857,0
                -101.264836,19.858681,0
                -101.26078,19.861252,0
                -101.257461,19.861124,0
                -101.256849,19.860865,0
                -101.258968,19.858226,0
                -101.262029,19.856557,0
                -101.264723,19.85385,0
                -101.279132,19.845173,0
                -101.275785,19.837849,0
                -101.274073,19.83543,0
                -101.270683,19.827183,0
                -101.265947,19.825558,0
                -101.255021,19.815534,0
                -101.253345,19.812094,0
                -101.24691,19.804098,0
                -101.245795,19.800986,0
                -101.247858,19.799836,0
                -101.246786,19.798985,0
                -101.247901,19.797602,0
                -101.245558,19.797045,0
                -101.245473,19.795953,0
                -101.244122,19.794687,0
                -101.241778,19.794559,0
                -101.241116,19.795548,0
                -101.240169,19.795696,0
                -101.240839,19.793116,0
                -101.242289,19.791348,0
                -101.240031,19.790656,0
                -101.240892,19.788535,0
                -101.24397,19.787384,0
                -101.242059,19.78516,0
                -101.239452,19.780227,0
                -101.239077,19.776671,0
                -101.23727,19.77489,0
                -101.23676,19.771891,0
                -101.234993,19.771539,0
                -101.233845,19.770255,0
                -101.231751,19.77057,0
                -101.230876,19.768359,0
                -101.229858,19.757502,0
                -101.229042,19.756923,0
                -101.22791,19.756604,0
                -101.222895,19.75997,0
                -101.21799,19.761647,0
                -101.216922,19.758046,0
                -101.209994,19.757458,0
                -101.203349,19.75345,0
                -101.201717,19.751715,0
                -101.193978,19.748143,0
                -101.172927,19.748486,0
                -101.171397,19.75125,0
                -101.165711,19.748526,0
                -101.161223,19.747562,0
                -101.160654,19.746357,0
                -101.156934,19.746457,0
                -101.157803,19.751442,0
                -101.157576,19.757797,0
                -101.142597,19.761672,0
                -101.138636,19.763787,0
                -101.135542,19.764474,0
                -101.129546,19.764027,0
                -101.127165,19.765374,0
                -101.123769,19.766043,0
                -101.121743,19.767269,0
                -101.113381,19.770063,0
                -101.10934,19.766267,0
                -101.108885,19.764262,0
                -101.106001,19.76203,0
                -101.109052,19.75117,0
                -101.111747,19.751171,0
                -101.112542,19.750605,0
                -101.115283,19.74742,0
                -101.114732,19.745328,0
                -101.115438,19.744373,0
                -101.110507,19.743567,0
                -101.11049,19.742343,0
                -101.111152,19.742006,0
                -101.109093,19.739543,0
                -101.106174,19.739952,0
                -101.103432,19.738153,0
                -101.101987,19.738594,0
                -101.100253,19.741983,0
                -101.09743,19.742815,0
                -101.092119,19.741027,0
                -101.09217,19.739772,0
                -101.089847,19.739516,0
                -101.088994,19.739228,0
                -101.089009,19.737828,0
                -101.086903,19.735546,0
                -101.086711,19.731381,0
                -101.087539,19.730617,0
                -101.084715,19.731627,0
                -101.08504,19.73002,0
                -101.083927,19.729757,0
                -101.084762,19.7265,0
                -101.084224,19.724447,0
                -101.086196,19.723768,0
                -101.086338,19.722581,0
                -101.087796,19.722245,0
                -101.087949,19.719935,0
                -101.089536,19.719871,0
                -101.088863,19.719604,0
                -101.095301,19.710979,0
                -101.095813,19.707757,0
                -101.094885,19.7025,0
                -101.096864,19.70113,0
                -101.098302,19.689618,0
                -101.095911,19.688907,0
                -101.09589,19.687426,0
                -101.100166,19.677704,0
                -101.084467,19.676407,0
                -101.085758,19.673984,0
                -101.084554,19.673073,0
                -101.084687,19.67258,0
                -101.082554,19.671874,0
                -101.084378,19.671859,0
                -101.08379,19.671664,0
                -101.08414,19.670361,0
                -101.083595,19.668212,0
                -101.084973,19.668142,0
                -101.083753,19.667509,0
                -101.08464,19.66509,0
                -101.085906,19.663937,0
                -101.085077,19.663687,0
                -101.083834,19.661132,0
                -101.083501,19.661382,0
                -101.082987,19.658921,0
                -101.083354,19.659376,0
                -101.084087,19.65802,0
                -101.082852,19.657465,0
                -101.083133,19.656769,0
                -101.082405,19.656349,0
                -101.081896,19.652553,0
                -101.081248,19.652854,0
                -101.081351,19.65201,0
                -101.079357,19.651727,0
                -101.081124,19.651063,0
                -101.081969,19.648885,0
                -101.080082,19.646399,0
                -101.080115,19.645128,0
                -101.07791,19.640667,0
                -101.077473,19.63525,0
                -101.067597,19.622391,0
                -101.067298,19.618219,0
                -101.067831,19.616504,0
                -101.065742,19.615684,0
                -101.064418,19.614272,0
                -101.059253,19.616021,0
                -101.056289,19.613728,0
                -101.055061,19.611046,0
                -101.05563,19.609795,0
                -101.054685,19.610171,0
                -101.051724,19.607614,0
                -101.051329,19.60621,0
                -101.049062,19.60734,0
                -101.049382,19.606574,0
                -101.051487,19.605466,0
                -101.051194,19.604319,0
                -101.052941,19.602656,0
                -101.051435,19.601598,0
                -101.050428,19.599567,0
                -101.050719,19.598855,0
                -101.050058,19.597373,0
                -101.050525,19.596663,0
                -101.044501,19.594931,0
                -101.045465,19.591214,0
                -101.04633,19.590643,0
                -101.04713,19.590678,0
                -101.046955,19.591406,0
                -101.050209,19.592363,0
                -101.049662,19.588776,0
                -101.051788,19.587105,0
                -101.052132,19.58566,0
                -101.048678,19.586697,0
                -101.047689,19.585424,0
                -101.049443,19.585424,0
                -101.051135,19.582822,0
                -101.051028,19.578228,0
                -101.052136,19.577371,0
                -101.051584,19.575498,0
                -101.050027,19.57476,0
                -101.045966,19.575096,0
                -101.044666,19.574421,0
                -101.042727,19.574551,0
                -101.042762,19.57288,0
                -101.044526,19.572891,0
                -101.047595,19.570885,0
                -101.049061,19.570635,0
                -101.051132,19.573001,0
                -101.052206,19.57247,0
                -101.05316,19.574143,0
                -101.058425,19.576665,0
                -101.058654,19.577853,0
                -101.062633,19.578462,0
                -101.064042,19.577473,0
                -101.065912,19.573429,0
                -101.066787,19.574385,0
                -101.068161,19.574044,0
                -101.07247,19.575764,0
                -101.073151,19.577934,0
                -101.076837,19.579909,0
                -101.079348,19.579664,0
                -101.081332,19.580857,0
                -101.084836,19.584641,0
                -101.090086,19.583566,0
                -101.095561,19.583741,0
                -101.102023,19.587092,0
                -101.103083,19.588299,0
                -101.105699,19.587276,0
                -101.106981,19.588125,0
                -101.109473,19.587158,0
                -101.112173,19.584419,0
                -101.113214,19.584496,0
                -101.115786,19.582369,0
                -101.12132,19.575244,0
                -101.125907,19.572281,0
                -101.127458,19.570454,0
                -101.12757,19.568548,0
                -101.130545,19.56846,0
                -101.130744,19.567226,0
                -101.13178,19.56634,0
                -101.131622,19.565461,0
                -101.129269,19.565804,0
                -101.125412,19.563617,0
                -101.126605,19.561997,0
                -101.129192,19.561141,0
                -101.129146,19.55837,0
                -101.130907,19.554561,0
                -101.129217,19.551045,0
                -101.127934,19.549884,0
                -101.126833,19.551149,0
                -101.122362,19.551501,0
                -101.119534,19.551061,0
                -101.11857,19.550279,0
                -101.116154,19.551395,0
                -101.114193,19.551314,0
                -101.111426,19.55311,0
                -101.11174,19.554525,0
                -101.1095,19.555336,0
                -101.10941,19.554134,0
                -101.106968,19.551461,0
                -101.107547,19.546216,0
                -101.111333,19.54433,0
                -101.11239,19.5421,0
                -101.115182,19.540445,0
                -101.116482,19.538875,0
                -101.117127,19.534831,0
                -101.115709,19.53148,0
                -101.107618,19.52715,0
                -101.101028,19.521416,0
                -101.096312,19.521013,0
                -101.088554,19.515483,0
                -101.08728,19.52049,0
                -101.085024,19.523725,0
                -101.084297,19.532335,0
                -101.081287,19.5315,0
                -101.080666,19.532645,0
                -101.078806,19.53315,0
                -101.08013,19.531981,0
                -101.080615,19.529913,0
                -101.07883,19.525713,0
                -101.076116,19.523201,0
                -101.073953,19.519752,0
                -101.070615,19.517802,0
                -101.070022,19.51375,0
                -101.071546,19.512347,0
                -101.070005,19.508807,0
                -101.070311,19.507373,0
                -101.067745,19.505027,0
                -101.064303,19.503877,0
                -101.058949,19.500433,0
                -101.055899,19.500466,0
                -101.05128,19.498633,0
                -101.04521,19.492845,0
                -101.046603,19.491798,0
                -101.046609,19.490237,0
                -101.047478,19.490228,0
                -101.046926,19.488559,0
                -101.047646,19.487886,0
                -101.04708,19.487089,0
                -101.049338,19.48773,0
                -101.050437,19.482902,0
                -101.052616,19.482142,0
                -101.053153,19.479996,0
                -101.054755,19.478467,0
                -101.05476,19.477374,0
                -101.056045,19.475949,0
                -101.055142,19.473552,0
                -101.053109,19.473056,0
                -101.055371,19.470574,0
                -101.055553,19.468431,0
                -101.058848,19.46673,0
                -101.057717,19.465227,0
                -101.058023,19.46453,0
                -101.05885,19.464818,0
                -101.059316,19.463388,0
                -101.060729,19.462475,0
                -101.060594,19.460111,0
                -101.062048,19.457126,0
                -101.061422,19.456229,0
                -101.060107,19.45669,0
                -101.061029,19.455013,0
                -101.060432,19.454265,0
                -101.060791,19.452774,0
                -101.068686,19.448155,0
                -101.069706,19.444291,0
                -101.071324,19.444139,0
                -101.072135,19.443145,0
                -101.073656,19.44281,0
                -101.075877,19.440337,0
                -101.075649,19.439376,0
                -101.072021,19.43455,0
                -101.069947,19.434821,0
                -101.065999,19.43401,0
                -101.060298,19.431747,0
                -101.05833,19.433004,0
                -101.060032,19.436495,0
                -101.056955,19.438036,0
                -101.05281,19.436699,0
                -101.051202,19.435476,0
                -101.050025,19.436197,0
                -101.049438,19.437831,0
                -101.047064,19.437256,0
                -101.044236,19.439483,0
                -101.042708,19.439015,0
                -101.040464,19.439403,0
                -101.037105,19.437061,0
                -101.036636,19.43582,0
                -101.037504,19.433122,0
                -101.036853,19.432931,0
                -101.03216,19.436226,0
                -101.029872,19.436687,0
                -101.027599,19.436081,0
                -101.025385,19.43241,0
                -101.023854,19.431484,0
                -101.026453,19.431112,0
                -101.027261,19.428935,0
                -101.028276,19.428282,0
                -101.029316,19.426254,0
                -101.031283,19.426447,0
                -101.031418,19.424776,0
                -101.032957,19.425574,0
                -101.032614,19.42386,0
                -101.035212,19.421769,0
                -101.035103,19.419304,0
                -101.036157,19.419474,0
                -101.035377,19.416662,0
                -101.025309,19.395748,0
                -101.027808,19.392753,0
                -101.026064,19.391962,0
                -101.026222,19.389926,0
                -101.026873,19.389133,0
                -101.028074,19.38943,0
                -101.026988,19.387005,0
                -101.02836,19.38627,0
                -101.028885,19.384975,0
                -101.027132,19.383607,0
                -101.026589,19.381678,0
                -101.023886,19.381597,0
                -101.020709,19.380239,0
                -101.018636,19.37826,0
                -101.019238,19.375591,0
                -101.017569,19.372899,0
                -101.017925,19.37176,0
                -101.018871,19.371601,0
                -101.018554,19.370649,0
                -101.016374,19.369414,0
                -101.01599,19.36831,0
                -101.013669,19.368413,0
                -101.013447,19.366855,0
                -101.011176,19.365595,0
                -101.012165,19.365088,0
                -101.009276,19.364709,0
                -101.004828,19.362882,0
                -101.001857,19.359943,0
                -101.000969,19.35768,0
                -101.001389,19.356657,0
                -101.000529,19.354897,0
                -101.000455,19.352261,0
                -101.00223,19.351927,0
                -101.002709,19.349801,0
                -101.003624,19.349037,0
                -101.003756,19.347476,0
                -101.00758,19.340897,0
                -101.007321,19.336423,0
                -101.008305,19.332948,0
                -101.007248,19.331146,0
                -101.011038,19.32237,0
                -101.012449,19.320768,0
                -101.011419,19.316252,0
                -101.01221,19.316091,0
                -101.01215,19.31508,0
                -101.013495,19.313906,0
                -101.014791,19.314617,0
                -101.015546,19.313568,0
                -101.015265,19.312843,0
                -101.017099,19.312121,0
                -101.016266,19.311366,0
                -101.016424,19.307629,0
                -101.015357,19.306769,0
                -101.01541,19.305923,0
                -101.01595,19.303916,0
                -101.019614,19.297483,0
                -101.019066,19.295957,0
                -101.017005,19.294472,0
                -101.017494,19.293285,0
                -101.017161,19.289294,0
                -101.019148,19.283732,0
                -101.021597,19.28332,0
                -101.022395,19.282607,0
                -101.021034,19.281016,0
                -101.020981,19.277195,0
                -101.020176,19.276138,0
                -101.022945,19.27608,0
                -101.024866,19.272903,0
                -101.021995,19.268581,0
                -101.019851,19.268847,0
                -101.018326,19.267808,0
                -101.01804,19.266868,0
                -101.02008,19.2638,0
                -101.020352,19.260344,0
                -101.024118,19.256891,0
                -101.025477,19.249517,0
                -101.024818,19.248628,0
                -101.026943,19.248907,0
                -101.027384,19.246385,0
                -101.030908,19.245909,0
                -101.033109,19.244948,0
                -101.033353,19.244191,0
                -101.032561,19.240888,0
                -101.030774,19.23877,0
                -101.030514,19.237352,0
                -101.029259,19.23641,0
                -101.029069,19.235033,0
                -101.029844,19.233979,0
                -101.029244,19.230859,0
                -101.031906,19.226682,0
                -101.03403,19.225377,0
                -101.034467,19.223314,0
                -101.031477,19.22134,0
                -101.031409,19.216365,0
                -101.033922,19.212722,0
                -101.033972,19.211094,0
                -101.035132,19.209032,0
                -101.039411,19.203637,0
                -101.041031,19.199596,0
                -101.044923,19.196309,0
                -101.044572,19.192505,0
                -101.048506,19.191946,0
                -101.052459,19.188844,0
                -101.055686,19.188597,0
                -101.055687,19.188024,0
                -101.053806,19.186853,0
                -101.049629,19.187263,0
                -101.046471,19.186298,0
                -101.044154,19.186755,0
                -101.043453,19.186318,0
                -101.042804,19.183452,0
                -101.040972,19.183313,0
                -101.039526,19.182028,0
                -101.040251,19.180171,0
                -101.038708,19.178657,0
                -101.039334,19.178359,0
                -101.039265,19.176663,0
                -101.041534,19.17522,0
                -101.04011,19.175173,0
                -101.039099,19.173636,0
                -101.039388,19.17272,0
                -101.034782,19.169598,0
                -101.033024,19.16751,0
                -101.03264,19.164552,0
                -101.03088,19.162441,0
                -101.030906,19.161134,0
                -101.028738,19.157716,0
                -101.026279,19.157003,0
                -101.025949,19.155567,0
                -101.023682,19.154763,0
                -101.022767,19.153364,0
                -101.025229,19.15027,0
                -101.025466,19.146175,0
                -101.023958,19.142824,0
                -101.025493,19.140762,0
                -101.020564,19.138586,0
                -101.020777,19.137074,0
                -101.023599,19.135212,0
                -101.021395,19.13171,0
                -101.021167,19.124678,0
                -101.018391,19.121812,0
                -101.015648,19.117103,0
                -101.015641,19.111633,0
                -101.014721,19.108931,0
                -101.015705,19.104509,0
                -101.012083,19.103399,0
                -101.01143,19.102502,0
                -101.008569,19.102602,0
                -101.008862,19.100541,0
                -101.010435,19.098796,0
                -101.0097,19.095801,0
                -100.990601,19.080861,0
                -100.964275,19.088956,0
                -100.957905,19.085432,0
                -100.95474,19.088504,0
                -100.947403,19.093031,0
                -100.944732,19.092069,0
                -100.944096,19.09262,0
                -100.940162,19.091944,0
                -100.938432,19.090214,0
                -100.939234,19.087573,0
                -100.940671,19.086808,0
                -100.939616,19.084925,0
                -100.93554,19.082984,0
                -100.930671,19.079158,0
                -100.928731,19.074048,0
                -100.928293,19.070996,0
                -100.927521,19.070679,0
                -100.925904,19.071347,0
                -100.922793,19.070229,0
                -100.921055,19.070426,0
                -100.908112,19.064074,0
                -100.904309,19.061624,0
                -100.902622,19.058977,0
                -100.904172,19.055967,0
                -100.901474,19.053549,0
                -100.901777,19.05197,0
                -100.897095,19.051047,0
                -100.895945,19.053555,0
                -100.894928,19.053933,0
                -100.891115,19.049171,0
                -100.887542,19.047742,0
                -100.887479,19.043942,0
                -100.885628,19.043394,0
                -100.883434,19.04146,0
                -100.884948,19.039513,0
                -100.882954,19.038713,0
                -100.881795,19.036961,0
                -100.877472,19.035803,0
                -100.877036,19.035373,0
                -100.877294,19.032999,0
                -100.876612,19.031978,0
                -100.872727,19.028922,0
                -100.872489,19.027362,0
                -100.875709,19.025287,0
                -100.877642,19.022328,0
                -100.878263,19.019682,0
                -100.876858,19.020142,0
                -100.87471,19.018665,0
                -100.874168,19.017314,0
                -100.872305,19.016757,0
                -100.870464,19.017521,0
                -100.870628,19.016624,0
                -100.869105,19.015849,0
                -100.865422,19.016838,0
                -100.862726,19.013193,0
                -100.864831,19.009973,0
                -100.866067,19.009711,0
                -100.87422,19.002134,0
                -100.869254,18.992365,0
                -100.862793,18.991053,0
                -100.862296,18.989033,0
                -100.860062,18.988261,0
                -100.85805,18.980532,0
                -100.85681,18.978833,0
                -100.858311,18.974604,0
                -100.857705,18.973077,0
                -100.85675,18.972679,0
                -100.857762,18.970896,0
                -100.857094,18.970464,0
                -100.857992,18.967201,0
                -100.857465,18.967041,0
                -100.858892,18.964276,0
                -100.858186,18.963671,0
                -100.859367,18.962088,0
                -100.863389,18.96141,0
                -100.863462,18.959859,0
                -100.864834,18.959097,0
                -100.866532,18.956448,0
                -100.867981,18.955766,0
                -100.867953,18.954581,0
                -100.866952,18.953886,0
                -100.8703,18.948395,0
                -100.869032,18.944929,0
                -100.866922,18.94556,0
                -100.866419,18.944467,0
                -100.866501,18.943663,0
                -100.87056,18.938871,0
                -100.871661,18.935733,0
                -100.870379,18.935824,0
                -100.870861,18.934285,0
                -100.869932,18.934294,0
                -100.869505,18.933194,0
                -100.868545,18.933613,0
                -100.868431,18.932485,0
                -100.867366,18.932148,0
                -100.866298,18.93017,0
                -100.86694,18.92792,0
                -100.866442,18.927056,0
                -100.867638,18.925214,0
                -100.867545,18.922841,0
                -100.868569,18.922158,0
                -100.875203,18.922462,0
                -100.876515,18.923083,0
                -100.876855,18.920554,0
                -100.881346,18.916309,0
                -100.885159,18.910733,0
                -100.898071,18.884546,0
                -100.89126,18.870239,0
                -100.890553,18.8606,0
                -100.887383,18.858166,0
                -100.887036,18.857163,0
                -100.88306,18.854371,0
                -100.8824,18.854539,0
                -100.881037,18.852849,0
                -100.875578,18.853192,0
                -100.873103,18.854065,0
                -100.872043,18.855327,0
                -100.868575,18.855836,0
                -100.868078,18.852909,0
                -100.866492,18.85133,0
                -100.865543,18.848933,0
                -100.864442,18.848414,0
                -100.866762,18.844167,0
                -100.86517,18.842792,0
                -100.865534,18.842016,0
                -100.863817,18.840292,0
                -100.860145,18.840295,0
                -100.859313,18.841171,0
                -100.858144,18.840455,0
                -100.857381,18.841093,0
                -100.855185,18.840416,0
                -100.854381,18.841202,0
                -100.853002,18.840326,0
                -100.852727,18.832539,0
                -100.847873,18.820393,0
                -100.84711,18.822151,0
                -100.843087,18.824905,0
                -100.839455,18.826027,0
                -100.835573,18.830527,0
                -100.833048,18.829127,0
                -100.833423,18.828282,0
                -100.83247,18.82889,0
                -100.828863,18.827993,0
                -100.820902,18.829906,0
                -100.820359,18.829432,0
                -100.816601,18.829831,0
                -100.813793,18.828466,0
                -100.811676,18.82854,0
                -100.809283,18.83052,0
                -100.808177,18.829686,0
                -100.808238,18.828812,0
                -100.806235,18.828835,0
                -100.806008,18.827067,0
                -100.804755,18.827093,0
                -100.80409,18.826398,0
                -100.803894,18.824033,0
                -100.800664,18.822615,0
                -100.795667,18.823786,0
                -100.793777,18.825097,0
                -100.790475,18.825434,0
                -100.791593,18.82927,0
                -100.790814,18.830547,0
                -100.791771,18.834168,0
                -100.787958,18.837021,0
                -100.788072,18.838768,0
                -100.784034,18.842656,0
                -100.782423,18.846028,0
                -100.780409,18.848359,0
                -100.779422,18.851449,0
                -100.782117,18.854258,0
                -100.777995,18.857355,0
                -100.776922,18.859752,0
                -100.774589,18.859993,0
                -100.773316,18.858783,0
                -100.769945,18.860774,0
                -100.769115,18.860229,0
                -100.768871,18.862398,0
                -100.76787,18.863998,0
                -100.766409,18.865556,0
                -100.765186,18.86443,0
                -100.763939,18.866872,0
                -100.75968,18.865834,0
                -100.755677,18.867743,0
                -100.752919,18.867051,0
                -100.748838,18.868114,0
                -100.747425,18.866449,0
                -100.748287,18.861327,0
                -100.746202,18.857979,0
                -100.744889,18.857564,0
                -100.741118,18.860415,0
                -100.736831,18.86051,0
                -100.736079,18.858769,0
                -100.737456,18.85524,0
                -100.736367,18.851314,0
                -100.73494,18.85042,0
                -100.73211,18.850049,0
                -100.72658,18.850554,0
                -100.724005,18.849235,0
                -100.716849,18.842623,0
                -100.712255,18.837061,0
                -100.709561,18.835849,0
                -100.709644,18.834514,0
                -100.71218,18.829953,0
                -100.711968,18.825909,0
                -100.711455,18.825402,0
                -100.705093,18.825136,0
                -100.703249,18.824581,0
                -100.702756,18.82376,0
                -100.703095,18.820443,0
                -100.704684,18.817699,0
                -100.705526,18.813713,0
                -100.705838,18.796407,0
                -100.705105,18.795766,0
                -100.699621,18.795523,0
                -100.696069,18.794125,0
                -100.69351,18.798512,0
                -100.692039,18.805606,0
                -100.691116,18.805543,0
                -100.689921,18.802491,0
                -100.687675,18.804492,0
                -100.684698,18.803165,0
                -100.683317,18.808567,0
                -100.679928,18.809555,0
                -100.679437,18.811705,0
                -100.680683,18.815484,0
                -100.680004,18.817226,0
                -100.678409,18.817603,0
                -100.67621,18.816769,0
                -100.671934,18.818558,0
                -100.668366,18.818343,0
                -100.666854,18.81938,0
                -100.666616,18.820288,0
                -100.668041,18.821503,0
                -100.671444,18.820657,0
                -100.672649,18.822773,0
                -100.672933,18.824805,0
                -100.671646,18.828155,0
                -100.668434,18.828967,0
                -100.666082,18.834255,0
                -100.66272,18.833652,0
                -100.659335,18.833968,0
                -100.656354,18.838356,0
                -100.653661,18.838077,0
                -100.650692,18.83994,0
                -100.653518,18.843874,0
                -100.651704,18.847945,0
                -100.649392,18.848874,0
                -100.645489,18.847858,0
                -100.643414,18.848877,0
                -100.642783,18.852148,0
                -100.644463,18.858555,0
                -100.645346,18.859077,0
                -100.645202,18.860318,0
                -100.642311,18.860861,0
                -100.640357,18.862173,0
                -100.64122,18.864254,0
                -100.640837,18.865906,0
                -100.637524,18.867632,0
                -100.634561,18.866609,0
                -100.629375,18.867923,0
                -100.627006,18.867324,0
                -100.625415,18.865857,0
                -100.622247,18.866835,0
                -100.621998,18.867785,0
                -100.623422,18.87134,0
                -100.619611,18.874531,0
                -100.619387,18.8762,0
                -100.620362,18.878504,0
                -100.619056,18.879841,0
                -100.617301,18.879374,0
                -100.615666,18.880027,0
                -100.613444,18.883267,0
                -100.613546,18.886371,0
                -100.610804,18.889168,0
                -100.610867,18.891972,0
                -100.612615,18.892257,0
                -100.612897,18.893455,0
                -100.608679,18.894774,0
                -100.607445,18.894449,0
                -100.606001,18.892936,0
                -100.602653,18.893583,0
                -100.600483,18.892851,0
                -100.600406,18.894245,0
                -100.601573,18.896121,0
                -100.601232,18.896992,0
                -100.604107,18.899383,0
                -100.60205,18.900628,0
                -100.599425,18.900306,0
                -100.593998,18.905915,0
                -100.589389,18.908116,0
                -100.59233,18.911659,0
                -100.593237,18.915279,0
                -100.591695,18.915997,0
                -100.590356,18.91557,0
                -100.586716,18.911707,0
                -100.58541,18.911309,0
                -100.582426,18.914785,0
                -100.580371,18.915718,0
                -100.578159,18.914112,0
                -100.574235,18.914533,0
                -100.573671,18.91557,0
                -100.574019,18.916997,0
                -100.576412,18.918539,0
                -100.578006,18.921066,0
                -100.576882,18.922587,0
                -100.575948,18.922874,0
                -100.572174,18.922002,0
                -100.567255,18.918359,0
                -100.565196,18.91769,0
                -100.564849,18.91854,0
                -100.5655,18.91918,0
                -100.568324,18.919714,0
                -100.568782,18.921685,0
                -100.568311,18.922668,0
                -100.563856,18.923763,0
                -100.564975,18.928569,0
                -100.564321,18.929521,0
                -100.562173,18.928621,0
                -100.563166,18.931263,0
                -100.561994,18.932815,0
                -100.558172,18.935098,0
                -100.549634,18.934161,0
                -100.546845,18.932745,0
                -100.543786,18.934704,0
                -100.543146,18.937105,0
                -100.543566,18.940408,0
                -100.545278,18.941597,0
                -100.546917,18.941425,0
                -100.548036,18.945464,0
                -100.549711,18.94642,0
                -100.546354,18.949295,0
                -100.546084,18.95015,0
                -100.547596,18.952108,0
                -100.547073,18.954323,0
                -100.547442,18.956508,0
                -100.546404,18.958844,0
                -100.547135,18.962384,0
                -100.546671,18.964195,0
                -100.544768,18.965944,0
                -100.54318,18.965578,0
                -100.540109,18.962688,0
                -100.536939,18.962823,0
                -100.533397,18.964397,0
                -100.533219,18.966395,0
                -100.535133,18.97012,0
                -100.537314,18.972344,0
                -100.534351,18.975972,0
                -100.533763,18.978628,0
                -100.53729,18.982381,0
                -100.537721,18.984185,0
                -100.535232,18.987729,0
                -100.532373,18.9857,0
                -100.530223,18.987028,0
                -100.530483,18.989226,0
                -100.532395,18.991244,0
                -100.530164,18.994152,0
                -100.528865,18.99447,0
                -100.527293,18.993357,0
                -100.524228,18.992714,0
                -100.52324,18.993634,0
                -100.52305,18.994953,0
                -100.524743,19.000111,0
                -100.528401,19.005119,0
                -100.530781,19.006898,0
                -100.529853,19.009331,0
                -100.52665,19.011327,0
                -100.527574,19.010322,0
                -100.518151,19.011957,0
                -100.514784,19.008196,0
                -100.513714,19.008554,0
                -100.512752,19.012431,0
                -100.509598,19.010191,0
                -100.506434,19.013323,0
                -100.503523,19.012761,0
                -100.502733,19.013289,0
                -100.502545,19.015406,0
                -100.501706,19.01664,0
                -100.49597,19.018158,0
                -100.495527,19.018942,0
                -100.495907,19.020982,0
                -100.495281,19.022015,0
                -100.49447,19.022023,0
                -100.492099,19.020086,0
                -100.488819,19.023207,0
                -100.484336,19.021025,0
                -100.483192,19.023312,0
                -100.483626,19.024722,0
                -100.485234,19.026292,0
                -100.484853,19.028056,0
                -100.480523,19.025926,0
                -100.478665,19.026772,0
                -100.479396,19.030594,0
                -100.479019,19.032022,0
                -100.478006,19.033701,0
                -100.475549,19.034177,0
                -100.473612,19.033144,0
                -100.471503,19.030532,0
                -100.468674,19.029085,0
                -100.467218,19.029402,0
                -100.465576,19.031693,0
                -100.461291,19.031476,0
                -100.459036,19.033027,0
                -100.457906,19.04098,0
                -100.454995,19.041326,0
                -100.453639,19.042444,0
                -100.451158,19.047769,0
                -100.449992,19.048061,0
                -100.447497,19.045388,0
                -100.445593,19.045435,0
                -100.448397,19.048956,0
                -100.447126,19.052023,0
                -100.444648,19.051941,0
                -100.442223,19.053962,0
                -100.439559,19.054292,0
                -100.436189,19.057886,0
                -100.431446,19.054921,0
                -100.430734,19.055968,0
                -100.431738,19.060727,0
                -100.428242,19.061311,0
                -100.423445,19.060678,0
                -100.42047,19.060962,0
                -100.419619,19.062558,0
                -100.420451,19.064664,0
                -100.419769,19.065944,0
                -100.414121,19.064755,0
                -100.411928,19.063422,0
                -100.410827,19.063595,0
                -100.41046,19.065213,0
                -100.412619,19.066658,0
                -100.411624,19.07282,0
                -100.410456,19.074533,0
                -100.407479,19.075581,0
                -100.408933,19.078936,0
                -100.406799,19.080506,0
                -100.407985,19.082904,0
                -100.410224,19.083113,0
                -100.410676,19.084018,0
                -100.409329,19.084759,0
                -100.407212,19.089818,0
                -100.407191,19.091218,0
                -100.404756,19.093272,0
                -100.406578,19.09611,0
                -100.405139,19.097567,0
                -100.403861,19.097894,0
                -100.403798,19.102017,0
                -100.402948,19.103801,0
                -100.405493,19.104066,0
                -100.406658,19.105894,0
                -100.405846,19.107324,0
                -100.403877,19.107725,0
                -100.404378,19.109457,0
                -100.401102,19.110792,0
                -100.400041,19.110095,0
                -100.399089,19.110501,0
                -100.397561,19.116207,0
                -100.395584,19.117115,0
                -100.395158,19.117906,0
                -100.395564,19.12051,0
                -100.394645,19.121676,0
                -100.396297,19.123403,0
                -100.392143,19.124618,0
                -100.392122,19.12603,0
                -100.393931,19.127561,0
                -100.392616,19.128915,0
                -100.391497,19.128411,0
                -100.390823,19.129573,0
                -100.390892,19.131354,0
                -100.389341,19.13377,0
                -100.389184,19.135679,0
                -100.388164,19.136778,0
                -100.38807,19.138101,0
                -100.389155,19.13889,0
                -100.388373,19.140078,0
                -100.389474,19.141405,0
                -100.389482,19.142913,0
                -100.386528,19.145054,0
                -100.386112,19.147506,0
                -100.382852,19.147613,0
                -100.380343,19.149871,0
                -100.379708,19.151463,0
                -100.376041,19.15152,0
                -100.374638,19.149172,0
                -100.373118,19.148563,0
                -100.369231,19.150541,0
                -100.366653,19.149708,0
                -100.366374,19.153389,0
                -100.363654,19.152111,0
                -100.361591,19.154707,0
                -100.378191,19.1711,0
                -100.371106,19.177497,0
                -100.371017,19.183544,0
                -100.371763,19.186997,0
                -100.373153,19.187566,0
                -100.372531,19.19098,0
                -100.373229,19.191752,0
                -100.37237,19.192749,0
                -100.373085,19.194172,0
                -100.371522,19.193688,0
                -100.371196,19.194988,0
                -100.370061,19.194372,0
                -100.370091,19.195644,0
                -100.362555,19.20294,0
                -100.359223,19.202997,0
                -100.360336,19.205088,0
                -100.333646,19.230919,0
                -100.331255,19.230465,0
                -100.328721,19.237356,0
                -100.32582,19.241732,0
                -100.322497,19.250692,0
                -100.319883,19.252992,0
                -100.319921,19.254605,0
                -100.321735,19.256347,0
                -100.319732,19.261792,0
                -100.319622,19.265227,0
                -100.321068,19.267136,0
                -100.319974,19.271636,0
                -100.320713,19.274535,0
                -100.320486,19.280293,0
                -100.317127,19.284229,0
                -100.31531,19.287417,0
                -100.320146,19.288899,0
                -100.320065,19.290933,0
                -100.316209,19.293157,0
                -100.31406,19.295217,0
                -100.313098,19.297259,0
                -100.320662,19.306829,0
                -100.323265,19.306803,0
                -100.32062,19.315268,0
                -100.317957,19.318088,0
                -100.316278,19.31941,0
                -100.307512,19.322067,0
                -100.306405,19.323768,0
                -100.3074,19.333511,0
                -100.306,19.336869,0
                -100.306088,19.337886,0
                -100.306935,19.338243,0
                -100.301708,19.342901,0
                -100.300731,19.342744,0
                -100.307261,19.348444,0
                -100.311112,19.353224,0
                -100.312374,19.362361,0
                -100.310514,19.364706,0
                -100.305905,19.366866,0
                -100.304999,19.368605,0
                -100.302136,19.369998,0
                -100.299574,19.376581,0
                -100.294374,19.380929,0
                -100.293417,19.38585,0
                -100.293094,19.395129,0
                -100.280456,19.398392,0
                -100.273039,19.398945,0
                -100.270347,19.401406,0
                -100.267673,19.402573,0
                -100.239739,19.40428,0
                -100.237425,19.403512,0
                -100.215942,19.413421,0
                -100.210747,19.418811,0
                -100.209451,19.422145,0
                -100.202077,19.43202,0
                -100.197335,19.433467,0
                -100.192281,19.437017,0
                -100.189873,19.439704,0
                -100.189788,19.440762,0
                -100.192722,19.442985,0
                -100.195301,19.447003,0
                -100.195168,19.445882,0
                -100.195586,19.446122,0
                -100.195391,19.447147,0
                -100.196319,19.447296,0
                -100.198871,19.452414,0
                -100.202492,19.454933,0
                -100.206088,19.454466,0
                -100.205775,19.457461,0
                -100.206832,19.456645,0
                -100.205732,19.458167,0
                -100.206739,19.457886,0
                -100.207457,19.461129,0
                -100.206438,19.47037,0
                -100.202217,19.47447,0
                -100.201865,19.47551,0
                -100.204137,19.478043,0
                -100.204145,19.479692,0
                -100.203554,19.480848,0
                -100.200871,19.482552,0
                -100.201624,19.487413,0
                -100.20098,19.492792,0
                -100.183257,19.489042,0
                -100.183225,19.488601,0
                -100.179821,19.488315,0
                -100.176715,19.489678,0
                -100.17865,19.490688,0
                -100.177694,19.492625,0
                -100.182187,19.495283,0
                -100.184884,19.498835,0
                -100.193287,19.499203,0
                -100.19249,19.497863,0
                -100.193384,19.497383,0
                -100.195791,19.49924,0
                -100.196514,19.498233,0
                -100.197525,19.499361,0
                -100.20194,19.499528,0
                -100.201767,19.508295,0
                -100.201091,19.510394,0
                -100.201291,19.516823,0
                -100.200574,19.518742,0
                -100.201851,19.522932,0
                -100.200025,19.526544,0
                -100.197576,19.529024,0
                -100.196427,19.531733,0
                -100.210489,19.542053,0
                -100.21252,19.545701,0
                -100.213828,19.550736,0
                -100.214696,19.552765,0
                -100.22515,19.557931,0
                -100.227568,19.557864,0
                -100.227446,19.557572,0
                -100.237476,19.557219,0
                -100.237954,19.566682,0
                -100.239049,19.568042,0
                -100.242303,19.569717,0
                -100.243753,19.573739,0
                -100.244284,19.573681,0
                -100.243315,19.583425,0
                -100.244366,19.586803,0
                -100.244133,19.58852,0
                -100.246944,19.597695,0
                -100.250669,19.613908,0
                -100.252139,19.617498,0
                -100.252253,19.623486,0
                -100.249616,19.627269,0
                -100.251663,19.62728,0
                -100.247519,19.634513,0
                -100.256009,19.646787,0
                -100.256245,19.64939,0
                -100.261747,19.658027,0
                -100.265117,19.661953,0
                -100.27399,19.672251,0
                -100.267517,19.677233,0
                -100.263869,19.69579,0
                -100.258149,19.694879,0
                -100.257728,19.696595,0
                -100.258516,19.700196,0
                -100.259208,19.700442,0
                -100.257186,19.700106,0
                -100.25489,19.702515,0
                -100.253196,19.702607,0
                -100.252576,19.703941,0
                -100.247776,19.704011,0
                -100.247702,19.704901,0
                -100.245148,19.705318,0
                -100.243697,19.704793,0
                -100.240681,19.708627,0
                -100.242977,19.708539,0
                -100.240289,19.712882,0
                -100.238681,19.711385,0
                -100.237107,19.712483,0
                -100.237029,19.713146,0
                -100.237641,19.713214,0
                -100.236987,19.713383,0
                -100.237382,19.714678,0
                -100.236053,19.716147,0
                -100.236901,19.716995,0
                -100.237104,19.718633,0
                -100.232243,19.720504,0
                -100.232665,19.718532,0
                -100.231625,19.717708,0
                -100.229693,19.720063,0
                -100.225803,19.717158,0
                -100.226891,19.715694,0
                -100.226467,19.7156,0
                -100.228784,19.715094,0
                -100.226118,19.71487,0
                -100.227322,19.713342,0
                -100.227949,19.714068,0
                -100.22915,19.713571,0
                -100.229527,19.714078,0
                -100.229458,19.713065,0
                -100.230512,19.712608,0
                -100.230935,19.71178,0
                -100.230488,19.711577,0
                -100.231769,19.71055,0
                -100.230773,19.710591,0
                -100.231182,19.708623,0
                -100.229593,19.708532,0
                -100.230821,19.707265,0
                -100.230411,19.703559,0
                -100.22949,19.702206,0
                -100.220985,19.702802,0
                -100.220911,19.703892,0
                -100.220277,19.703451,0
                -100.218538,19.704013,0
                -100.217594,19.705155,0
                -100.215813,19.703994,0
                -100.215874,19.703386,0
                -100.20415,19.704623,0
                -100.20225,19.702688,0
                -100.197718,19.702101,0
                -100.197072,19.700694,0
                -100.196786,19.702254,0
                -100.192235,19.701638,0
                -100.191727,19.697947,0
                -100.192112,19.697138,0
                -100.190995,19.698651,0
                -100.19025,19.698189,0
                -100.186484,19.709492,0
                -100.186768,19.710682,0
                -100.186006,19.712972,0
                -100.170053,19.712947,0
                -100.169839,19.712321,0
                -100.170845,19.711177,0
                -100.16934,19.707739,0
                -100.155623,19.721955,0
                -100.159408,19.724002,0
                -100.159765,19.726051,0
                -100.158416,19.726263,0
                -100.157488,19.727289,0
                -100.155786,19.725209,0
                -100.154788,19.725475,0
                -100.15311,19.727255,0
                -100.151216,19.727979,0
                -100.150701,19.727138,0
                -100.148186,19.728215,0
                -100.147105,19.730225,0
                -100.146446,19.732359,0
                -100.147127,19.741844,0
                -100.145955,19.744795,0
                -100.144149,19.746982,0
                -100.143455,19.75041,0
                -100.145323,19.757178,0
                -100.144756,19.764314,0
                -100.146385,19.765834,0
                -100.149328,19.766785,0
                -100.148154,19.769261,0
                -100.145916,19.769752,0
                -100.145114,19.771118,0
                -100.146147,19.775098,0
                -100.146054,19.778589,0
                -100.145315,19.779018,0
                -100.144795,19.783029,0
                -100.143876,19.783018,0
                -100.141865,19.787388,0
                -100.146941,19.797965,0
                -100.146481,19.799186,0
                -100.145454,19.800171,0
                -100.14479,19.800046,0
                -100.142885,19.803524,0
                -100.143302,19.806547,0
                -100.146697,19.812848,0
                -100.146314,19.81468,0
                -100.143314,19.818925,0
                -100.144503,19.82075,0
                -100.144339,19.823772,0
                -100.142608,19.828787,0
                -100.141405,19.829712,0
                -100.136089,19.840156,0
                -100.134238,19.845523,0
                -100.132121,19.851431,0
                -100.128051,19.853987,0
                -100.127118,19.853985,0
                -100.12648,19.855843,0
                -100.12541,19.856679,0
                -100.119995,19.856387,0
                -100.117673,19.857134,0
                -100.103214,19.853813,0
                -100.100311,19.855071,0
                -100.094854,19.860427,0
                -100.092449,19.859796,0
                -100.088612,19.860481,0
                -100.079533,19.857811,0
                -100.063356,19.854553,0
                -100.063033,19.855809,0
                -100.064272,19.856193,0
                -100.063184,19.860016,0
                -100.063632,19.860451,0
                -100.063359,19.861899,0
                -100.064192,19.862507,0
                -100.066973,19.863281,0
                -100.067203,19.861736,0
                -100.071045,19.863071,0
                -100.092889,19.873772,0
                -100.10242,19.87971,0
                -100.106918,19.886757,0
                -100.114231,19.901432,0
                -100.117475,19.904015,0
                -100.119169,19.9121,0
                -100.127784,19.914493,0
                -100.130122,19.916193,0
                -100.130865,19.950233,0
                -100.130506,19.972004,0
                -100.131081,19.973075,0
                -100.131394,19.982002,0
                -100.129103,19.985715,0
                -100.12444,19.996846,0
                -100.116024,20.00613,0
                -100.118249,20.00736,0
                -100.12042,20.007835,0
                -100.122002,20.007066,0
                -100.12317,20.007696,0
                -100.124099,20.01099,0
                -100.12524,20.012175,0
                -100.126018,20.011316,0
                -100.129903,20.01059,0
                -100.130633,20.009651,0
                -100.137732,20.010754,0
                -100.140155,20.008099,0
                -100.142768,20.007442,0
                -100.144487,20.005205,0
                -100.150068,20.005384,0
                -100.15377,20.00639,0
                -100.155078,20.007441,0
                -100.155635,20.010768,0
                -100.155079,20.013472,0
                -100.157373,20.016448,0
                -100.157695,20.017915,0
                -100.155877,20.02451,0
                -100.157498,20.028283,0
                -100.156679,20.02886,0
                -100.158657,20.03577,0
                -100.154542,20.035088,0
                -100.155072,20.037818,0
                -100.152453,20.052759,0
                -100.15332,20.053674,0
                -100.149882,20.05522,0
                -100.147159,20.055325,0
                -100.146363,20.052242,0
                -100.143597,20.049208,0
                -100.143521,20.048308,0
                -100.141775,20.047879,0
                -100.140547,20.044162,0
                -100.139351,20.042971,0
                -100.137937,20.044312,0
                -100.138274,20.045171,0
                -100.137747,20.046583,0
                -100.138939,20.048279,0
                -100.143333,20.05079,0
                -100.143293,20.052657,0
                -100.147101,20.05767,0
                -100.148034,20.057053,0
                -100.152156,20.05728,0
                -100.157076,20.059368,0
                -100.158924,20.061598,0
                -100.16128,20.061968,0
                -100.16264,20.063046,0
                -100.162335,20.06427,0
                -100.158859,20.065578,0
                -100.159821,20.066826,0
                -100.162277,20.06709,0
                -100.161612,20.068144,0
                -100.15749,20.069742,0
                -100.15726,20.071105,0
                -100.15834,20.074917,0
                -100.163505,20.076273,0
                -100.164647,20.078367,0
                -100.165842,20.077462,0
                -100.166841,20.074835,0
                -100.169027,20.075339,0
                -100.169809,20.07573,0
                -100.170173,20.077729,0
                -100.171042,20.078439,0
                -100.172717,20.07728,0
                -100.172091,20.074633,0
                -100.172821,20.073324,0
                -100.174349,20.072269,0
                -100.176167,20.072065,0
                -100.176736,20.070909,0
                -100.179293,20.072587,0
                -100.182877,20.07365,0
                -100.183119,20.074128,0
                -100.181078,20.076501,0
                -100.179151,20.080576,0
                -100.179092,20.08244,0
                -100.179826,20.083002,0
                -100.181419,20.082405,0
                -100.183494,20.082739,0
                -100.185001,20.080285,0
                -100.187812,20.079998,0
                -100.188419,20.077537,0
                -100.190857,20.075582,0
                -100.193216,20.07483,0
                -100.197132,20.077023,0
                -100.198878,20.077012,0
                -100.201579,20.075926,0
                -100.202941,20.076649,0
                -100.201548,20.077664,0
                -100.198125,20.114256,0
                -100.197393,20.129888,0
                -100.235604,20.143459,0
                -100.234396,20.144225,0
                -100.233807,20.145545,0
                -100.229394,20.146945,0
                -100.227493,20.149989,0
                -100.223547,20.149999,0
                -100.221923,20.150627,0
                -100.22009,20.152822,0
                -100.213321,20.156834,0
                -100.2131,20.158371,0
                -100.212059,20.159608,0
                -100.209436,20.161311,0
                -100.209567,20.163454,0
                -100.207205,20.163874,0
                -100.20378,20.16702,0
                -100.203331,20.171785,0
                -100.200703,20.173563,0
                -100.197711,20.173707,0
                -100.191864,20.176,0
                -100.191531,20.182037,0
                -100.190438,20.18388,0
                -100.190506,20.188044,0
                -100.188509,20.188719,0
                -100.188413,20.194225,0
                -100.186667,20.194791,0
                -100.185343,20.194273,0
                -100.184193,20.189423,0
                -100.181558,20.203145,0
                -100.181144,20.208801,0
                -100.182919,20.208269,0
                -100.183881,20.209015,0
                -100.184537,20.211649,0
                -100.187473,20.213514,0
                -100.187212,20.214033,0
                -100.196455,20.222277,0
                -100.203683,20.226346,0
                -100.207153,20.229422,0
                -100.207581,20.22888,0
                -100.218216,20.233807,0
                -100.221625,20.234578,0
                -100.2243,20.237877,0
                -100.237747,20.245179,0
                -100.245126,20.250364,0
                -100.253467,20.26093,0
                -100.260457,20.26751,0
                -100.279717,20.272608,0
                -100.297733,20.278546,0
                -100.309576,20.282478,0
                -100.307506,20.285575,0
                -100.345833,20.298,0
                -100.350656,20.288413,0
                -100.345858,20.284443,0
                -100.346677,20.284354,0
                -100.347311,20.28323,0
                -100.347542,20.282399,0
                -100.346567,20.281855,0
                -100.347416,20.280472,0
                -100.344088,20.272944,0
                -100.343265,20.273862,0
                -100.341909,20.273621,0
                -100.339353,20.271438,0
                -100.339108,20.271845,0
                -100.338099,20.26927,0
                -100.334232,20.265374,0
                -100.331068,20.266763,0
                -100.329796,20.265331,0
                -100.329378,20.26305,0
                -100.325763,20.26102,0
                -100.3273,20.257728,0
                -100.323558,20.251934,0
                -100.325914,20.250956,0
                -100.326149,20.249927,0
                -100.331631,20.245237,0
                -100.332811,20.242649,0
                -100.335515,20.241081,0
                -100.341499,20.239113,0
                -100.341849,20.232149,0
                -100.343518,20.228964,0
                -100.346142,20.227704,0
                -100.347468,20.224694,0
                -100.349959,20.224247,0
                -100.350221,20.221412,0
                -100.352717,20.221295,0
                -100.355237,20.219018,0
                -100.355245,20.216215,0
                -100.35388,20.213245,0
                -100.355291,20.21113,0
                -100.354097,20.209859,0
                -100.353392,20.20678,0
                -100.352632,20.206328,0
                -100.35328,20.204481,0
                -100.352386,20.203969,0
                -100.352775,20.201359,0
                -100.352343,20.200461,0
                -100.350237,20.199069,0
                -100.348876,20.200559,0
                -100.34597,20.20098,0
                -100.345421,20.196549,0
                -100.344929,20.195939,0
                -100.342334,20.195489,0
                -100.342025,20.19284,0
                -100.340308,20.189737,0
                -100.355837,20.182386,0
                -100.354034,20.180622,0
                -100.353887,20.179523,0
                -100.354808,20.177687,0
                -100.35886,20.175282,0
                -100.360044,20.173163,0
                -100.361128,20.172561,0
                -100.361241,20.169496,0
                -100.358925,20.167222,0
                -100.35989,20.164333,0
                -100.366515,20.153635,0
                -100.369879,20.146667,0
                -100.370887,20.136185,0
                -100.379692,20.130666,0
                -100.383608,20.129146,0
                -100.391512,20.121033,0
                -100.388462,20.114164,0
                -100.385292,20.104506,0
                -100.393859,20.098967,0
                -100.393797,20.098289,0
                -100.397257,20.096953,0
                -100.394935,20.094179,0
                -100.389751,20.080823,0
                -100.36725,20.067488,0
                -100.358264,20.064916,0
                -100.359768,20.05749,0
                -100.360988,20.055936,0
                -100.360639,20.054277,0
                -100.36137,20.054619,0
                -100.362041,20.053437,0
                -100.360573,20.052132,0
                -100.358706,20.04774,0
                -100.354384,20.027791,0
                -100.35497,20.01012,0
                -100.359274,20.009742,0
                -100.360744,20.020422,0
                -100.360505,20.023961,0
                -100.361943,20.023849,0
                -100.364708,20.019708,0
                -100.367711,20.02095,0
                -100.368013,20.020586,0
                -100.369472,20.021719,0
                -100.370403,20.021266,0
                -100.36996,20.015663,0
                -100.363114,19.989844,0
                -100.370706,19.989134,0
                -100.386829,19.988907,0
                -100.391167,19.988249,0
                -100.405019,19.983832,0
                -100.409779,19.987525,0
                -100.414001,19.985725,0
                -100.420358,19.985613,0
                -100.42478,19.984082,0
                -100.427862,19.985402,0
                -100.431236,19.985175,0
                -100.435916,19.983134,0
                -100.439218,19.982758,0
                -100.440168,19.982844,0
                -100.440528,19.983543,0
                -100.443584,19.982285,0
                -100.444424,19.983271,0
                -100.449672,19.982678,0
                -100.453858,19.985169,0
                -100.462712,19.988497,0
                -100.464545,19.987282,0
                -100.465824,19.987398,0
                -100.46203,19.983486,0
                -100.461584,19.980195,0
                -100.462456,19.979268,0
                -100.466016,19.978906,0
                -100.469419,19.980247,0
                -100.47017,19.979984,0
                -100.470646,19.978738,0
                -100.469982,19.975562,0
                -100.473597,19.972334,0
                -100.480111,19.969016,0
                -100.483266,19.968501,0
                -100.483794,19.967318,0
                -100.486558,19.96731,0
                -100.488996,19.966208,0
                -100.498184,19.958043,0
                -100.505583,19.957943,0
                -100.508958,19.959416,0
                -100.510849,19.959049,0
                -100.511687,19.958216,0
                -100.511769,19.957195,0
                -100.510407,19.955539,0
                -100.510313,19.953361,0
                -100.511838,19.942221,0
                -100.515704,19.940454,0
                -100.516005,19.936606,0
                -100.51746,19.936576,0
                -100.521713,19.927728,0
                -100.521849,19.925875,0
                -100.52143,19.925216,0
                -100.520751,19.925492,0
                -100.520068,19.923448,0
                -100.519946,19.91882,0
                -100.525412,19.919636,0
                -100.526291,19.92056,0
                -100.529296,19.920221,0
                -100.530784,19.921283,0
                -100.536009,19.923007,0
                -100.534083,19.932384,0
                -100.53473,19.936286,0
                -100.531824,19.937536,0
                -100.530021,19.93926,0
                -100.529326,19.94098,0
                -100.528843,19.948144,0
                -100.529279,19.951721,0
                -100.526779,19.96576,0
                -100.527404,19.972035,0
                -100.528201,19.974257,0
                -100.530585,19.975197,0
                -100.531823,19.976394,0
                -100.53568,19.97436,0
                -100.539607,19.974207,0
                -100.540048,19.975209,0
                -100.540631,19.974929,0
                -100.542428,19.972831,0
                -100.535041,19.971974,0
                -100.533675,19.970687,0
                -100.533934,19.969215,0
                -100.541249,19.964585,0
                -100.543473,19.961254,0
                -100.546962,19.960583,0
                -100.548386,19.959251,0
                -100.550263,19.959077,0
                -100.550717,19.957966,0
                -100.555662,19.957816,0
                -100.559312,19.959446,0
                -100.560112,19.959104,0
                -100.563694,19.965037,0
                -100.565135,19.965226,0
                -100.565969,19.966133,0
                -100.567259,19.96555,0
                -100.568098,19.965928,0
                -100.568379,19.965223,0
                -100.569446,19.965537,0
                -100.571087,19.964305,0
                -100.571629,19.964737,0
                -100.575796,19.961929,0
                -100.577337,19.958998,0
                -100.579525,19.957642,0
                -100.581161,19.9574,0
                -100.584139,19.959024,0
                -100.584897,19.957779,0
                -100.587045,19.958245,0
                -100.589468,19.956681,0
                -100.589616,19.957117,0
                -100.590714,19.956839,0
                -100.593076,19.95828,0
                -100.592947,19.962688,0
                -100.593856,19.963931,0
                -100.592674,19.966467,0
                -100.587594,19.97139,0
                -100.58062,19.975041,0
                -100.575469,19.975692,0
                -100.571153,19.975374,0
                -100.566696,19.97413,0
                -100.565699,19.974531,0
                -100.563012,19.977627,0
                -100.562294,19.980321,0
                -100.55859,19.982875,0
                -100.559529,19.983218,0
                -100.558793,19.983671,0
                -100.558978,19.984569,0
                -100.556782,19.985298,0
                -100.556743,19.987261,0
                -100.557895,19.991716,0
                -100.563197,19.991395,0
                -100.57671,19.993061,0
                -100.582956,19.991952,0
                -100.595603,19.991662,0
                -100.594335,19.989817,0
                -100.598523,19.988301,0
                -100.59925,19.986616,0
                -100.601893,19.985893,0
                -100.606124,19.982179,0
                -100.606189,19.981028,0
                -100.611688,19.971942,0
                -100.611864,19.970237,0
                -100.616034,19.959634,0
                -100.617573,19.957693,0
                -100.619687,19.957164,0
                -100.635413,19.958213,0
                -100.636988,19.957751,0
                -100.639096,19.958191,0
                -100.641103,19.957238,0
                -100.641853,19.957776,0
                -100.644203,19.957321,0
                -100.648869,19.958001,0
                -100.653801,19.959698,0
                -100.660381,19.964548,0
                -100.671818,19.958524,0
                -100.676516,19.952979,0
                -100.680648,19.950463,0
                -100.69496,19.947671,0
                -100.698008,19.945237,0
                -100.702663,19.943921,0
                -100.704294,19.942767,0
                -100.710067,19.942867,0
                -100.718817,19.940519,0
                -100.732807,19.930619,0
                -100.738748,19.923941,0
                -100.740187,19.920944,0
                -100.747149,19.91307,0
                -100.748753,19.91275,0
                -100.752596,19.916905,0
                -100.753504,19.917124,0
                -100.765169,19.915838,0
                -100.766966,19.91723,0
                -100.771997,19.917925,0
                -100.77421,19.915401,0
                -100.776851,19.914584,0
                -100.779529,19.915784,0
                -100.779348,19.916784,0
                -100.781131,19.9189,0
                -100.78087,19.92399,0
                -100.782932,19.929917,0
                -100.783685,19.936079,0
                -100.790668,19.945432,0
                -100.792064,19.955575,0
                -100.798737,19.957142,0
                -100.80094,19.958467,0
                -100.802209,19.95834,0
                -100.802742,19.959064,0
                -100.809212,19.965811,0
                -100.812385,19.971388,0
                -100.818941,19.974057,0
                -100.824301,19.978329,0
                -100.824969,19.977546,0
                -100.826674,19.977211,0
                -100.829957,19.97542,0
                -100.83253,19.973355,0
                -100.832869,19.972395,0
                -100.831284,19.962686,0
                -100.82997,19.959723,0
                -100.830227,19.954134,0
                -100.833975,19.947164,0
                -100.835762,19.934596,0
                -100.844712,19.934551,0
                -100.849418,19.935634,0
                -100.853666,19.934458,0
                -100.855052,19.935582,0
                -100.854708,19.939346,0
                -100.853736,19.939425,0
                -100.853013,19.941651,0
                -100.856232,19.942312,0
                -100.857231,19.943913,0
                -100.857213,19.946616,0
                -100.860286,19.948943,0
                -100.86389,19.948728,0
                -100.864201,19.946466,0
                -100.872704,19.944047,0
                -100.882613,19.943926,0
                -100.885569,19.946015,0
                -100.886174,19.947765,0
                -100.892444,19.950959,0
                -100.901586,19.959506,0
                -100.906011,19.961583,0
                -100.908911,19.962237,0
                -100.911098,19.961714,0
                -100.915923,19.957925,0
                -100.917691,19.958304,0
                -100.918393,19.957401,0
                -100.923652,19.958245,0
                -100.925113,19.957103,0
                -100.929791,19.956432,0
                -100.932582,19.953491,0
                -100.934962,19.955311,0
                -100.935628,19.957192,0
                -100.947539,19.962545,0
                -100.947043,19.950266,0
                -100.947879,19.933563,0
                -100.954855,19.930807,0
                -100.958732,19.930789,0
                -100.96441,19.928275,0
                -100.965711,19.928927,0
                -100.970547,19.929238,0
                -100.97184,19.929977,0
                -100.977364,19.936851,0
                -100.979368,19.952912,0
                -100.981901,19.953017,0
                -100.980791,19.955221,0
                -100.981985,19.956058,0
                -100.983786,19.956716,0
                -100.988772,19.956139,0
                -100.994268,19.95439,0
                -100.998071,19.954589,0
                -100.9997,19.952944,0
                -101.002276,19.952363,0
              </coordinates>
            </LinearRing>
          </outerBoundaryIs>
        </Polygon>
      </Placemark>
      <Placemark>
        <name>Equipo 3</name>
        <description><![CDATA[description: <br>fid: 116<br>tessellate: <br>extrude: <br>visibility: <br>CVE_MUN: ]]></description>
        <styleUrl>#poly-9C27B0-1000-161</styleUrl>
        <ExtendedData>
          <Data name="description">
            <value/>
          </Data>
          <Data name="fid">
            <value>116</value>
          </Data>
          <Data name="tessellate">
            <value/>
          </Data>
          <Data name="extrude">
            <value/>
          </Data>
          <Data name="visibility">
            <value/>
          </Data>
          <Data name="CVE_MUN">
            <value/>
          </Data>
        </ExtendedData>
        <Polygon>
          <outerBoundaryIs>
            <LinearRing>
              <tessellate>1</tessellate>
              <coordinates>
                -101.3251446,19.5448454,0
                -101.3260366,19.5434834,0
                -101.3362737,19.5441904,0
                -101.3476138,19.5341044,0
                -101.3483948,19.5349304,0
                -101.3494898,19.5338934,0
                -101.3501378,19.5268714,0
                -101.3527018,19.5234224,0
                -101.3574969,19.5198294,0
                -101.3604259,19.5193044,0
                -101.3607149,19.5154394,0
                -101.3610969,19.5173044,0
                -101.3627439,19.5172084,0
                -101.3649499,19.5183324,0
                -101.3653939,19.5162654,0
                -101.369892,19.5119314,0
                -101.372068,19.5078254,0
                -101.372009,19.5018974,0
                -101.371072,19.5019654,0
                -101.37429,19.5014654,0
                -101.374978,19.5005614,0
                -101.37786,19.4997194,0
                -101.3846181,19.5013064,0
                -101.3879461,19.4985114,0
                -101.3867931,19.4935064,0
                -101.3833611,19.4847624,0
                -101.3828021,19.4857514,0
                -101.3810131,19.4855464,0
                -101.37808,19.4870204,0
                -101.378147,19.4880704,0
                -101.37708,19.4893754,0
                -101.375379,19.4886884,0
                -101.376034,19.4866784,0
                -101.373094,19.4857474,0
                -101.373989,19.4818824,0
                -101.376425,19.4818924,0
                -101.378831,19.4776754,0
                -101.3803901,19.4773114,0
                -101.3840071,19.4741744,0
                -101.3852791,19.4740974,0
                -101.3890101,19.4717964,0
                -101.3912341,19.4675004,0
                -101.3923091,19.4670394,0
                -101.3930172,19.4644734,0
                -101.3946552,19.4630184,0
                -101.3944462,19.4624214,0
                -101.3930272,19.4621514,0
                -101.3936502,19.4614164,0
                -101.3950182,19.4614054,0
                -101.3955992,19.4602104,0
                -101.3976132,19.4595584,0
                -101.3976642,19.4600464,0
                -101.3990922,19.4599734,0
                -101.4010972,19.4629924,0
                -101.4022572,19.4627764,0
                -101.4073013,19.4652184,0
                -101.4080243,19.4664784,0
                -101.4092543,19.4642334,0
                -101.4097833,19.4660844,0
                -101.4123273,19.4650144,0
                -101.4118623,19.4677194,0
                -101.4126993,19.4677974,0
                -101.4137273,19.4691624,0
                -101.4148413,19.4686304,0
                -101.4141993,19.4652114,0
                -101.4160863,19.4637234,0
                -101.4171253,19.4578594,0
                -101.4200044,19.4582584,0
                -101.4227144,19.4570334,0
                -101.4241314,19.4572944,0
                -101.4263414,19.4560474,0
                -101.4263144,19.4551224,0
                -101.4279374,19.4526504,0
                -101.4281914,19.4499124,0
                -101.4271654,19.4489744,0
                -101.4261694,19.4454954,0
                -101.4309795,19.4331184,0
                -101.4318645,19.4327304,0
                -101.4356225,19.4261344,0
                -101.4397885,19.4186684,0
                -101.4412625,19.4147644,0
                -101.4367635,19.4155174,0
                -101.4414235,19.4145964,0
                -101.4541366,19.4149194,0
                -101.4577257,19.4060794,0
                -101.4586927,19.4073364,0
                -101.4657297,19.4083694,0
                -101.4733868,19.4039244,0
                -101.4771538,19.4053564,0
                -101.4795758,19.4076514,0
                -101.4818309,19.4078034,0
                -101.4881759,19.4035164,0
                -101.4894259,19.4018834,0
                -101.4908439,19.4018594,0
                -101.493813,19.4088344,0
                -101.498298,19.4079594,0
                -101.501242,19.4093154,0
                -101.5058461,19.4099664,0
                -101.5091661,19.4114744,0
                -101.5160721,19.4094274,0
                -101.5125131,19.4105424,0
                -101.5162431,19.4155274,0
                -101.5197212,19.4257634,0
                -101.5308943,19.4129644,0
                -101.5474294,19.4257564,0
                -101.5513144,19.4255724,0
                -101.5529034,19.4264434,0
                -101.5605675,19.4275864,0
                -101.5610525,19.4266644,0
                -101.5619955,19.4269304,0
                -101.5650855,19.4299904,0
                -101.5646375,19.4305394,0
                -101.5671095,19.4317544,0
                -101.5678005,19.4327464,0
                -101.5660715,19.4330554,0
                -101.5654795,19.4337154,0
                -101.5660535,19.4339634,0
                -101.5678795,19.4331354,0
                -101.5690196,19.4338904,0
                -101.5778636,19.4324704,0
                -101.5825527,19.4331364,0
                -101.5930338,19.4329684,0
                -101.5947828,19.4310384,0
                -101.5968758,19.4319074,0
                -101.6036178,19.4356244,0
                -101.6029218,19.4383654,0
                -101.6053949,19.4453874,0
                -101.6099579,19.4518444,0
                -101.6365811,19.4514474,0
                -101.6372671,19.4485714,0
                -101.6547852,19.4449454,0
                -101.6604683,19.4432144,0
                -101.6697774,19.4455964,0
                -101.6740324,19.4469644,0
                -101.6768844,19.4493254,0
                -101.6805785,19.4546424,0
                -101.6797534,19.4570544,0
                -101.7050887,19.4574124,0
                -101.7166897,19.4593584,0
                -101.7272078,19.4649854,0
                -101.7279288,19.4658844,0
                -101.7309969,19.4658124,0
                -101.7346259,19.4673064,0
                -101.7362529,19.4693914,0
                -101.7414979,19.4707074,0
                -101.74326,19.4726964,0
                -101.744434,19.4772614,0
                -101.751791,19.4775974,0
                -101.750433,19.4823294,0
                -101.753753,19.4830764,0
                -101.7556331,19.4846504,0
                -101.7583401,19.4856954,0
                -101.7606671,19.4852554,0
                -101.7618611,19.4858034,0
                -101.7662191,19.4856654,0
                -101.7683242,19.4845454,0
                -101.7687412,19.4856064,0
                -101.7705222,19.4862754,0
                -101.7711432,19.4852934,0
                -101.7751172,19.4844924,0
                -101.7761852,19.4873454,0
                -101.7759442,19.4911904,0
                -101.7774822,19.4922644,0
                -101.7778002,19.4933014,0
                -101.7759682,19.4967724,0
                -101.7760982,19.4978204,0
                -101.7793113,19.4977164,0
                -101.7789703,19.4973664,0
                -101.7816363,19.4922994,0
                -101.7836113,19.4909724,0
                -101.7877433,19.4906144,0
                -101.7917084,19.4915174,0
                -101.7958754,19.4913374,0
                -101.8051305,19.4899234,0
                -101.8054505,19.4862184,0
                -101.8009474,19.4668104,0
                -101.8289126,19.4435634,0
                -101.8288846,19.4428494,0
                -101.8305627,19.4415474,0
                -101.8315087,19.4416744,0
                -101.8316197,19.4409384,0
                -101.8307587,19.4410254,0
                -101.8308127,19.4399084,0
                -101.8323737,19.4402764,0
                -101.8356887,19.4295234,0
                -101.8290116,19.4182334,0
                -101.8089095,19.4038534,0
                -101.8111255,19.3800484,0
                -101.8106155,19.3796534,0
                -101.8109475,19.3790484,0
                -101.8092385,19.3774884,0
                -101.8083545,19.3742464,0
                -101.8071434,19.3733234,0
                -101.8081225,19.3708764,0
                -101.8080845,19.3708574,0
                -101.8144545,19.3710964,0
                -101.8195825,19.3694404,0
                -101.8205776,19.3683484,0
                -101.8250856,19.3684884,0
                -101.8279876,19.3668664,0
                -101.8309726,19.3632134,0
                -101.8325096,19.3634624,0
                -101.8337927,19.3624374,0
                -101.8342177,19.3626654,0
                -101.8338887,19.3640934,0
                -101.8357807,19.3635194,0
                -101.8359647,19.3647954,0
                -101.8375377,19.3658974,0
                -101.8387657,19.3660524,0
                -101.8408747,19.3646094,0
                -101.8434057,19.3645124,0
                -101.8413857,19.3669894,0
                -101.8399257,19.3678884,0
                -101.8395867,19.3667594,0
                -101.8379187,19.3683284,0
                -101.8385567,19.3698054,0
                -101.8376227,19.3701314,0
                -101.8411587,19.3725154,0
                -101.8385077,19.3749114,0
                -101.8372657,19.3790584,0
                -101.8382227,19.3876594,0
                -101.8510268,19.3875724,0
                -101.8519168,19.3854794,0
                -101.8534348,19.3866224,0
                -101.8540888,19.3883744,0
                -101.8551568,19.3884454,0
                -101.8563298,19.3888534,0
                -101.8581809,19.3880714,0
                -101.8586279,19.3856034,0
                -101.8614749,19.3813994,0
                -101.8825761,19.3834274,0
                -101.8831681,19.3817694,0
                -101.8887971,19.3771804,0
                -101.8943611,19.3757664,0
                -101.8990752,19.3762494,0
                -101.9015482,19.3758784,0
                -101.9029682,19.3747884,0
                -101.9058302,19.3747174,0
                -101.9131313,19.3709143,0
                -101.9153663,19.3684743,0
                -101.9182663,19.3683933,0
                -101.9199093,19.3676733,0
                -101.9221004,19.3693343,0
                -101.9250394,19.3688283,0
                -101.9270034,19.3672993,0
                -101.9277064,19.3646613,0
                -101.9285874,19.3641763,0
                -101.9287574,19.3705173,0
                -101.9323414,19.3724443,0
                -101.9333955,19.3742443,0
                -101.9336505,19.3776963,0
                -101.9375735,19.3804723,0
                -101.9389325,19.3797093,0
                -101.9406435,19.3802993,0
                -101.9415135,19.3791483,0
                -101.9482656,19.3774943,0
                -101.9483026,19.3745613,0
                -101.9470296,19.3721693,0
                -101.9482326,19.3715723,0
                -101.9494736,19.3721293,0
                -101.9516176,19.3715313,0
                -101.9525176,19.3710103,0
                -101.9525256,19.3696803,0
                -101.9538926,19.3707733,0
                -101.9535316,19.3729653,0
                -101.9548126,19.3727763,0
                -101.9554016,19.3733233,0
                -101.9574716,19.3726793,0
                -101.9624857,19.3727343,0
                -101.9643317,19.3712123,0
                -101.9652227,19.3711843,0
                -101.9662997,19.3722563,0
                -101.9707748,19.3717583,0
                -101.9686567,19.3639583,0
                -101.9674767,19.3622293,0
                -101.9806888,19.3608353,0
                -101.9916019,19.3545873,0
                -101.9923909,19.3513853,0
                -101.9945319,19.3479613,0
                -101.9938569,19.3470213,0
                -101.9965139,19.3442723,0
                -101.9956369,19.3427273,0
                -101.9955309,19.3406463,0
                -101.9968209,19.3346843,0
                -101.9959689,19.3329023,0
                -101.9947039,19.3327223,0
                -101.9951129,19.3312383,0
                -101.9937329,19.3270243,0
                -101.9923769,19.3266943,0
                -101.9909899,19.3279543,0
                -101.9905649,19.3260423,0
                -101.9898039,19.3262253,0
                -101.9880019,19.3242683,0
                -101.9867839,19.3238803,0
                -101.9859219,19.3245403,0
                -101.9838678,19.3241393,0
                -101.9813658,19.3243903,0
                -101.9791868,19.3254133,0
                -101.9774768,19.3251973,0
                -101.9742268,19.3223653,0
                -101.9727258,19.3183353,0
                -101.9707627,19.3158863,0
                -101.9684537,19.3111193,0
                -101.9639827,19.3062023,0
                -101.9632347,19.3036303,0
                -101.9641307,19.3012243,0
                -101.9617637,19.2943873,0
                -101.9568886,19.2903553,0
                -101.9563886,19.2887383,0
                -101.9538696,19.2868283,0
                -101.9547536,19.2858783,0
                -101.9546446,19.2839093,0
                -101.9538096,19.2826863,0
                -101.9533056,19.2828313,0
                -101.9508916,19.2799523,0
                -101.9486415,19.2786973,0
                -101.9493866,19.2772953,0
                -101.9482795,19.2756613,0
                -101.9486395,19.2748243,0
                -101.9499666,19.2742613,0
                -101.9494996,19.2732223,0
                -101.9498566,19.2706073,0
                -101.9465405,19.2688733,0
                -101.9454835,19.2667503,0
                -101.9431245,19.2668533,0
                -101.9423155,19.2660593,0
                -101.9459345,19.2628433,0
                -101.9492335,19.2642883,0
                -101.9503436,19.2634853,0
                -101.9499026,19.2614793,0
                -101.9479935,19.2602823,0
                -101.9502506,19.2616493,0
                -101.9514806,19.2615873,0
                -101.9613846,19.2571023,0
                -101.9757868,19.2532593,0
                -101.9982939,19.2541793,0
                -102.0150481,19.2653263,0
                -102.0319812,19.2675603,0
                -102.0348412,19.2702553,0
                -102.0363542,19.2737793,0
                -102.0695975,19.2792083,0
                -102.0818236,19.2738493,0
                -102.0796596,19.2698043,0
                -102.0799196,19.2684323,0
                -102.0772266,19.2663933,0
                -102.0774436,19.2618433,0
                -102.0765886,19.2602073,0
                -102.0729535,19.2567343,0
                -102.0737575,19.2535623,0
                -102.0727805,19.2491613,0
                -102.0669665,19.2461343,0
                -102.0677585,19.2431573,0
                -102.0624094,19.2405813,0
                -102.0615954,19.2394863,0
                -102.0605674,19.2372593,0
                -102.0634604,19.2341903,0
                -102.0621064,19.2316153,0
                -102.0592584,19.2335083,0
                -102.0562564,19.2253513,0
                -102.0582504,19.2255543,0
                -102.0614594,19.2245523,0
                -102.0632104,19.2273463,0
                -102.0612794,19.2286723,0
                -102.0612684,19.2293103,0
                -102.0620164,19.2289853,0
                -102.0633314,19.2298663,0
                -102.0667975,19.2304663,0
                -102.0675515,19.2319903,0
                -102.0707655,19.2308253,0
                -102.0726905,19.2348503,0
                -102.0750155,19.2362743,0
                -102.0754035,19.2381083,0
                -102.0783186,19.2410463,0
                -102.0817666,19.2423793,0
                -102.0841626,19.2415243,0
                -102.0848486,19.2361713,0
                -102.0856916,19.2340913,0
                -102.0850626,19.2322483,0
                -102.0824286,19.2295693,0
                -102.0869596,19.2286763,0
                -102.0861186,19.2272843,0
                -102.0863866,19.2257983,0
                -102.0839586,19.2248363,0
                -102.0886956,19.2112683,0
                -102.0881446,19.2098003,0
                -102.0895976,19.2054523,0
                -102.0892656,19.2020683,0
                -102.0902596,19.1981403,0
                -102.0891466,19.1941463,0
                -102.0877436,19.1923583,0
                -102.0882136,19.1900923,0
                -102.0904446,19.1862643,0
                -102.0883376,19.1851183,0
                -102.0909836,19.1864673,0
                -102.0932427,19.1865283,0
                -102.0963337,19.1887713,0
                -102.0977537,19.1890073,0
                -102.0968287,19.1928183,0
                -102.0992847,19.1940873,0
                -102.1019367,19.1938883,0
                -102.1031867,19.1982243,0
                -102.1046868,19.1970523,0
                -102.1052098,19.1978853,0
                -102.1076748,19.1976463,0
                -102.1132578,19.2006643,0
                -102.1179819,19.1998623,0
                -102.1206149,19.2013623,0
                -102.1239299,19.2011173,0
                -102.1259689,19.2055233,0
                -102.1269049,19.2064573,0
                -102.1280799,19.2062703,0
                -102.130485,19.2078493,0
                -102.130432,19.2096493,0
                -102.133077,19.2110703,0
                -102.134059,19.2135313,0
                -102.13648,19.2140133,0
                -102.1436181,19.2181553,0
                -102.1448441,19.2200413,0
                -102.1443971,19.2219163,0
                -102.1450291,19.2226503,0
                -102.1453551,19.2267253,0
                -102.1469231,19.2305843,0
                -102.1471691,19.2337213,0
                -102.1493041,19.2373493,0
                -102.1502991,19.2387413,0
                -102.1550392,19.2382203,0
                -102.1562872,19.2393243,0
                -102.1549952,19.2434903,0
                -102.1560002,19.2453883,0
                -102.1562332,19.2476213,0
                -102.1579532,19.2486113,0
                -102.1602802,19.2512993,0
                -102.1606262,19.2525073,0
                -102.1596032,19.2531643,0
                -102.1589992,19.2547383,0
                -102.1598512,19.2560343,0
                -102.1638832,19.2553103,0
                -102.1667963,19.2645163,0
                -102.1716793,19.2655763,0
                -102.1763103,19.2687873,0
                -102.1754413,19.2691203,0
                -102.1762654,19.2710253,0
                -102.1761554,19.2767813,0
                -102.1752973,19.2790573,0
                -102.1755243,19.2815913,0
                -102.1814454,19.2815443,0
                -102.1821784,19.2825143,0
                -102.1833534,19.2820603,0
                -102.1862104,19.2795623,0
                -102.1873564,19.2769553,0
                -102.1887935,19.2768813,0
                -102.1914995,19.2743543,0
                -102.1923745,19.2743763,0
                -102.1938605,19.2730953,0
                -102.1938645,19.2684133,0
                -102.1928825,19.2684593,0
                -102.1930035,19.2661673,0
                -102.1942565,19.2643493,0
                -102.1941705,19.2630433,0
                -102.1933125,19.2626633,0
                -102.1942235,19.2591943,0
                -102.1939425,19.2544543,0
                -102.1941315,19.2536593,0
                -102.1959615,19.2525213,0
                -102.1955865,19.2465843,0
                -102.1967315,19.2443183,0
                -102.1942275,19.2413033,0
                -102.1950605,19.2403103,0
                -102.1938555,19.2383763,0
                -102.1941185,19.2361623,0
                -102.1961955,19.2355103,0
                -102.1968075,19.2318753,0
                -102.1997295,19.2308703,0
                -102.2011645,19.2313583,0
                -102.2028615,19.2307283,0
                -102.2037275,19.2264063,0
                -102.2030585,19.2239673,0
                -102.2041316,19.2210733,0
                -102.2074216,19.2190573,0
                -102.2086946,19.2190863,0
                -102.2094966,19.2174793,0
                -102.2114786,19.2168453,0
                -102.2109856,19.2160753,0
                -102.2128416,19.2164073,0
                -102.2147536,19.2138263,0
                -102.2138206,19.2117653,0
                -102.2115296,19.2110393,0
                -102.2112466,19.2089183,0
                -102.2120736,19.2083753,0
                -102.2136916,19.2105033,0
                -102.2186767,19.2104433,0
                -102.2179307,19.2063313,0
                -102.2238987,19.1995712,0
                -102.2227237,19.1954232,0
                -102.2225577,19.1919242,0
                -102.2208277,19.1892143,0
                -102.2191427,19.1883623,0
                -102.2188707,19.1867313,0
                -102.2171966,19.1853403,0
                -102.2181956,19.1797033,0
                -102.2191187,19.1791773,0
                -102.2233607,19.1799682,0
                -102.2260767,19.1773842,0
                -102.2282737,19.1762442,0
                -102.2262417,19.1712612,0
                -102.2274307,19.1701202,0
                -102.2281517,19.1657772,0
                -102.2305667,19.1634902,0
                -102.2309247,19.1617972,0
                -102.2318677,19.1616022,0
                -102.2318247,19.1567912,0
                -102.2345108,19.1547572,0
                -102.2372498,19.1514932,0
                -102.2370268,19.1487632,0
                -102.2375768,19.1478832,0
                -102.2371258,19.1477452,0
                -102.2383158,19.1455582,0
                -102.2380108,19.1429852,0
                -102.2398548,19.1403042,0
                -102.2404718,19.1370362,0
                -102.2420308,19.1347772,0
                -102.2432848,19.1310422,0
                -102.2499489,19.1327572,0
                -102.2520449,19.1305002,0
                -102.2544189,19.1295912,0
                -102.2543029,19.1279032,0
                -102.2585859,19.1279252,0
                -102.2565839,19.1211752,0
                -102.2553519,19.1206002,0
                -102.2543029,19.1184652,0
                -102.2523509,19.1179032,0
                -102.2514059,19.1163872,0
                -102.2487619,19.1177572,0
                -102.2554749,19.1071642,0
                -102.2581549,19.1087572,0
                -102.2604809,19.1067492,0
                -102.2609409,19.1050372,0
                -102.263781,19.1037882,0
                -102.266881,19.0991882,0
                -102.267216,19.0982822,0
                -102.266211,19.0977952,0
                -102.266789,19.0954942,0
                -102.268193,19.0935472,0
                -102.268087,19.0919672,0
                -102.271169,19.0856732,0
                -102.269914,19.0852882,0
                -102.270444,19.0844452,0
                -102.269957,19.0842722,0
                -102.273759,19.0786652,0
                -102.273366,19.0774112,0
                -102.2741,19.0772832,0
                -102.2762641,19.0742252,0
                -102.2759811,19.0721262,0
                -102.2765351,19.0716832,0
                -102.2762191,19.0699562,0
                -102.2768891,19.0682262,0
                -102.275881,19.0633702,0
                -102.2776971,19.0630532,0
                -102.2807231,19.0606232,0
                -102.2844381,19.0596592,0
                -102.2878901,19.0564622,0
                -102.2909192,19.0563392,0
                -102.2906492,19.0545622,0
                -102.2921852,19.0529412,0
                -102.2922442,19.0517952,0
                -102.2908972,19.0455362,0
                -102.2832321,19.0430132,0
                -102.2830371,19.0435842,0
                -102.2781701,19.0416762,0
                -102.2789571,19.0395842,0
                -102.2836461,19.0414612,0
                -102.2838571,19.0410782,0
                -102.2844601,19.0392872,0
                -102.2798371,19.0373122,0
                -102.2852701,19.0268972,0
                -102.2868811,19.0277742,0
                -102.2872981,19.0269702,0
                -102.2858311,19.0259292,0
                -102.2867131,19.0243242,0
                -102.2849691,19.0232892,0
                -102.2885751,19.0173092,0
                -102.2883101,19.0168932,0
                -102.2899181,19.0155372,0
                -102.2903451,19.0116842,0
                -102.2960282,19.0059492,0
                -102.2965402,19.0039402,0
                -102.2978032,19.0025062,0
                -102.2976742,19.0014262,0
                -102.2999102,19.0010642,0
                -102.3003322,18.9989452,0
                -102.3025312,18.9965932,0
                -102.3049602,18.9960112,0
                -102.3075313,18.9940382,0
                -102.3081713,18.9862212,0
                -102.3105733,18.9864842,0
                -102.3122773,18.9842642,0
                -102.3155663,18.9837012,0
                -102.3171503,18.9825122,0
                -102.3176363,18.9811832,0
                -102.3205054,18.9802592,0
                -102.3206214,18.9790222,0
                -102.3195533,18.9774352,0
                -102.3228634,18.9756812,0
                -102.3232524,18.9737712,0
                -102.3246594,18.9739492,0
                -102.3259634,18.9704482,0
                -102.3288404,18.9713822,0
                -102.3286904,18.9703462,0
                -102.3273104,18.9703952,0
                -102.3254364,18.9685172,0
                -102.3265454,18.9659092,0
                -102.3361915,18.9630732,0
                -102.3318484,18.9619542,0
                -102.3280654,18.9628922,0
                -102.3244864,18.9616322,0
                -102.3268854,18.9574802,0
                -102.3243904,18.9561892,0
                -102.3258424,18.9526572,0
                -102.3247834,18.9480762,0
                -102.3272554,18.9431222,0
                -102.3270534,18.9396882,0
                -102.3280734,18.9356342,0
                -102.3272464,18.9331192,0
                -102.3313374,18.9292062,0
                -102.3360995,18.9285772,0
                -102.3408955,18.9316472,0
                -102.3440785,18.9354742,0
                -102.3420245,18.9295842,0
                -102.3418095,18.9272312,0
                -102.3426355,18.9241362,0
                -102.3456565,18.9197202,0
                -102.3443935,18.9156342,0
                -102.3430455,18.9137992,0
                -102.3303934,18.9123032,0
                -102.3278404,18.9111462,0
                -102.3294364,18.9083822,0
                -102.3298134,18.9034462,0
                -102.3284824,18.9014922,0
                -102.3234443,18.8977452,0
                -102.3133533,18.8972992,0
                -102.3026182,18.8997612,0
                -102.3016302,18.8990022,0
                -102.3009532,18.8953352,0
                -102.2990481,18.8907452,0
                -102.2963861,18.8897552,0
                -102.2911971,18.8907782,0
                -102.286232,18.8953592,0
                -102.27867,18.8980152,0
                -102.274235,18.8950282,0
                -102.2731499,18.8918572,0
                -102.2720009,18.8906492,0
                -102.2697479,18.8902572,0
                -102.2635279,18.8908352,0
                -102.2621159,18.8902932,0
                -102.2609819,18.8887392,0
                -102.2595768,18.8846132,0
                -102.2558158,18.8824152,0
                -102.2515928,18.8819152,0
                -102.2495738,18.8834892,0
                -102.2444957,18.8898582,0
                -102.2408557,18.8995152,0
                -102.2366707,18.9009472,0
                -102.2356587,18.9003532,0
                -102.2343346,18.8979502,0
                -102.2339416,18.8915092,0
                -102.2260156,18.8870522,0
                -102.2139735,18.8843653,0
                -102.2053064,18.8862743,0
                -102.1996534,18.8833203,0
                -102.1976994,18.8804323,0
                -102.1965223,18.8755313,0
                -102.1981404,18.8712843,0
                -102.2010674,18.8688913,0
                -102.2013684,18.8665013,0
                -102.1989164,18.8648563,0
                -102.1970133,18.8643053,0
                -102.1979644,18.8626623,0
                -102.1973813,18.8609623,0
                -102.2074704,18.8576743,0
                -102.2155475,18.8402013,0
                -102.2277346,18.8256362,0
                -102.2239405,18.8229362,0
                -102.2209365,18.8195203,0
                -102.2195595,18.8147303,0
                -102.2174495,18.8119423,0
                -102.2183315,18.8081313,0
                -102.2178065,18.8054433,0
                -102.2192605,18.8044083,0
                -102.2198585,18.8002633,0
                -102.2217515,18.7978762,0
                -102.2200035,18.7967703,0
                -102.2159645,18.7962033,0
                -102.2170695,18.7951083,0
                -102.2174805,18.7933703,0
                -102.2166275,18.7922613,0
                -102.2160225,18.7927063,0
                -102.2145094,18.7913883,0
                -102.2145854,18.7899953,0
                -102.2125314,18.7855103,0
                -102.2156245,18.7804913,0
                -102.2164395,18.7803923,0
                -102.2155825,18.7783783,0
                -102.2221935,18.7741922,0
                -102.2212095,18.7717793,0
                -102.2245695,18.7681692,0
                -102.2227205,18.7673782,0
                -102.2223505,18.7666022,0
                -102.2218085,18.7669552,0
                -102.2207615,18.7664143,0
                -102.2190775,18.7646673,0
                -102.2185095,18.7622503,0
                -102.2196285,18.7614793,0
                -102.2200335,18.7596863,0
                -102.2189945,18.7566133,0
                -102.2203335,18.7534063,0
                -102.2179815,18.7480643,0
                -102.2127624,18.7470463,0
                -102.2106174,18.7442413,0
                -102.2049073,18.7175423,0
                -102.2054723,18.7165493,0
                -102.2006143,18.7116183,0
                -102.1912862,18.7093023,0
                -102.1888252,18.7039393,0
                -102.1878772,18.6969873,0
                -102.1864732,18.6949573,0
                -102.1840202,18.6939503,0
                -102.1849222,18.6874063,0
                -102.1816011,18.6800093,0
                -102.1780061,18.6837213,0
                -102.1744181,18.6842263,0
                -102.1714911,18.6837373,0
                -102.1701871,18.6843213,0
                -102.165572,18.6840633,0
                -102.162833,18.6851293,0
                -102.162893,18.6865713,0
                -102.160703,18.6867843,0
                -102.159544,18.6845793,0
                -102.157582,18.6863963,0
                -102.1553389,18.6859233,0
                -102.1539849,18.6863433,0
                -102.1529539,18.6851173,0
                -102.1510129,18.6858413,0
                -102.1497309,18.6843803,0
                -102.1461709,18.6836733,0
                -102.1460689,18.6810933,0
                -102.1445089,18.6787473,0
                -102.1438699,18.6790563,0
                -102.1433089,18.6810013,0
                -102.1421938,18.6809293,0
                -102.1410978,18.6818353,0
                -102.1378768,18.6808203,0
                -102.1383058,18.6815433,0
                -102.1364198,18.6826983,0
                -102.1364738,18.6838093,0
                -102.1345778,18.6838873,0
                -102.1340318,18.6835213,0
                -102.1336218,18.6810403,0
                -102.1312968,18.6787023,0
                -102.1284537,18.6788673,0
                -102.1268237,18.6807363,0
                -102.1262287,18.6794693,0
                -102.1244697,18.6798243,0
                -102.1231247,18.6785513,0
                -102.1189627,18.6808703,0
                -102.1170087,18.6805633,0
                -102.1110366,18.6814663,0
                -102.1105296,18.6826403,0
                -102.1088566,18.6829113,0
                -102.1081276,18.6838913,0
                -102.1057746,18.6846763,0
                -102.1044706,18.6842273,0
                -102.1038796,18.6854613,0
                -102.1011065,18.6865043,0
                -102.0992055,18.6881683,0
                -102.0974885,18.6889423,0
                -102.0956245,18.6888823,0
                -102.0921035,18.6842933,0
                -102.0855424,18.6666863,0
                -102.0815074,18.6613493,0
                -102.0810654,18.6594353,0
                -102.0795384,18.6580173,0
                -102.0730483,18.6554313,0
                -102.0673293,18.6500873,0
                -102.0634732,18.6453803,0
                -102.0603682,18.6444513,0
                -102.0595362,18.6434023,0
                -102.0506111,18.6415303,0
                -102.031874,18.6272423,0
                -102.0203679,18.6315193,0
                -102.0122968,18.6352793,0
                -102.0082288,18.6418323,0
                -102.0027118,18.6444213,0
                -101.9988677,18.6454853,0
                -101.9972047,18.6431663,0
                -101.9957517,18.6438583,0
                -101.9932877,18.6431953,0
                -101.9895707,18.6446413,0
                -101.9890197,18.6458653,0
                -101.9872466,18.6447233,0
                -101.9867936,18.6428363,0
                -101.9859176,18.6427263,0
                -101.9835936,18.6436183,0
                -101.9836866,18.6444803,0
                -101.9820516,18.6465973,0
                -101.9814556,18.6461423,0
                -101.9785556,18.6486223,0
                -101.9764836,18.6489573,0
                -101.9750526,18.6483513,0
                -101.9748146,18.6474923,0
                -101.9729245,18.6479073,0
                -101.9687885,18.6500443,0
                -101.9684985,18.6518493,0
                -101.9643935,18.6521973,0
                -101.9631525,18.6538553,0
                -101.9596184,18.6548013,0
                -101.9592564,18.6569653,0
                -101.9571844,18.6581343,0
                -101.9554824,18.6582403,0
                -101.9512554,18.6572393,0
                -101.9492384,18.6556773,0
                -101.9458913,18.6545203,0
                -101.9430423,18.6518683,0
                -101.9417213,18.6516323,0
                -101.9399993,18.6480743,0
                -101.9367653,18.6444443,0
                -101.9340272,18.6433613,0
                -101.9336272,18.6412513,0
                -101.9352762,18.6411213,0
                -101.9360933,18.6392523,0
                -101.9355222,18.6379733,0
                -101.9348852,18.6386443,0
                -101.9298692,18.6386803,0
                -101.9287312,18.6372753,0
                -101.9267202,18.6364863,0
                -101.9252582,18.6386373,0
                -101.9235032,18.6370393,0
                -101.9204481,18.6362143,0
                -101.9195501,18.6349343,0
                -101.8799658,18.6255224,0
                -101.8764508,18.6197434,0
                -101.8679787,18.5700614,0
                -101.8612177,18.5632604,0
                -101.8559546,18.5607874,0
                -101.8539916,18.5645524,0
                -101.8491036,18.5707274,0
                -101.8438485,18.5756954,0
                -101.8378965,18.5792304,0
                -101.8312024,18.5818204,0
                -101.8222004,18.5838964,0
                -101.7936152,18.5946644,0
                -101.7827041,18.6015424,0
                -101.771798,18.6050204,0
                -101.7396807,18.6109584,0
                -101.7328577,18.6127784,0
                -101.7248436,18.6137774,0
                -101.7173606,18.6133104,0
                -101.7134565,18.6115204,0
                -101.7078245,18.6026764,0
                -101.7056875,18.5920744,0
                -101.7034225,18.5898154,0
                -101.7011794,18.5891924,0
                -101.6901484,18.5906584,0
                -101.6672772,18.5993744,0
                -101.6623462,18.5993194,0
                -101.6588371,18.5982274,0
                -101.6552501,18.5979774,0
                -101.6495301,18.5993014,0
                -101.641205,18.6034524,0
                -101.638996,18.6038334,0
                -101.6289819,18.6018184,0
                -101.6245029,18.6004534,0
                -101.6234259,18.5993484,0
                -101.6196498,18.5870644,0
                -101.6074697,18.5792364,0
                -101.6050897,18.5758944,0
                -101.6033117,18.5703824,0
                -101.6029697,18.5634204,0
                -101.5991987,18.5545904,0
                -101.5979997,18.5501874,0
                -101.5962406,18.5474364,0
                -101.5912106,18.5449014,0
                -101.5894816,18.5429324,0
                -101.5883206,18.5294314,0
                -101.5870816,18.5262994,0
                -101.5835655,18.5222944,0
                -101.5735255,18.5188464,0
                -101.5677654,18.5133394,0
                -101.5642444,18.5111704,0
                -101.5606504,18.5103474,0
                -101.5535613,18.5114954,0
                -101.5503523,18.5110004,0
                -101.5469733,18.5087424,0
                -101.5440032,18.5018764,0
                -101.5384312,18.4990554,0
                -101.5353492,18.4983154,0
                -101.518057,18.4972784,0
                -101.514572,18.4947124,0
                -101.510943,18.4898524,0
                -101.508192,18.4882824,0
                -101.5028529,18.4881134,0
                -101.4863738,18.4903704,0
                -101.4812478,18.4917534,0
                -101.4760507,18.4914444,0
                -101.4699597,18.4882594,0
                -101.4680237,18.4882354,0
                -101.4643326,18.4902034,0
                -101.4612206,18.4959254,0
                -101.4594396,18.4979554,0
                -101.4563986,18.4986494,0
                -101.4546526,18.4981304,0
                -101.4503855,18.4935314,0
                -101.4463965,18.4906174,0
                -101.4440145,18.4901614,0
                -101.4412145,18.4904964,0
                -101.4380424,18.4929094,0
                -101.4350304,18.4991804,0
                -101.4321564,18.5029754,0
                -101.4296624,18.5033374,0
                -101.4276194,18.5024744,0
                -101.4229953,18.4981374,0
                -101.4204343,18.4977354,0
                -101.4175823,18.4988474,0
                -101.4129292,18.5032254,0
                -101.4107482,18.5123444,0
                -101.4068862,18.5138124,0
                -101.4041442,18.5131254,0
                -101.4009052,18.5095864,0
                -101.3987991,18.5082684,0
                -101.3949231,18.5074264,0
                -101.3901441,18.5079254,0
                -101.38498,18.5119634,0
                -101.378591,18.5111464,0
                -101.376176,18.5102644,0
                -101.374765,18.5089204,0
                -101.3724549,18.5038394,0
                -101.3708559,18.5017634,0
                -101.3683159,18.5008414,0
                -101.3656049,18.5011814,0
                -101.3633519,18.5024054,0
                -101.3624229,18.5045204,0
                -101.3629259,18.5146254,0
                -101.3641089,18.5193614,0
                -101.3618779,18.5215174,0
                -101.3575868,18.5236544,0
                -101.3500488,18.5235654,0
                -101.3392707,18.5270034,0
                -101.3345026,18.5297334,0
                -101.3268696,18.5307234,0
                -101.3234326,18.5293364,0
                -101.3189925,18.5295904,0
                -101.3131935,18.5342044,0
                -101.3025404,18.5339104,0
                -101.2989604,18.5344254,0
                -101.2916813,18.5379914,0
                -101.2875673,18.5407304,0
                -101.2855213,18.5423264,0
                -101.2842663,18.5448814,0
                -101.2820773,18.5460334,0
                -101.2765452,18.5434924,0
                -101.2743462,18.5416524,0
                -101.2734072,18.5373314,0
                -101.2700152,18.5364574,0
                -101.2673261,18.5366474,0
                -101.2618021,18.5402094,0
                -101.2593221,18.5408314,0
                -101.24939,18.5394704,0
                -101.243028,18.5367114,0
                -101.2380729,18.5354554,0
                -101.2311419,18.5362594,0
                -101.2252138,18.5355084,0
                -101.2201848,18.5374294,0
                -101.2157797,18.5371324,0
                -101.2119007,18.5377164,0
                -101.2024846,18.5323584,0
                -101.1962846,18.5276804,0
                -101.1953826,18.5264174,0
                -101.1936606,18.5201654,0
                -101.1915666,18.5191274,0
                -101.1869705,18.5190284,0
                -101.1815545,18.5210214,0
                -101.1791125,18.5206854,0
                -101.1682134,18.5223234,0
                -101.1573313,18.5194384,0
                -101.1511563,18.5157114,0
                -101.1472662,18.5123864,0
                -101.1427852,18.5118324,0
                -101.1395632,18.5130324,0
                -101.1345921,18.5183204,0
                -101.1315111,18.5187924,0
                -101.1282181,18.5169254,0
                -101.123962,18.5120384,0
                -101.120268,18.5105564,0
                -101.113845,18.5100874,0
                -101.1103779,18.5109324,0
                -101.1020139,18.5106014,0
                -101.0936428,18.5092444,0
                -101.0886598,18.5072074,0
                -101.0859528,18.5073334,0
                -101.0836517,18.5084704,0
                -101.0755317,18.5162754,0
                -101.0715647,18.5173644,0
                -101.0544945,18.5197464,0
                -101.0379664,18.5275054,0
                -101.0324474,18.5280194,0
                -101.0209213,18.5242464,0
                -101.0182942,18.5249404,0
                -101.0150282,18.5282094,0
                -101.0120012,18.5288424,0
                -101.0103572,18.5278204,0
                -101.0093712,18.5260844,0
                -101.0073432,18.5063534,0
                -101.0072082,18.4985564,0
                -101.0059902,18.4949504,0
                -101.0032801,18.4925984,0
                -100.989775,18.4925754,0
                -100.983292,18.4896844,0
                -100.9737049,18.4832604,0
                -100.9692829,18.4778684,0
                -100.9638928,18.4731254,0
                -100.9614728,18.4687844,0
                -100.9608308,18.4663254,0
                -100.9619258,18.4628224,0
                -100.9665549,18.4549744,0
                -100.9664159,18.4498204,0
                -100.9631118,18.4470294,0
                -100.9574408,18.4457294,0
                -100.9547138,18.4459874,0
                -100.9524718,18.4469674,0
                -100.9456247,18.4551964,0
                -100.9427507,18.4563764,0
                -100.9393877,18.4557134,0
                -100.9337676,18.4526284,0
                -100.9297076,18.4474504,0
                -100.9266546,18.4452554,0
                -100.9246125,18.4450374,0
                -100.9222725,18.4458664,0
                -100.9184755,18.4494394,0
                -100.9169335,18.4529604,0
                -100.9149195,18.4606064,0
                -100.9171405,18.4661244,0
                -100.9172555,18.4680424,0
                -100.9145135,18.4730494,0
                -100.9114834,18.4737214,0
                -100.9081664,18.4726924,0
                -100.9002264,18.4652584,0
                -100.8964013,18.4639824,0
                -100.8943653,18.4644384,0
                -100.8900043,18.4669564,0
                -100.8875973,18.4694314,0
                -100.8836662,18.4824964,0
                -100.8805212,18.4887794,0
                -100.8771742,18.4919424,0
                -100.8739722,18.4933084,0
                -100.8710781,18.4928614,0
                -100.8692671,18.4916214,0
                -100.8632701,18.4825674,0
                -100.85653,18.4783604,0
                -100.851381,18.4768844,0
                -100.8456259,18.4766184,0
                -100.8376109,18.4742464,0
                -100.8245008,18.4754974,0
                -100.8091027,18.4778144,0
                -100.7989936,18.4818704,0
                -100.7949546,18.4803454,0
                -100.7903445,18.4739054,0
                -100.7800895,18.4528774,0
                -100.7791524,18.4446514,0
                -100.7776394,18.4408424,0
                -100.7759054,18.4394554,0
                -100.7686624,18.4389664,0
                -100.7601243,18.4365034,0
                -100.7581633,18.4345824,0
                -100.7556213,18.4299034,0
                -100.7513542,18.4270704,0
                -100.7478532,18.4271124,0
                -100.7409762,18.4295174,0
                -100.7373651,18.4286004,0
                -100.7342321,18.4208774,0
                -100.7307111,18.4152024,0
                -100.7277341,18.4074494,0
                -100.724071,18.4027884,0
                -100.72213,18.4013994,0
                -100.720367,18.4006334,0
                -100.718179,18.4006454,0
                -100.714805,18.4040324,0
                -100.7121529,18.4151944,0
                -100.7095249,18.4185154,0
                -100.7070339,18.4202994,0
                -100.7019769,18.4209124,0
                -100.6982888,18.4202234,0
                -100.6910468,18.4154524,0
                -100.6892628,18.4134484,0
                -100.6877678,18.4099414,0
                -100.6898738,18.4013134,0
                -100.6893188,18.3952384,0
                -100.6847257,18.3913854,0
                -100.6836577,18.3881594,0
                -100.6786767,18.3876444,0
                -100.6749507,18.3849244,0
                -100.6750477,18.3832124,0
                -100.6770357,18.3782054,0
                -100.6772367,18.3754194,0
                -100.6766897,18.3738584,0
                -100.6635936,18.3626814,0
                -100.6570715,18.3617664,0
                -100.6525795,18.3558304,0
                -100.6490395,18.3521894,0
                -100.6475365,18.3514134,0
                -100.6458625,18.3474494,0
                -100.6429954,18.3474574,0
                -100.6408294,18.3528474,0
                -100.6415324,18.3597614,0
                -100.6396704,18.3652174,0
                -100.6372904,18.3675574,0
                -100.6345644,18.3690574,0
                -100.6311013,18.3697984,0
                -100.6269343,18.3769514,0
                -100.6171212,18.3785864,0
                -100.6105992,18.3783534,0
                -100.6087362,18.3804894,0
                -100.6080792,18.3824944,0
                -100.6089972,18.3831984,0
                -100.6096802,18.3850264,0
                -100.6096602,18.3885394,0
                -100.6051431,18.3900354,0
                -100.6017731,18.3923254,0
                -100.6012551,18.3934254,0
                -100.6014591,18.3956444,0
                -100.5961411,18.4007524,0
                -100.5961521,18.4020204,0
                -100.5987361,18.4048574,0
                -100.5995721,18.4070944,0
                -100.5981211,18.4087104,0
                -100.5959391,18.4095884,0
                -100.592244,18.4085034,0
                -100.589506,18.4093984,0
                -100.588223,18.4113714,0
                -100.588225,18.4134444,0
                -100.589923,18.4148634,0
                -100.590692,18.4167604,0
                -100.5944231,18.4173864,0
                -100.6077212,18.4267004,0
                -100.6133742,18.4288054,0
                -100.6314873,18.4397694,0
                -100.6318963,18.4422734,0
                -100.6352814,18.4442834,0
                -100.6347674,18.4471604,0
                -100.6359734,18.4493644,0
                -100.6362444,18.4530224,0
                -100.6370214,18.4539844,0
                -100.6363734,18.4559294,0
                -100.6372394,18.4590484,0
                -100.6479734,18.4587114,0
                -100.6495125,18.4634464,0
                -100.6524585,18.4660874,0
                -100.6592435,18.4704194,0
                -100.6739336,18.4779104,0
                -100.6759587,18.4796824,0
                -100.6810217,18.4809874,0
                -100.6878187,18.4845294,0
                -100.6905088,18.4870324,0
                -100.6977858,18.4919404,0
                -100.7002168,18.4898104,0
                -100.7014738,18.4873204,0
                -100.7011518,18.4863674,0
                -100.7045429,18.4851134,0
                -100.7046099,18.4846144,0
                -100.7056449,18.4853214,0
                -100.7071329,18.4843464,0
                -100.7150369,18.4876964,0
                -100.7093439,18.4891714,0
                -100.7083909,18.4888174,0
                -100.7074669,18.4895334,0
                -100.7069729,18.4912004,0
                -100.7095389,18.4972774,0
                -100.719586,18.5098504,0
                -100.722672,18.5150674,0
                -100.7319861,18.5222844,0
                -100.7340721,18.5224934,0
                -100.7354331,18.5209844,0
                -100.7382901,18.5198894,0
                -100.7442212,18.5193724,0
                -100.7648923,18.5625104,0
                -100.7635233,18.5646134,0
                -100.7641943,18.5830424,0
                -100.7606873,18.5937024,0
                -100.7616033,18.5957334,0
                -100.7584383,18.6109404,0
                -100.7563962,18.6152584,0
                -100.7521872,18.6315034,0
                -100.7512092,18.6429664,0
                -100.7578992,18.6405424,0
                -100.7591083,18.6411934,0
                -100.7601003,18.6429304,0
                -100.7588142,18.6441774,0
                -100.7594432,18.6569714,0
                -100.7616853,18.6610654,0
                -100.7641553,18.6626474,0
                -100.7647153,18.6649954,0
                -100.7655123,18.6654634,0
                -100.7612313,18.6729704,0
                -100.7617553,18.6745104,0
                -100.7612783,18.6772884,0
                -100.7622423,18.6784964,0
                -100.7623623,18.6818444,0
                -100.7636503,18.6842414,0
                -100.7663863,18.6867764,0
                -100.7667293,18.6884414,0
                -100.7687563,18.6897584,0
                -100.7702313,18.6917794,0
                -100.7702793,18.6940094,0
                -100.7710733,18.6942634,0
                -100.7727523,18.6919234,0
                -100.7781464,18.6919734,0
                -100.7803444,18.6914194,0
                -100.7798224,18.6897174,0
                -100.7827984,18.6892184,0
                -100.7835164,18.6883264,0
                -100.7842604,18.6883024,0
                -100.7854014,18.6927804,0
                -100.7845224,18.6937134,0
                -100.7852364,18.6959384,0
                -100.7826834,18.6994064,0
                -100.7808924,18.7048004,0
                -100.7812444,18.7095094,0
                -100.7800184,18.7143144,0
                -100.7789174,18.7172214,0
                -100.7779094,18.7177774,0
                -100.7778534,18.7188394,0
                -100.7771494,18.7193604,0
                -100.7769674,18.7218914,0
                -100.7745874,18.7283244,0
                -100.7738593,18.7287984,0
                -100.7754244,18.7311134,0
                -100.7729313,18.7338674,0
                -100.7772254,18.7375534,0
                -100.7801594,18.7411464,0
                -100.7788614,18.7438524,0
                -100.7817764,18.7464044,0
                -100.7840634,18.7464764,0
                -100.7884565,18.7425054,0
                -100.7939745,18.7466824,0
                -100.7969085,18.7475694,0
                -100.7969915,18.7481694,0
                -100.7971355,18.7496894,0
                -100.7963955,18.7507224,0
                -100.7969725,18.7517374,0
                -100.7960865,18.7539454,0
                -100.7948135,18.7545144,0
                -100.7954215,18.7561294,0
                -100.7931085,18.7569584,0
                -100.7928395,18.7581514,0
                -100.7937125,18.7591594,0
                -100.7917545,18.7591134,0
                -100.7921355,18.7595414,0
                -100.7912645,18.7602864,0
                -100.7917185,18.7615684,0
                -100.7909065,18.7615854,0
                -100.7901525,18.7627444,0
                -100.7927005,18.7637594,0
                -100.7919735,18.7658934,0
                -100.7926305,18.7653094,0
                -100.7942245,18.7660964,0
                -100.7934365,18.7668814,0
                -100.7950175,18.7682704,0
                -100.7938475,18.7690754,0
                -100.7952135,18.7723394,0
                -100.7945265,18.7727734,0
                -100.7957495,18.7753184,0
                -100.7962615,18.7792224,0
                -100.7977055,18.7833704,0
                -100.7989715,18.7840854,0
                -100.7989655,18.7858354,0
                -100.7977875,18.7880634,0
                -100.7954565,18.7901854,0
                -100.7899775,18.7947574,0
                -100.7850474,18.7978004,0
                -100.7825144,18.8029534,0
                -100.7904715,18.8267334,0
                -100.7937735,18.8263964,0
                -100.7970335,18.8246314,0
                -100.8018885,18.8241914,0
                -100.8038906,18.8253324,0
                -100.8040866,18.8276974,0
                -100.8047516,18.8283924,0
                -100.8060046,18.8283664,0
                -100.8062316,18.8301344,0
                -100.8082346,18.8301114,0
                -100.8081736,18.8309854,0
                -100.8092796,18.8318194,0
                -100.8116726,18.8298394,0
                -100.8128276,18.8297464,0
                -100.8165977,18.8311304,0
                -100.8203557,18.8307314,0
                -100.8208987,18.8312054,0
                -100.8288597,18.8292924,0
                -100.8324668,18.8301894,0
                -100.8334198,18.8295814,0
                -100.8330448,18.8304264,0
                -100.8355698,18.8318264,0
                -100.8394518,18.8273264,0
                -100.8418369,18.8268804,0
                -100.8471069,18.8234504,0
                -100.8477559,18.8218034,0
                -100.8513709,18.8182394,0
                -100.8478699,18.8216924,0
                -100.8527239,18.8338384,0
                -100.8529989,18.8416254,0
                -100.8543779,18.8425014,0
                -100.855182,18.8417154,0
                -100.857378,18.8423924,0
                -100.858141,18.8417544,0
                -100.85931,18.8424704,0
                -100.860142,18.8415944,0
                -100.863814,18.8415914,0
                -100.865531,18.8433154,0
                -100.865167,18.8440914,0
                -100.866759,18.8454664,0
                -100.864439,18.8497134,0
                -100.86554,18.8502324,0
                -100.866489,18.8526294,0
                -100.868075,18.8542084,0
                -100.8685721,18.8571354,0
                -100.8720401,18.8566264,0
                -100.8731001,18.8553644,0
                -100.8755751,18.8544914,0
                -100.8810341,18.8541484,0
                -100.8823972,18.8558384,0
                -100.8830572,18.8556704,0
                -100.8870332,18.8584624,0
                -100.8873802,18.8594654,0
                -100.8905502,18.8618994,0
                -100.8912572,18.8715384,0
                -100.8980683,18.8858454,0
                -100.8851562,18.9120324,0
                -100.8813431,18.9176084,0
                -100.8768521,18.9218534,0
                -100.8765121,18.9243824,0
                -100.8752001,18.9237614,0
                -100.868566,18.9234574,0
                -100.867542,18.9241404,0
                -100.867635,18.9265134,0
                -100.866439,18.9283554,0
                -100.866937,18.9292194,0
                -100.866295,18.9314694,0
                -100.867363,18.9334474,0
                -100.868428,18.9337844,0
                -100.868542,18.9349124,0
                -100.869502,18.9344934,0
                -100.869929,18.9355934,0
                -100.8708581,18.9355844,0
                -100.8703761,18.9371234,0
                -100.8716581,18.9370324,0
                -100.8705571,18.9401704,0
                -100.866498,18.9449624,0
                -100.866416,18.9457664,0
                -100.866919,18.9468594,0
                -100.869029,18.9462284,0
                -100.870297,18.9496944,0
                -100.866949,18.9551854,0
                -100.86795,18.9558804,0
                -100.867978,18.9570654,0
                -100.866529,18.9577474,0
                -100.864831,18.9603964,0
                -100.863459,18.9611584,0
                -100.863386,18.9627094,0
                -100.859364,18.9633874,0
                -100.858183,18.9649704,0
                -100.858889,18.9655754,0
                -100.8574619,18.9683404,0
                -100.857989,18.9685004,0
                -100.8570909,18.9717634,0
                -100.8577589,18.9721954,0
                -100.8567469,18.9739784,0
                -100.8577019,18.9743764,0
                -100.858308,18.9759034,0
                -100.8568069,18.9801324,0
                -100.8580469,18.9818314,0
                -100.860059,18.9895604,0
                -100.862293,18.9903324,0
                -100.86279,18.9923524,0
                -100.869251,18.9936644,0
                -100.8742171,19.0034334,0
                -100.866064,19.0110104,0
                -100.864828,19.0112724,0
                -100.862723,19.0144924,0
                -100.865419,19.0181374,0
                -100.869102,19.0171484,0
                -100.870625,19.0179234,0
                -100.870461,19.0188204,0
                -100.8723021,19.0180564,0
                -100.8741651,19.0186134,0
                -100.8747071,19.0199644,0
                -100.8768551,19.0214414,0
                -100.8782601,19.0209814,0
                -100.8776391,19.0236274,0
                -100.8757061,19.0265864,0
                -100.8724861,19.0286614,0
                -100.8727241,19.0302214,0
                -100.8766091,19.0332774,0
                -100.8772911,19.0342984,0
                -100.8770331,19.0366724,0
                -100.8774691,19.0371024,0
                -100.8817921,19.0382604,0
                -100.8829511,19.0400124,0
                -100.8849451,19.0408124,0
                -100.8834311,19.0427594,0
                -100.8856252,19.0446934,0
                -100.8874762,19.0452414,0
                -100.8875392,19.0490414,0
                -100.8911122,19.0504704,0
                -100.8949252,19.0552324,0
                -100.8959422,19.0548544,0
                -100.8970922,19.0523464,0
                -100.9017743,19.0532694,0
                -100.9014713,19.0548484,0
                -100.9041693,19.0572664,0
                -100.9026193,19.0602764,0
                -100.9043063,19.0629234,0
                -100.9081093,19.0653734,0
                -100.9210524,19.0717254,0
                -100.9227904,19.0715284,0
                -100.9259015,19.0726464,0
                -100.9275185,19.0719784,0
                -100.9282905,19.0722954,0
                -100.9287285,19.0753474,0
                -100.9306685,19.0804574,0
                -100.9355375,19.0842834,0
                -100.9396136,19.0862244,0
                -100.9406686,19.0881074,0
                -100.9392316,19.0888724,0
                -100.9384296,19.0915134,0
                -100.9401596,19.0932434,0
                -100.9440936,19.0939194,0
                -100.9447296,19.0933684,0
                -100.9474006,19.0943304,0
                -100.9547377,19.0898034,0
                -100.9579027,19.0867314,0
                -100.9642728,19.0902554,0
                -100.990599,19.0821604,0
                -101.0096981,19.0971004,0
                -101.0104331,19.1000954,0
                -101.0088601,19.1018404,0
                -101.0085671,19.1039014,0
                -101.0114281,19.1038014,0
                -101.0120811,19.1046984,0
                -101.0157032,19.1058084,0
                -101.0147192,19.1102304,0
                -101.0156392,19.1129324,0
                -101.0156462,19.1184024,0
                -101.0183892,19.1231114,0
                -101.0211652,19.1259774,0
                -101.0213932,19.1330094,0
                -101.0235972,19.1365114,0
                -101.0207752,19.1383734,0
                -101.0205622,19.1398854,0
                -101.0254912,19.1420614,0
                -101.0239562,19.1441234,0
                -101.0254642,19.1474744,0
                -101.0252272,19.1515694,0
                -101.0227652,19.1546634,0
                -101.0236802,19.1560624,0
                -101.0259472,19.1568664,0
                -101.0262772,19.1583024,0
                -101.0287363,19.1590154,0
                -101.0309043,19.1624334,0
                -101.0308783,19.1637404,0
                -101.0326383,19.1658514,0
                -101.0330223,19.1688094,0
                -101.0347803,19.1708974,0
                -101.0393863,19.1740194,0
                -101.0390973,19.1749354,0
                -101.0401084,19.1764724,0
                -101.0415324,19.1765194,0
                -101.0392633,19.1779624,0
                -101.0393323,19.1796584,0
                -101.0387063,19.1799564,0
                -101.0402494,19.1814704,0
                -101.0395243,19.1833274,0
                -101.0409704,19.1846124,0
                -101.0428024,19.1847514,0
                -101.0434514,19.1876174,0
                -101.0441524,19.1880544,0
                -101.0464694,19.1875974,0
                -101.0496274,19.1885624,0
                -101.0538045,19.1881524,0
                -101.0562475,19.1902554,0
                -101.0524574,19.1901434,0
                -101.0485044,19.1932454,0
                -101.0445704,19.1938044,0
                -101.0449214,19.1976084,0
                -101.0410294,19.2008954,0
                -101.0394093,19.2049364,0
                -101.0351303,19.2103314,0
                -101.0339703,19.2123934,0
                -101.0339203,19.2140214,0
                -101.0314073,19.2176644,0
                -101.0314753,19.2226394,0
                -101.0344653,19.2246134,0
                -101.0340283,19.2266764,0
                -101.0319043,19.2279814,0
                -101.0292423,19.2321584,0
                -101.0298423,19.2352784,0
                -101.0290673,19.2363324,0
                -101.0292573,19.2377094,0
                -101.0305123,19.2386514,0
                -101.0307723,19.2400694,0
                -101.0325593,19.2421874,0
                -101.0331073,19.2462474,0
                -101.0273822,19.2476844,0
                -101.0269412,19.2502064,0
                -101.0248162,19.2499274,0
                -101.0254752,19.2508164,0
                -101.0241162,19.2581904,0
                -101.0203502,19.2616434,0
                -101.0200782,19.2650994,0
                -101.0180382,19.2681674,0
                -101.0183242,19.2691074,0
                -101.0198492,19.2701464,0
                -101.0219932,19.2698804,0
                -101.0248642,19.2742024,0
                -101.0229432,19.2773794,0
                -101.0201742,19.2774374,0
                -101.0209792,19.2784944,0
                -101.0210322,19.2823154,0
                -101.0223932,19.2839064,0
                -101.0215952,19.2846194,0
                -101.0191462,19.2850314,0
                -101.0171592,19.2905934,0
                -101.0174922,19.2945844,0
                -101.0170032,19.2957714,0
                -101.0190642,19.2972564,0
                -101.0196122,19.2987824,0
                -101.0159481,19.3052154,0
                -101.0154081,19.3072224,0
                -101.0153551,19.3080684,0
                -101.0164222,19.3089284,0
                -101.0162641,19.3126654,0
                -101.0170972,19.3134204,0
                -101.0152631,19.3141424,0
                -101.0155441,19.3148674,0
                -101.0147891,19.3159164,0
                -101.0134931,19.3152054,0
                -101.0121481,19.3163794,0
                -101.0122081,19.3173904,0
                -101.0114171,19.3175514,0
                -101.0124471,19.3220674,0
                -101.0110361,19.3236694,0
                -101.0072461,19.3324454,0
                -101.0083031,19.3342474,0
                -101.0073191,19.3377224,0
                -101.0075781,19.3421964,0
                -101.003484,19.3492404,0
                -101.003622,19.3503364,0
                -101.002707,19.3511004,0
                -101.002228,19.3532264,0
                -101.000453,19.3535604,0
                -101.000527,19.3561964,0
                -101.001387,19.3579564,0
                -101.000967,19.3589794,0
                -101.001855,19.3612424,0
                -101.0048261,19.3641814,0
                -101.0092741,19.3660084,0
                -101.0121631,19.3663874,0
                -101.0111741,19.3668944,0
                -101.0134451,19.3681544,0
                -101.0136671,19.3697124,0
                -101.0159881,19.3696094,0
                -101.0163721,19.3707134,0
                -101.0185522,19.3719484,0
                -101.0188692,19.3729004,0
                -101.0179232,19.3730594,0
                -101.0175672,19.3741984,0
                -101.0192362,19.3768904,0
                -101.0186342,19.3795594,0
                -101.0207072,19.3815384,0
                -101.0238842,19.3828964,0
                -101.0265872,19.3829774,0
                -101.0271302,19.3849064,0
                -101.0288832,19.3862744,0
                -101.0283582,19.3875694,0
                -101.0269862,19.3883044,0
                -101.0280722,19.3907294,0
                -101.0268712,19.3904324,0
                -101.0262202,19.3912254,0
                -101.0260622,19.3932614,0
                -101.0278062,19.3940524,0
                -101.0253072,19.3970474,0
                -101.0353753,19.4179614,0
                -101.0361553,19.4207734,0
                -101.0351013,19.4206034,0
                -101.0352103,19.4230684,0
                -101.0326123,19.4251594,0
                -101.0329553,19.4268734,0
                -101.0314163,19.4260754,0
                -101.0312813,19.4277464,0
                -101.0293142,19.4275534,0
                -101.0282742,19.4295814,0
                -101.0272592,19.4302344,0
                -101.0264512,19.4324114,0
                -101.0238522,19.4327834,0
                -101.0253832,19.4337094,0
                -101.0275972,19.4373804,0
                -101.0298702,19.4379864,0
                -101.0321583,19.4375254,0
                -101.0368513,19.4342304,0
                -101.0375023,19.4344214,0
                -101.0366343,19.4371194,0
                -101.0371033,19.4383604,0
                -101.0404623,19.4407024,0
                -101.0427063,19.4403144,0
                -101.0442344,19.4407824,0
                -101.0470624,19.4385554,0
                -101.0494364,19.4391304,0
                -101.0500234,19.4374964,0
                -101.0512004,19.4367754,0
                -101.0528084,19.4379984,0
                -101.0569535,19.4393354,0
                -101.0600305,19.4377944,0
                -101.0583285,19.4343034,0
                -101.0602965,19.4330464,0
                -101.0659975,19.4353094,0
                -101.0699456,19.4361204,0
                -101.0720196,19.4358494,0
                -101.0759686,19.4413144,0
                -101.0736546,19.4441094,0
                -101.0721336,19.4444444,0
                -101.0713226,19.4454384,0
                -101.0697046,19.4455904,0
                -101.0686846,19.4494544,0
                -101.0607895,19.4540734,0
                -101.0604305,19.4555644,0
                -101.0610275,19.4563124,0
                -101.0601055,19.4579894,0
                -101.0614205,19.4575284,0
                -101.0620465,19.4584254,0
                -101.0605925,19.4614104,0
                -101.0607275,19.4637744,0
                -101.0593145,19.4646874,0
                -101.0588485,19.4661174,0
                -101.0580215,19.4658294,0
                -101.0577155,19.4665264,0
                -101.0588465,19.4680294,0
                -101.0555514,19.4697304,0
                -101.0553694,19.4718734,0
                -101.0531074,19.4743554,0
                -101.0551404,19.4748514,0
                -101.0560435,19.4772484,0
                -101.0547584,19.4786734,0
                -101.0547534,19.4797664,0
                -101.0531514,19.4812954,0
                -101.0526144,19.4834414,0
                -101.0504354,19.4842014,0
                -101.0493364,19.4890294,0
                -101.0470784,19.4883884,0
                -101.0476444,19.4891854,0
                -101.0469244,19.4898584,0
                -101.0474764,19.4915274,0
                -101.0466074,19.4915364,0
                -101.0466014,19.4930974,0
                -101.0452084,19.4941444,0
                -101.0512784,19.4999324,0
                -101.0558974,19.5017654,0
                -101.0589475,19.5017324,0
                -101.0643015,19.5051764,0
                -101.0677435,19.5063264,0
                -101.0703096,19.5086724,0
                -101.0700036,19.5101064,0
                -101.0715446,19.5136464,0
                -101.0700206,19.5150494,0
                -101.0706136,19.5191014,0
                -101.0739516,19.5210514,0
                -101.0761146,19.5245004,0
                -101.0788286,19.5270124,0
                -101.0806136,19.5312124,0
                -101.0801286,19.5332804,0
                -101.0788046,19.5344494,0
                -101.0806646,19.5339444,0
                -101.0812856,19.5327994,0
                -101.0842957,19.5336344,0
                -101.0850227,19.5250244,0
                -101.0872787,19.5217894,0
                -101.0885527,19.5167824,0
                -101.0963108,19.5223124,0
                -101.1010268,19.5227154,0
                -101.1076169,19.5284494,0
                -101.1157079,19.5327794,0
                -101.1171259,19.5361304,0
                -101.1164809,19.5401744,0
                -101.1184789,19.5396044,0
                -101.120507,19.5354664,0
                -101.121988,19.5351404,0
                -101.122047,19.5332164,0
                -101.122834,19.5325374,0
                -101.123069,19.5309854,0
                -101.127844,19.5307874,0
                -101.129092,19.5299334,0
                -101.130864,19.5299594,0
                -101.130457,19.5281784,0
                -101.1317281,19.5253674,0
                -101.1335131,19.5269344,0
                -101.1339351,19.5250054,0
                -101.1351711,19.5253644,0
                -101.1366711,19.5279094,0
                -101.1361001,19.5281504,0
                -101.1375981,19.5338674,0
                -101.1394781,19.5348194,0
                -101.1391551,19.5362084,0
                -101.1403611,19.5364934,0
                -101.1412711,19.5380304,0
                -101.1435862,19.5385724,0
                -101.1460632,19.5380954,0
                -101.1538202,19.5317914,0
                -101.1549002,19.5299614,0
                -101.1564173,19.5296404,0
                -101.1573783,19.5306804,0
                -101.1583783,19.5302724,0
                -101.1604243,19.5279904,0
                -101.1606063,19.5264144,0
                -101.1616303,19.5253374,0
                -101.1633863,19.5264994,0
                -101.1641623,19.5254454,0
                -101.1655773,19.5253114,0
                -101.1686454,19.5229974,0
                -101.1683043,19.5216314,0
                -101.1700604,19.5190274,0
                -101.1712084,19.5137144,0
                -101.1735044,19.5117504,0
                -101.1725224,19.5103804,0
                -101.1730774,19.5084054,0
                -101.1751224,19.5064624,0
                -101.1754884,19.5036164,0
                -101.1789384,19.4987884,0
                -101.1782514,19.4979254,0
                -101.1798004,19.4925934,0
                -101.1826335,19.4902574,0
                -101.1841485,19.4882494,0
                -101.1838635,19.4876184,0
                -101.1844865,19.4867024,0
                -101.1838395,19.4823264,0
                -101.1845045,19.4811144,0
                -101.1842615,19.4800344,0
                -101.1819935,19.4770184,0
                -101.1813035,19.4747534,0
                -101.1798484,19.4736574,0
                -101.1810335,19.4729664,0
                -101.1803244,19.4719674,0
                -101.1804984,19.4710554,0
                -101.1821035,19.4710914,0
                -101.1818405,19.4694934,0
                -101.1805664,19.4693824,0
                -101.1816585,19.4675434,0
                -101.1802234,19.4659684,0
                -101.1821265,19.4640274,0
                -101.1796394,19.4596794,0
                -101.1798544,19.4580924,0
                -101.1814875,19.4571634,0
                -101.1788594,19.4550714,0
                -101.1801234,19.4551434,0
                -101.1805625,19.4544524,0
                -101.1819365,19.4550394,0
                -101.1824975,19.4546824,0
                -101.1811325,19.4518494,0
                -101.1815085,19.4507144,0
                -101.1801654,19.4499564,0
                -101.1814775,19.4484604,0
                -101.1831665,19.4504424,0
                -101.1830395,19.4528914,0
                -101.1848275,19.4546584,0
                -101.1868575,19.4542434,0
                -101.1873135,19.4566264,0
                -101.1887225,19.4579024,0
                -101.1926955,19.4574184,0
                -101.1976896,19.4589434,0
                -101.1991996,19.4585994,0
                -101.1991586,19.4599504,0
                -101.2009676,19.4608244,0
                -101.2006966,19.4621194,0
                -101.2015176,19.4625154,0
                -101.2012586,19.4631264,0
                -101.2004886,19.4631034,0
                -101.2007066,19.4637324,0
                -101.2028116,19.4663984,0
                -101.2050156,19.4675584,0
                -101.2054776,19.4688474,0
                -101.2079097,19.4714104,0
                -101.2110197,19.4725934,0
                -101.2121727,19.4724364,0
                -101.2142207,19.4736704,0
                -101.2194008,19.4780054,0
                -101.2200638,19.4798154,0
                -101.2222848,19.4815104,0
                -101.2231168,19.4817954,0
                -101.2238118,19.4795684,0
                -101.2263838,19.4784694,0
                -101.2302408,19.4806704,0
                -101.2343339,19.4815064,0
                -101.2357989,19.4802834,0
                -101.2375329,19.4804884,0
                -101.2380349,19.4777844,0
                -101.2398589,19.4773624,0
                -101.2400919,19.4754144,0
                -101.2409299,19.4742004,0
                -101.244901,19.4742344,0
                -101.247452,19.4725004,0
                -101.250736,19.4617084,0
                -101.251764,19.4622884,0
                -101.25481,19.4616574,0
                -101.2560491,19.4620794,0
                -101.2582001,19.4645704,0
                -101.2635381,19.4670464,0
                -101.2656051,19.4772904,0
                -101.2638881,19.4826874,0
                -101.2688892,19.4854594,0
                -101.2668471,19.4907964,0
                -101.2662591,19.4977814,0
                -101.2697612,19.5023304,0
                -101.2669131,19.5054514,0
                -101.2629481,19.5045884,0
                -101.2582031,19.5067844,0
                -101.2563431,19.5113194,0
                -101.2558791,19.5152544,0
                -101.254201,19.5167784,0
                -101.252192,19.5175144,0
                -101.253784,19.5234994,0
                -101.255398,19.5236684,0
                -101.2608231,19.5139384,0
                -101.2620761,19.5140364,0
                -101.2651201,19.5128274,0
                -101.2678792,19.5129264,0
                -101.2674631,19.5147054,0
                -101.2690362,19.5171334,0
                -101.2675601,19.5187404,0
                -101.2680152,19.5202884,0
                -101.2673801,19.5218404,0
                -101.2682162,19.5226894,0
                -101.2672401,19.5231004,0
                -101.2668721,19.5281714,0
                -101.2674141,19.5289974,0
                -101.2733842,19.5310714,0
                -101.2744932,19.5321584,0
                -101.2758872,19.5314824,0
                -101.2792382,19.5263924,0
                -101.2831383,19.5238914,0
                -101.2850073,19.5237604,0
                -101.2915323,19.5255534,0
                -101.2948504,19.5294334,0
                -101.2958404,19.5260434,0
                -101.2952514,19.5245824,0
                -101.2969484,19.5225664,0
                -101.2991804,19.5227414,0
                -101.3073545,19.5255534,0
                -101.3061065,19.5271004,0
                -101.3132505,19.5393144,0
                -101.3151305,19.5400334,0
                -101.3152925,19.5391104,0
                -101.3189936,19.5396524,0
                -101.3203756,19.5406074,0
                -101.3201066,19.5432404,0
                -101.3204826,19.5434544,0
                -101.3212866,19.5421194,0
                -101.3251446,19.5448454,0
              </coordinates>
            </LinearRing>
          </outerBoundaryIs>
        </Polygon>
      </Placemark>
      <Placemark>
        <name>Equipo 4</name>
        <description><![CDATA[description: <br>fid: 118<br>tessellate: <br>extrude: <br>visibility: <br>CVE_MUN: ]]></description>
        <styleUrl>#poly-C2185B-1000-128</styleUrl>
        <ExtendedData>
          <Data name="description">
            <value/>
          </Data>
          <Data name="fid">
            <value>118</value>
          </Data>
          <Data name="tessellate">
            <value/>
          </Data>
          <Data name="extrude">
            <value/>
          </Data>
          <Data name="visibility">
            <value/>
          </Data>
          <Data name="CVE_MUN">
            <value/>
          </Data>
        </ExtendedData>
        <Polygon>
          <outerBoundaryIs>
            <LinearRing>
              <tessellate>1</tessellate>
              <coordinates>
                -102.181594,18.67871,0
                -102.184915,18.686107,0
                -102.184013,18.692651,0
                -102.186466,18.693658,0
                -102.18787,18.695688,0
                -102.188818,18.70264,0
                -102.191279,18.708003,0
                -102.200607,18.710319,0
                -102.205465,18.71525,0
                -102.2049,18.716243,0
                -102.21061,18.742942,0
                -102.212755,18.745747,0
                -102.217974,18.746765,0
                -102.220113,18.750645,0
                -102.220326,18.752107,0
                -102.218987,18.755314,0
                -102.220026,18.758387,0
                -102.219621,18.76018,0
                -102.218502,18.760951,0
                -102.21907,18.763368,0
                -102.220754,18.765115,0
                -102.221801,18.765656,0
                -102.222343,18.765303,0
                -102.222713,18.766079,0
                -102.224562,18.76687,0
                -102.221202,18.77048,0
                -102.222186,18.772893,0
                -102.215575,18.777079,0
                -102.216432,18.779093,0
                -102.215617,18.779192,0
                -102.212524,18.784211,0
                -102.214578,18.788696,0
                -102.214502,18.790089,0
                -102.216015,18.791407,0
                -102.21662,18.790962,0
                -102.217473,18.792071,0
                -102.217062,18.793809,0
                -102.215957,18.794904,0
                -102.219996,18.795471,0
                -102.221744,18.796577,0
                -102.219851,18.798964,0
                -102.219253,18.803109,0
                -102.217799,18.804144,0
                -102.218324,18.806832,0
                -102.217442,18.810643,0
                -102.219552,18.813431,0
                -102.220929,18.818221,0
                -102.223933,18.821637,0
                -102.227727,18.824337,0
                -102.21554,18.838902,0
                -102.207463,18.856375,0
                -102.197374,18.859663,0
                -102.197957,18.861363,0
                -102.196998,18.863019,0
                -102.198909,18.863557,0
                -102.201441,18.865714,0
                -102.200773,18.867998,0
                -102.197933,18.870314,0
                -102.196553,18.874017,0
                -102.198505,18.880824,0
                -102.199646,18.882021,0
                -102.205299,18.884975,0
                -102.213966,18.883066,0
                -102.226008,18.885753,0
                -102.233934,18.89021,0
                -102.234327,18.896651,0
                -102.235651,18.899054,0
                -102.236663,18.899648,0
                -102.240848,18.898216,0
                -102.244488,18.888559,0
                -102.249566,18.88219,0
                -102.251585,18.880616,0
                -102.255808,18.881116,0
                -102.259569,18.883314,0
                -102.260974,18.88744,0
                -102.262841,18.889373,0
                -102.271993,18.88935,0
                -102.273142,18.890558,0
                -102.274227,18.893729,0
                -102.278662,18.896716,0
                -102.286224,18.89406,0
                -102.291189,18.889479,0
                -102.294573,18.888614,0
                -102.298176,18.888817,0
                -102.29904,18.889446,0
                -102.300559,18.89303,0
                -102.301622,18.897703,0
                -102.30261,18.898462,0
                -102.313345,18.896,0
                -102.32273,18.896245,0
                -102.325016,18.897396,0
                -102.328474,18.900193,0
                -102.329973,18.90274,0
                -102.329428,18.907083,0
                -102.327832,18.909847,0
                -102.330385,18.911004,0
                -102.343037,18.9125,0
                -102.344385,18.914335,0
                -102.345648,18.918421,0
                -102.342627,18.922837,0
                -102.341801,18.925932,0
                -102.342016,18.928285,0
                -102.34407,18.934175,0
                -102.340887,18.930348,0
                -102.336091,18.927278,0
                -102.331329,18.927907,0
                -102.327238,18.93182,0
                -102.328065,18.934335,0
                -102.327045,18.938389,0
                -102.327247,18.941823,0
                -102.324775,18.946777,0
                -102.325834,18.951358,0
                -102.324382,18.95489,0
                -102.326877,18.956181,0
                -102.324478,18.960333,0
                -102.328057,18.961593,0
                -102.33184,18.960655,0
                -102.336183,18.961774,0
                -102.326537,18.96461,0
                -102.325428,18.967218,0
                -102.327302,18.969096,0
                -102.328682,18.969047,0
                -102.328832,18.970083,0
                -102.325955,18.969149,0
                -102.324651,18.97265,0
                -102.323244,18.972472,0
                -102.322855,18.974382,0
                -102.319545,18.976136,0
                -102.320613,18.977723,0
                -102.320497,18.97896,0
                -102.317628,18.979884,0
                -102.317142,18.981213,0
                -102.315558,18.982402,0
                -102.312269,18.982965,0
                -102.310565,18.985185,0
                -102.308163,18.984922,0
                -102.307523,18.992739,0
                -102.304952,18.994712,0
                -102.302523,18.995294,0
                -102.300324,18.997646,0
                -102.299902,18.999765,0
                -102.297666,19.000127,0
                -102.297795,19.001207,0
                -102.296532,19.002641,0
                -102.29602,19.00465,0
                -102.290337,19.010385,0
                -102.28991,19.014238,0
                -102.288302,19.015594,0
                -102.288567,19.01601,0
                -102.284961,19.02199,0
                -102.286705,19.023025,0
                -102.285823,19.02463,0
                -102.28729,19.025671,0
                -102.286873,19.026475,0
                -102.285262,19.025598,0
                -102.279829,19.036013,0
                -102.284452,19.037988,0
                -102.283849,19.039779,0
                -102.283638,19.040162,0
                -102.278949,19.038285,0
                -102.278162,19.040377,0
                -102.283029,19.042285,0
                -102.283224,19.041714,0
                -102.290492,19.043879,0
                -102.292177,19.051642,0
                -102.290641,19.053263,0
                -102.290772,19.055173,0
                -102.287882,19.055163,0
                -102.28443,19.05836,0
                -102.280715,19.059324,0
                -102.277689,19.061754,0
                -102.275873,19.062071,0
                -102.276881,19.066927,0
                -102.276211,19.068657,0
                -102.276527,19.070384,0
                -102.275973,19.070827,0
                -102.276256,19.072926,0
                -102.274092,19.075984,0
                -102.273358,19.076112,0
                -102.273751,19.077366,0
                -102.269949,19.082973,0
                -102.270436,19.083146,0
                -102.269906,19.083989,0
                -102.271161,19.084374,0
                -102.268079,19.090668,0
                -102.268185,19.092248,0
                -102.266781,19.094195,0
                -102.266203,19.096496,0
                -102.267208,19.096983,0
                -102.266873,19.097889,0
                -102.263773,19.102489,0
                -102.260933,19.103738,0
                -102.260473,19.10545,0
                -102.258147,19.107458,0
                -102.255467,19.105865,0
                -102.248754,19.116458,0
                -102.251398,19.115088,0
                -102.252343,19.116604,0
                -102.254295,19.117166,0
                -102.255344,19.119301,0
                -102.256576,19.119876,0
                -102.258578,19.126626,0
                -102.254295,19.126604,0
                -102.254411,19.128292,0
                -102.252037,19.129201,0
                -102.249941,19.131458,0
                -102.243277,19.129743,0
                -102.242023,19.133478,0
                -102.240464,19.135737,0
                -102.239847,19.139005,0
                -102.238003,19.141686,0
                -102.238308,19.144259,0
                -102.237118,19.146446,0
                -102.237569,19.146584,0
                -102.237019,19.147464,0
                -102.237242,19.150194,0
                -102.234503,19.153458,0
                -102.231817,19.155492,0
                -102.23186,19.160303,0
                -102.230917,19.160498,0
                -102.230559,19.162191,0
                -102.228144,19.164478,0
                -102.227423,19.168821,0
                -102.226234,19.169962,0
                -102.228266,19.174945,0
                -102.226069,19.176085,0
                -102.223353,19.178669,0
                -102.219111,19.177878,0
                -102.218188,19.178404,0
                -102.217189,19.184041,0
                -102.218863,19.185432,0
                -102.219135,19.187063,0
                -102.22082,19.187915,0
                -102.22255,19.190625,0
                -102.222716,19.194124,0
                -102.223891,19.198272,0
                -102.217923,19.205032,0
                -102.218669,19.209144,0
                -102.213684,19.209204,0
                -102.212066,19.207076,0
                -102.211239,19.207619,0
                -102.211522,19.20974,0
                -102.213813,19.210466,0
                -102.214746,19.212527,0
                -102.212834,19.215108,0
                -102.210978,19.214776,0
                -102.212236,19.215624,0
                -102.21454,19.215188,0
                -102.215044,19.213696,0
                -102.219235,19.213268,0
                -102.221017,19.213531,0
                -102.224412,19.215505,0
                -102.22673,19.213685,0
                -102.231624,19.213249,0
                -102.239776,19.215942,0
                -102.243467,19.218917,0
                -102.248042,19.224988,0
                -102.252971,19.227983,0
                -102.281251,19.201073,0
                -102.291574,19.198809,0
                -102.300158,19.207974,0
                -102.305052,19.207131,0
                -102.306082,19.206322,0
                -102.307663,19.206585,0
                -102.307453,19.20569,0
                -102.309929,19.203077,0
                -102.311177,19.203079,0
                -102.312053,19.201015,0
                -102.314558,19.20061,0
                -102.314547,19.202121,0
                -102.313725,19.203358,0
                -102.314094,19.204381,0
                -102.319006,19.210595,0
                -102.319396,19.212996,0
                -102.321667,19.214983,0
                -102.321989,19.216903,0
                -102.323737,19.21718,0
                -102.325819,19.21887,0
                -102.333699,19.21902,0
                -102.342884,19.21322,0
                -102.352687,19.195774,0
                -102.360615,19.18962,0
                -102.367482,19.182864,0
                -102.386808,19.185601,0
                -102.38714,19.182425,0
                -102.393058,19.173019,0
                -102.41319,19.179918,0
                -102.41477,19.177448,0
                -102.414983,19.174349,0
                -102.416522,19.171987,0
                -102.417461,19.172215,0
                -102.41755,19.169722,0
                -102.416447,19.167576,0
                -102.417057,19.165787,0
                -102.41935,19.163637,0
                -102.418618,19.162525,0
                -102.41928,19.159556,0
                -102.421284,19.158005,0
                -102.424958,19.152477,0
                -102.428889,19.149397,0
                -102.429133,19.148083,0
                -102.430361,19.147704,0
                -102.432379,19.145479,0
                -102.432932,19.14356,0
                -102.435029,19.141312,0
                -102.435183,19.138611,0
                -102.436173,19.136747,0
                -102.442539,19.139869,0
                -102.45806,19.132884,0
                -102.467722,19.135976,0
                -102.477026,19.155375,0
                -102.478157,19.156524,0
                -102.482293,19.155668,0
                -102.481528,19.154151,0
                -102.482682,19.152682,0
                -102.488721,19.150137,0
                -102.490749,19.148398,0
                -102.494962,19.147048,0
                -102.493596,19.145845,0
                -102.495095,19.146032,0
                -102.495567,19.145232,0
                -102.497668,19.144769,0
                -102.499884,19.142426,0
                -102.501116,19.142601,0
                -102.502462,19.141643,0
                -102.504303,19.142292,0
                -102.504081,19.137909,0
                -102.505672,19.138606,0
                -102.508092,19.138193,0
                -102.507823,19.137152,0
                -102.511266,19.133803,0
                -102.511562,19.132687,0
                -102.506759,19.130336,0
                -102.507259,19.128848,0
                -102.506615,19.127476,0
                -102.50845,19.125799,0
                -102.508662,19.123231,0
                -102.506317,19.121284,0
                -102.506063,19.120156,0
                -102.510113,19.121276,0
                -102.509631,19.120173,0
                -102.513913,19.113115,0
                -102.514389,19.109141,0
                -102.515635,19.108971,0
                -102.515833,19.10611,0
                -102.514346,19.100912,0
                -102.517545,19.09156,0
                -102.523183,19.08609,0
                -102.525223,19.077311,0
                -102.523166,19.068731,0
                -102.526508,19.059248,0
                -102.525385,19.05805,0
                -102.516439,19.054777,0
                -102.503534,19.044514,0
                -102.502021,19.013491,0
                -102.510396,19.014934,0
                -102.510884,19.013474,0
                -102.513261,19.011471,0
                -102.515811,19.00477,0
                -102.516249,19.001692,0
                -102.515704,18.999885,0
                -102.516418,18.997664,0
                -102.51996,18.99421,0
                -102.522683,18.994235,0
                -102.525588,18.996591,0
                -102.535914,19.000801,0
                -102.546161,19.003376,0
                -102.555137,19.002877,0
                -102.563283,19.004029,0
                -102.565754,19.003028,0
                -102.566784,19.004413,0
                -102.566366,19.007477,0
                -102.564783,19.009839,0
                -102.561074,19.013186,0
                -102.561866,19.017092,0
                -102.562879,19.018325,0
                -102.569369,19.021752,0
                -102.5739,19.022499,0
                -102.576411,19.021951,0
                -102.57802,19.020821,0
                -102.579461,19.023178,0
                -102.576765,19.026796,0
                -102.569609,19.031799,0
                -102.56848,19.033502,0
                -102.568932,19.034857,0
                -102.576984,19.036843,0
                -102.579653,19.038611,0
                -102.583107,19.039511,0
                -102.587911,19.045151,0
                -102.590353,19.047224,0
                -102.592524,19.047911,0
                -102.595021,19.047832,0
                -102.598866,19.045786,0
                -102.6034,19.045653,0
                -102.610888,19.047418,0
                -102.614246,19.04646,0
                -102.61459,19.045622,0
                -102.620039,19.047184,0
                -102.621504,19.047894,0
                -102.621994,19.048896,0
                -102.634712,19.052099,0
                -102.646282,19.047446,0
                -102.650996,19.04747,0
                -102.654147,19.049484,0
                -102.656848,19.053372,0
                -102.663495,19.060034,0
                -102.664007,19.06263,0
                -102.663094,19.070108,0
                -102.664478,19.07222,0
                -102.66748,19.072001,0
                -102.671582,19.069947,0
                -102.673045,19.070117,0
                -102.674486,19.071182,0
                -102.675464,19.074027,0
                -102.671512,19.082097,0
                -102.672817,19.085212,0
                -102.677155,19.084993,0
                -102.679929,19.079634,0
                -102.68255,19.07794,0
                -102.684346,19.079572,0
                -102.685312,19.085106,0
                -102.688183,19.089914,0
                -102.6924,19.089203,0
                -102.695078,19.0895,0
                -102.69594,19.091034,0
                -102.692889,19.094034,0
                -102.691026,19.094783,0
                -102.690331,19.096214,0
                -102.690094,19.097797,0
                -102.691227,19.098562,0
                -102.693756,19.098025,0
                -102.698095,19.09422,0
                -102.701507,19.09215,0
                -102.703746,19.092202,0
                -102.704478,19.09441,0
                -102.701113,19.097028,0
                -102.700606,19.098984,0
                -102.703591,19.101925,0
                -102.710393,19.106391,0
                -102.712773,19.10511,0
                -102.713506,19.096864,0
                -102.71445,19.095176,0
                -102.717341,19.094234,0
                -102.720298,19.094842,0
                -102.721344,19.09594,0
                -102.721204,19.09746,0
                -102.717925,19.103467,0
                -102.717577,19.106156,0
                -102.718304,19.108449,0
                -102.719502,19.109838,0
                -102.727424,19.110657,0
                -102.729761,19.116511,0
                -102.728889,19.118204,0
                -102.725314,19.121826,0
                -102.721332,19.123702,0
                -102.722002,19.125799,0
                -102.724688,19.12654,0
                -102.734255,19.12234,0
                -102.737742,19.122892,0
                -102.7391,19.124576,0
                -102.738796,19.129156,0
                -102.737224,19.135806,0
                -102.737197,19.1378,0
                -102.738204,19.139837,0
                -102.739925,19.140997,0
                -102.74309,19.141066,0
                -102.745623,19.136431,0
                -102.746603,19.135689,0
                -102.748577,19.136816,0
                -102.748201,19.139134,0
                -102.740561,19.143995,0
                -102.74349,19.146254,0
                -102.752205,19.147632,0
                -102.7596,19.152692,0
                -102.760723,19.158315,0
                -102.762394,19.160522,0
                -102.764089,19.161463,0
                -102.765656,19.161866,0
                -102.766576,19.1614,0
                -102.767854,19.156916,0
                -102.769755,19.155568,0
                -102.77283,19.155006,0
                -102.774854,19.153827,0
                -102.776925,19.154094,0
                -102.779137,19.156144,0
                -102.779916,19.158715,0
                -102.777963,19.164867,0
                -102.775999,19.166695,0
                -102.774843,19.167278,0
                -102.773982,19.166904,0
                -102.774629,19.169548,0
                -102.776696,19.170705,0
                -102.777087,19.171538,0
                -102.775536,19.17656,0
                -102.775843,19.178219,0
                -102.776162,19.179277,0
                -102.782848,19.181283,0
                -102.784644,19.182882,0
                -102.784812,19.184241,0
                -102.783377,19.185832,0
                -102.779512,19.187386,0
                -102.775105,19.185047,0
                -102.77219,19.184863,0
                -102.771226,19.186155,0
                -102.771342,19.187517,0
                -102.771866,19.188298,0
                -102.776492,19.18928,0
                -102.780964,19.191473,0
                -102.784068,19.194596,0
                -102.784138,19.196776,0
                -102.78475,19.197423,0
                -102.786532,19.197296,0
                -102.788743,19.194744,0
                -102.78949,19.194898,0
                -102.790812,19.197728,0
                -102.78672,19.201004,0
                -102.786688,19.203914,0
                -102.7889,19.2054,0
                -102.789171,19.206494,0
                -102.788989,19.208057,0
                -102.787431,19.210115,0
                -102.785965,19.210568,0
                -102.784698,19.209949,0
                -102.783184,19.206222,0
                -102.781309,19.205013,0
                -102.779717,19.205702,0
                -102.778561,19.20713,0
                -102.778988,19.20892,0
                -102.781035,19.212049,0
                -102.784744,19.213473,0
                -102.787072,19.21326,0
                -102.787579,19.214091,0
                -102.787214,19.215266,0
                -102.782329,19.217999,0
                -102.776114,19.215869,0
                -102.773533,19.218086,0
                -102.774,19.219925,0
                -102.773536,19.220558,0
                -102.775476,19.221857,0
                -102.778721,19.222535,0
                -102.780238,19.222306,0
                -102.783019,19.220527,0
                -102.785352,19.22044,0
                -102.788844,19.222868,0
                -102.78955,19.225792,0
                -102.789543,19.23399,0
                -102.788958,19.235573,0
                -102.775122,19.240074,0
                -102.773485,19.238937,0
                -102.771595,19.23305,0
                -102.769248,19.232849,0
                -102.768429,19.233993,0
                -102.768399,19.236243,0
                -102.771808,19.243705,0
                -102.773204,19.245359,0
                -102.776927,19.243556,0
                -102.783057,19.2432,0
                -102.784888,19.243918,0
                -102.785694,19.242149,0
                -102.788726,19.242946,0
                -102.790243,19.242458,0
                -102.790396,19.240902,0
                -102.789599,19.239595,0
                -102.791116,19.238499,0
                -102.793492,19.235152,0
                -102.794355,19.232367,0
                -102.793143,19.23106,0
                -102.79315,19.229224,0
                -102.792245,19.228701,0
                -102.793764,19.225408,0
                -102.799953,19.223452,0
                -102.803551,19.223938,0
                -102.808361,19.223264,0
                -102.81202,19.220621,0
                -102.813983,19.218279,0
                -102.816303,19.211206,0
                -102.817706,19.209095,0
                -102.824433,19.205693,0
                -102.830168,19.209989,0
                -102.82776,19.211261,0
                -102.831421,19.21464,0
                -102.843824,19.202632,0
                -102.845859,19.199732,0
                -102.84564,19.199048,0
                -102.854028,19.201219,0
                -102.859934,19.20395,0
                -102.862602,19.20323,0
                -102.865384,19.205876,0
                -102.865377,19.211285,0
                -102.872933,19.209359,0
                -102.879476,19.206625,0
                -102.884201,19.205688,0
                -102.886433,19.204391,0
                -102.899214,19.193967,0
                -102.901025,19.190892,0
                -102.912717,19.182077,0
                -102.915073,19.179367,0
                -102.927438,19.177268,0
                -102.930307,19.1785,0
                -102.930863,19.179608,0
                -102.935133,19.182032,0
                -102.936151,19.173625,0
                -102.938359,19.174457,0
                -102.942018,19.177133,0
                -102.945999,19.17657,0
                -102.947155,19.175872,0
                -102.9475,19.174877,0
                -102.951014,19.175046,0
                -102.952295,19.176561,0
                -102.95212,19.174713,0
                -102.953394,19.173587,0
                -102.955485,19.16962,0
                -102.956516,19.172134,0
                -102.957827,19.17355,0
                -102.960096,19.174056,0
                -102.962348,19.172016,0
                -102.962884,19.169572,0
                -102.961164,19.167494,0
                -102.962683,19.165769,0
                -102.966025,19.163954,0
                -102.968593,19.160137,0
                -102.971185,19.158455,0
                -102.974311,19.153741,0
                -102.979358,19.152413,0
                -102.978265,19.145777,0
                -102.978126,19.134802,0
                -102.976693,19.126369,0
                -102.977623,19.120061,0
                -102.980282,19.119849,0
                -102.983378,19.121398,0
                -102.990414,19.126471,0
                -102.999661,19.135302,0
                -103.00446,19.137571,0
                -103.008287,19.137756,0
                -103.009489,19.136369,0
                -103.014455,19.135572,0
                -103.016241,19.133593,0
                -103.019727,19.132371,0
                -103.020427,19.130494,0
                -103.02054,19.125048,0
                -103.018737,19.122772,0
                -103.016136,19.117077,0
                -103.016278,19.113111,0
                -103.01435,19.113,0
                -103.013563,19.110025,0
                -103.012023,19.109197,0
                -103.011948,19.107483,0
                -103.012715,19.10683,0
                -103.015194,19.105835,0
                -103.018389,19.105839,0
                -103.019455,19.103837,0
                -103.019141,19.101038,0
                -103.018202,19.100277,0
                -103.017597,19.097749,0
                -103.016006,19.079185,0
                -103.010343,19.074136,0
                -102.998778,19.061506,0
                -102.992415,19.057778,0
                -102.991085,19.05629,0
                -102.990835,19.053379,0
                -103.005337,19.052039,0
                -103.008546,19.050931,0
                -103.013789,19.050342,0
                -103.015647,19.048888,0
                -103.018873,19.051982,0
                -103.025214,19.053104,0
                -103.02729,19.047752,0
                -103.03044,19.036056,0
                -103.033078,19.034242,0
                -103.033766,19.030743,0
                -103.032771,19.029775,0
                -103.033242,19.029118,0
                -103.036344,19.028856,0
                -103.045031,19.032029,0
                -103.047925,19.032238,0
                -103.049574,19.033966,0
                -103.049997,19.035339,0
                -103.051566,19.035444,0
                -103.054852,19.033945,0
                -103.055788,19.031615,0
                -103.057078,19.031849,0
                -103.060073,19.02814,0
                -103.062253,19.028528,0
                -103.063239,19.027854,0
                -103.06473,19.024619,0
                -103.065992,19.024007,0
                -103.066699,19.022268,0
                -103.065405,19.015142,0
                -103.064284,19.013199,0
                -103.064887,19.009322,0
                -103.063773,19.005673,0
                -103.062014,19.003885,0
                -103.062075,19.002158,0
                -103.059256,19.000848,0
                -103.057572,19.001338,0
                -103.056397,19.000242,0
                -103.055121,19.000732,0
                -103.0525,18.998125,0
                -103.054003,18.997113,0
                -103.05717,18.998213,0
                -103.060414,18.996566,0
                -103.061631,18.997016,0
                -103.062216,18.995374,0
                -103.066226,18.996263,0
                -103.067556,18.99451,0
                -103.071081,18.993458,0
                -103.071744,18.992122,0
                -103.075465,18.992201,0
                -103.077645,18.989286,0
                -103.080951,18.988584,0
                -103.085361,18.984768,0
                -103.088109,18.984109,0
                -103.08929,18.982024,0
                -103.089106,18.981049,0
                -103.091788,18.978386,0
                -103.092169,18.97463,0
                -103.09283,18.973559,0
                -103.094229,18.974006,0
                -103.095907,18.968902,0
                -103.098137,18.96661,0
                -103.098026,18.964748,0
                -103.100215,18.962983,0
                -103.105189,18.961292,0
                -103.105689,18.958661,0
                -103.107741,18.956652,0
                -103.108235,18.951681,0
                -103.111438,18.949011,0
                -103.112248,18.947227,0
                -103.113986,18.946989,0
                -103.114376,18.944948,0
                -103.118059,18.94352,0
                -103.120925,18.939053,0
                -103.122518,18.938695,0
                -103.12363,18.937613,0
                -103.123818,18.936815,0
                -103.123013,18.935896,0
                -103.124275,18.933901,0
                -103.123566,18.932698,0
                -103.125019,18.930145,0
                -103.128593,18.931394,0
                -103.134454,18.931063,0
                -103.141526,18.9285,0
                -103.143888,18.928455,0
                -103.146483,18.926395,0
                -103.149633,18.925938,0
                -103.151012,18.926132,0
                -103.15627,18.929106,0
                -103.162368,18.93056,0
                -103.173364,18.936264,0
                -103.180824,18.944643,0
                -103.188598,18.954904,0
                -103.192628,18.958429,0
                -103.195275,18.95919,0
                -103.200448,18.962661,0
                -103.204472,18.967612,0
                -103.205022,18.969568,0
                -103.203323,18.974413,0
                -103.203215,18.978497,0
                -103.206909,18.98166,0
                -103.208357,18.98987,0
                -103.209265,18.990659,0
                -103.209934,18.992648,0
                -103.211398,18.993003,0
                -103.209343,18.994695,0
                -103.210197,18.99535,0
                -103.210552,18.997075,0
                -103.208928,19,0
                -103.209519,19.002987,0
                -103.211987,19.003569,0
                -103.21283,19.002803,0
                -103.213363,19.003897,0
                -103.217396,19.003532,0
                -103.217902,19.007015,0
                -103.220086,19.007689,0
                -103.221661,19.009453,0
                -103.222909,19.011674,0
                -103.224745,19.019275,0
                -103.223865,19.021531,0
                -103.223876,19.024101,0
                -103.229491,19.022714,0
                -103.230887,19.021258,0
                -103.231094,19.018274,0
                -103.232019,19.018006,0
                -103.234668,19.02006,0
                -103.235728,19.019099,0
                -103.235967,19.017026,0
                -103.239355,19.016003,0
                -103.240514,19.013981,0
                -103.243895,19.013582,0
                -103.246424,19.012098,0
                -103.24845,19.014542,0
                -103.252523,19.010713,0
                -103.254891,19.010718,0
                -103.257918,19.011745,0
                -103.258479,19.007146,0
                -103.259752,19.003697,0
                -103.263272,19.002626,0
                -103.266554,19.003371,0
                -103.270231,19.001158,0
                -103.271839,19.001717,0
                -103.273374,18.99868,0
                -103.275396,18.998452,0
                -103.27766,18.996933,0
                -103.281139,18.99961,0
                -103.282184,18.999703,0
                -103.284532,18.998376,0
                -103.287824,18.991837,0
                -103.28961,18.994469,0
                -103.291156,18.994341,0
                -103.291821,18.992963,0
                -103.295579,18.994218,0
                -103.299397,18.992906,0
                -103.302366,18.990226,0
                -103.302689,18.988717,0
                -103.304822,18.985794,0
                -103.312804,18.983061,0
                -103.332485,18.973251,0
                -103.335137,18.973594,0
                -103.340426,18.976861,0
                -103.344498,18.97815,0
                -103.352271,18.977751,0
                -103.355315,18.980226,0
                -103.35829,18.980013,0
                -103.36317,18.976622,0
                -103.366945,18.977596,0
                -103.373086,18.976851,0
                -103.377249,18.98017,0
                -103.384193,18.977788,0
                -103.386105,18.972569,0
                -103.388613,18.970973,0
                -103.391581,18.970736,0
                -103.392833,18.968191,0
                -103.395669,18.967254,0
                -103.399707,18.966359,0
                -103.403684,18.968383,0
                -103.407174,18.971527,0
                -103.407997,18.971334,0
                -103.410589,18.967963,0
                -103.411676,18.967778,0
                -103.413371,18.970229,0
                -103.413821,18.973053,0
                -103.416636,18.974816,0
                -103.416299,18.976505,0
                -103.41508,18.97729,0
                -103.415035,18.978436,0
                -103.415899,18.978864,0
                -103.418113,18.978158,0
                -103.419173,18.979487,0
                -103.419453,18.981251,0
                -103.422336,18.981632,0
                -103.426526,18.981045,0
                -103.430417,18.981845,0
                -103.432386,18.98296,0
                -103.434374,18.983205,0
                -103.436695,18.982396,0
                -103.441863,18.983532,0
                -103.445498,18.981952,0
                -103.450359,18.981643,0
                -103.454506,18.978502,0
                -103.457826,18.979296,0
                -103.460296,18.977114,0
                -103.463127,18.977021,0
                -103.463496,18.978393,0
                -103.466622,18.98234,0
                -103.468392,18.986933,0
                -103.470245,18.989011,0
                -103.472211,18.990966,0
                -103.47338,18.990879,0
                -103.474041,18.988974,0
                -103.471536,18.987912,0
                -103.472148,18.985085,0
                -103.473768,18.984339,0
                -103.4778,18.984103,0
                -103.478732,18.982236,0
                -103.478262,18.980174,0
                -103.479113,18.979348,0
                -103.483727,18.979786,0
                -103.481392,18.97542,0
                -103.481902,18.970379,0
                -103.482996,18.970005,0
                -103.48749,18.971623,0
                -103.486554,18.968162,0
                -103.488594,18.964889,0
                -103.488764,18.962144,0
                -103.491202,18.958356,0
                -103.49418,18.958122,0
                -103.497718,18.960654,0
                -103.508601,18.963671,0
                -103.509049,18.962108,0
                -103.507737,18.960015,0
                -103.506627,18.959363,0
                -103.504138,18.959382,0
                -103.502915,18.95779,0
                -103.50637,18.948226,0
                -103.508398,18.946721,0
                -103.510157,18.946262,0
                -103.513036,18.949596,0
                -103.519468,18.950226,0
                -103.522318,18.948516,0
                -103.522347,18.947038,0
                -103.520107,18.943067,0
                -103.518221,18.94219,0
                -103.514584,18.938594,0
                -103.513853,18.936407,0
                -103.514114,18.934932,0
                -103.515134,18.933955,0
                -103.519229,18.93291,0
                -103.522494,18.927928,0
                -103.523548,18.927199,0
                -103.527244,18.9281,0
                -103.532134,18.927705,0
                -103.53362,18.927036,0
                -103.534278,18.924581,0
                -103.533698,18.920846,0
                -103.528414,18.912317,0
                -103.529521,18.911517,0
                -103.530838,18.907286,0
                -103.532045,18.905435,0
                -103.53324,18.905218,0
                -103.536476,18.906879,0
                -103.53952,18.909403,0
                -103.541489,18.909665,0
                -103.550325,18.907846,0
                -103.552392,18.906153,0
                -103.558075,18.90658,0
                -103.559034,18.903863,0
                -103.559277,18.896521,0
                -103.561824,18.894182,0
                -103.566811,18.893586,0
                -103.568853,18.892519,0
                -103.568703,18.884437,0
                -103.570027,18.882152,0
                -103.57223,18.880219,0
                -103.572454,18.872171,0
                -103.573244,18.871328,0
                -103.574653,18.871622,0
                -103.577088,18.873557,0
                -103.578124,18.875272,0
                -103.580153,18.876074,0
                -103.582344,18.875625,0
                -103.583723,18.873907,0
                -103.583412,18.871356,0
                -103.584377,18.866156,0
                -103.585826,18.8655,0
                -103.587576,18.865847,0
                -103.589854,18.87078,0
                -103.58799,18.875281,0
                -103.589164,18.877041,0
                -103.597122,18.884367,0
                -103.60161,18.881301,0
                -103.605363,18.882953,0
                -103.607519,18.887135,0
                -103.609845,18.889296,0
                -103.614683,18.892164,0
                -103.619577,18.893242,0
                -103.620897,18.892627,0
                -103.623157,18.889436,0
                -103.625663,18.888413,0
                -103.626754,18.888755,0
                -103.63028,18.885325,0
                -103.631453,18.883184,0
                -103.632313,18.879304,0
                -103.640343,18.869537,0
                -103.640573,18.867937,0
                -103.639795,18.866091,0
                -103.637867,18.864531,0
                -103.634289,18.85922,0
                -103.628738,18.856033,0
                -103.624439,18.852658,0
                -103.618335,18.84544,0
                -103.617187,18.842851,0
                -103.617408,18.839695,0
                -103.621332,18.836723,0
                -103.6262,18.830974,0
                -103.625806,18.828106,0
                -103.620691,18.820352,0
                -103.620368,18.816509,0
                -103.621598,18.810096,0
                -103.619846,18.804235,0
                -103.620031,18.801383,0
                -103.628633,18.791816,0
                -103.634483,18.788552,0
                -103.637978,18.783208,0
                -103.645086,18.782327,0
                -103.650756,18.777936,0
                -103.653711,18.776542,0
                -103.658507,18.779198,0
                -103.661843,18.778952,0
                -103.664802,18.777872,0
                -103.669357,18.774467,0
                -103.674205,18.773336,0
                -103.679017,18.773211,0
                -103.68067,18.772131,0
                -103.683027,18.766903,0
                -103.684732,18.762311,0
                -103.685438,18.757293,0
                -103.689543,18.754532,0
                -103.697571,18.755923,0
                -103.700303,18.754356,0
                -103.702443,18.751242,0
                -103.703168,18.748494,0
                -103.702853,18.74286,0
                -103.703646,18.738959,0
                -103.708588,18.729882,0
                -103.712717,18.726354,0
                -103.715993,18.718877,0
                -103.717242,18.713208,0
                -103.71893,18.710431,0
                -103.723726,18.709167,0
                -103.725689,18.707677,0
                -103.727601,18.70164,0
                -103.72875,18.700139,0
                -103.730147,18.698792,0
                -103.734498,18.697197,0
                -103.737982,18.694074,0
                -103.738127,18.692961,0
                -103.736521,18.688309,0
                -103.737765,18.684156,0
                -103.729794,18.680537,0
                -103.722719,18.675746,0
                -103.71494,18.668347,0
                -103.70306,18.655327,0
                -103.696861,18.647348,0
                -103.689466,18.636223,0
                -103.686947,18.631034,0
                -103.685195,18.624284,0
                -103.68562,18.624462,0
                -103.686375,18.624006,0
                -103.687086,18.622924,0
                -103.686804,18.62191,0
                -103.689532,18.621812,0
                -103.69005,18.620691,0
                -103.689221,18.620166,0
                -103.68976,18.619532,0
                -103.688812,18.618562,0
                -103.689245,18.614273,0
                -103.69039,18.612321,0
                -103.692524,18.612319,0
                -103.693736,18.610912,0
                -103.695184,18.610838,0
                -103.695953,18.610287,0
                -103.695544,18.610111,0
                -103.69681,18.609854,0
                -103.696308,18.609444,0
                -103.696237,18.608543,0
                -103.696877,18.608467,0
                -103.696385,18.607529,0
                -103.698905,18.602245,0
                -103.700788,18.601207,0
                -103.705782,18.60229,0
                -103.705458,18.601242,0
                -103.706969,18.599695,0
                -103.706211,18.599242,0
                -103.706456,18.598453,0
                -103.708939,18.598134,0
                -103.710301,18.596938,0
                -103.711884,18.597006,0
                -103.710034,18.596604,0
                -103.710321,18.595821,0
                -103.708745,18.593849,0
                -103.709222,18.593707,0
                -103.707548,18.593025,0
                -103.705936,18.590282,0
                -103.703349,18.590315,0
                -103.700915,18.593253,0
                -103.694859,18.592016,0
                -103.688471,18.590036,0
                -103.669896,18.579255,0
                -103.662636,18.573244,0
                -103.662169,18.572749,0
                -103.662709,18.571835,0
                -103.661354,18.57172,0
                -103.661228,18.570407,0
                -103.659925,18.570124,0
                -103.657793,18.568446,0
                -103.657632,18.56629,0
                -103.656911,18.565535,0
                -103.657605,18.564692,0
                -103.656626,18.564691,0
                -103.656933,18.563548,0
                -103.655862,18.563045,0
                -103.653386,18.564192,0
                -103.651737,18.562831,0
                -103.649526,18.56212,0
                -103.648186,18.560605,0
                -103.645627,18.560492,0
                -103.644808,18.559479,0
                -103.642662,18.55885,0
                -103.636201,18.554584,0
                -103.629751,18.549864,0
                -103.626872,18.546978,0
                -103.625805,18.546872,0
                -103.598328,18.521758,0
                -103.583091,18.505906,0
                -103.576148,18.49565,0
                -103.575526,18.493782,0
                -103.57642,18.492467,0
                -103.575621,18.490706,0
                -103.576076,18.489142,0
                -103.574117,18.488387,0
                -103.573715,18.484746,0
                -103.566237,18.475546,0
                -103.561172,18.46664,0
                -103.55993,18.460863,0
                -103.561306,18.457282,0
                -103.561144,18.455395,0
                -103.556079,18.451576,0
                -103.545856,18.438397,0
                -103.545089,18.436255,0
                -103.543617,18.435565,0
                -103.540789,18.430804,0
                -103.54102,18.4286,0
                -103.53992,18.4268,0
                -103.540051,18.424964,0
                -103.538006,18.422028,0
                -103.537994,18.419305,0
                -103.53407,18.414493,0
                -103.529303,18.404915,0
                -103.529197,18.402938,0
                -103.530166,18.401841,0
                -103.529261,18.400974,0
                -103.529076,18.397222,0
                -103.528327,18.39639,0
                -103.528642,18.394972,0
                -103.527571,18.393112,0
                -103.528936,18.388942,0
                -103.52862,18.38802,0
                -103.529434,18.386149,0
                -103.528987,18.385275,0
                -103.52973,18.383177,0
                -103.527321,18.381876,0
                -103.526651,18.380297,0
                -103.527092,18.379386,0
                -103.525583,18.377993,0
                -103.525245,18.376457,0
                -103.523685,18.376094,0
                -103.521122,18.374042,0
                -103.520761,18.372483,0
                -103.522021,18.370752,0
                -103.521391,18.370785,0
                -103.521286,18.369988,0
                -103.520215,18.370404,0
                -103.519381,18.369321,0
                -103.518569,18.369643,0
                -103.517361,18.368922,0
                -103.516844,18.367766,0
                -103.517365,18.366203,0
                -103.515775,18.366894,0
                -103.51483,18.364061,0
                -103.513517,18.362541,0
                -103.5136,18.360407,0
                -103.512782,18.358538,0
                -103.513068,18.354519,0
                -103.514552,18.352648,0
                -103.512363,18.352392,0
                -103.512555,18.351957,0
                -103.509687,18.348997,0
                -103.510087,18.347385,0
                -103.510873,18.346958,0
                -103.510806,18.347641,0
                -103.511334,18.34775,0
                -103.512327,18.347067,0
                -103.512272,18.346373,0
                -103.50991,18.346385,0
                -103.510807,18.344287,0
                -103.507697,18.343941,0
                -103.507379,18.343468,0
                -103.508252,18.342313,0
                -103.507376,18.342394,0
                -103.50743,18.34165,0
                -103.507032,18.342194,0
                -103.506763,18.341494,0
                -103.506195,18.341864,0
                -103.505409,18.339932,0
                -103.502307,18.340402,0
                -103.501602,18.339441,0
                -103.502438,18.33887,0
                -103.50187,18.338522,0
                -103.501001,18.339468,0
                -103.499566,18.339106,0
                -103.499431,18.339578,0
                -103.494543,18.336331,0
                -103.492149,18.333103,0
                -103.491825,18.331351,0
                -103.492328,18.329618,0
                -103.491648,18.32926,0
                -103.485102,18.328236,0
                -103.48222,18.32698,0
                -103.48042,18.325017,0
                -103.476958,18.322759,0
                -103.470189,18.320767,0
                -103.456688,18.315294,0
                -103.449243,18.311494,0
                -103.414732,18.296903,0
                -103.409908,18.293667,0
                -103.409367,18.292635,0
                -103.409897,18.292192,0
                -103.409435,18.292279,0
                -103.409639,18.291306,0
                -103.408954,18.290712,0
                -103.408058,18.290813,0
                -103.407538,18.29203,0
                -103.405449,18.291613,0
                -103.404101,18.290576,0
                -103.402961,18.288299,0
                -103.404349,18.287076,0
                -103.403782,18.286383,0
                -103.40154,18.288921,0
                -103.39754,18.289612,0
                -103.395863,18.288375,0
                -103.397401,18.286425,0
                -103.396778,18.286536,0
                -103.396327,18.285587,0
                -103.396882,18.283249,0
                -103.396534,18.283373,0
                -103.396423,18.283812,0
                -103.395711,18.283536,0
                -103.396026,18.284159,0
                -103.394617,18.285201,0
                -103.393326,18.285118,0
                -103.393566,18.284159,0
                -103.392191,18.284596,0
                -103.392095,18.285227,0
                -103.392926,18.284883,0
                -103.392107,18.285519,0
                -103.389521,18.28554,0
                -103.389533,18.282634,0
                -103.388306,18.28217,0
                -103.388524,18.279698,0
                -103.384517,18.281189,0
                -103.383833,18.280614,0
                -103.383213,18.28135,0
                -103.382509,18.280018,0
                -103.381574,18.280326,0
                -103.381407,18.281175,0
                -103.381182,18.280326,0
                -103.379753,18.280046,0
                -103.379842,18.279432,0
                -103.379296,18.280306,0
                -103.37987,18.2806,0
                -103.37902,18.281769,0
                -103.378431,18.282249,0
                -103.377635,18.281878,0
                -103.376325,18.280504,0
                -103.373969,18.279846,0
                -103.374189,18.278585,0
                -103.373189,18.278885,0
                -103.371438,18.277114,0
                -103.372357,18.274394,0
                -103.37337,18.273456,0
                -103.372173,18.270469,0
                -103.371071,18.273367,0
                -103.370168,18.273308,0
                -103.368906,18.271898,0
                -103.368079,18.272338,0
                -103.367912,18.269005,0
                -103.367307,18.269254,0
                -103.366955,18.268739,0
                -103.365259,18.26986,0
                -103.363972,18.269228,0
                -103.364049,18.267576,0
                -103.361876,18.26497,0
                -103.358601,18.265892,0
                -103.35756,18.265036,0
                -103.35598,18.26644,0
                -103.355684,18.267629,0
                -103.353039,18.268234,0
                -103.348591,18.267603,0
                -103.34579,18.270407,0
                -103.343692,18.271252,0
                -103.33844,18.270695,0
                -103.328919,18.267271,0
                -103.320176,18.262121,0
                -103.318193,18.262489,0
                -103.317096,18.261724,0
                -103.313881,18.261188,0
                -103.312442,18.262073,0
                -103.307991,18.260691,0
                -103.297516,18.255343,0
                -103.296415,18.253794,0
                -103.295934,18.24966,0
                -103.293219,18.249284,0
                -103.292217,18.247763,0
                -103.289143,18.247796,0
                -103.283763,18.246322,0
                -103.259318,18.238245,0
                -103.254173,18.235898,0
                -103.24521,18.233878,0
                -103.236787,18.233279,0
                -103.234355,18.232158,0
                -103.233676,18.230516,0
                -103.232887,18.231571,0
                -103.23256,18.231022,0
                -103.230878,18.230863,0
                -103.228228,18.233161,0
                -103.227055,18.233294,0
                -103.227062,18.232519,0
                -103.226073,18.232309,0
                -103.226177,18.23386,0
                -103.222276,18.233021,0
                -103.222285,18.232159,0
                -103.220164,18.233747,0
                -103.219081,18.233852,0
                -103.216109,18.232329,0
                -103.215539,18.23313,0
                -103.210518,18.231923,0
                -103.205074,18.229002,0
                -103.204146,18.225721,0
                -103.202428,18.226221,0
                -103.204348,18.221985,0
                -103.203149,18.221744,0
                -103.202348,18.223545,0
                -103.199606,18.224208,0
                -103.198081,18.223333,0
                -103.196566,18.22438,0
                -103.193564,18.22395,0
                -103.191241,18.221891,0
                -103.190003,18.222568,0
                -103.185408,18.221921,0
                -103.183737,18.220479,0
                -103.183945,18.219334,0
                -103.182254,18.220104,0
                -103.182082,18.219357,0
                -103.180817,18.219718,0
                -103.17916,18.219221,0
                -103.178469,18.217225,0
                -103.175319,18.216854,0
                -103.174995,18.215815,0
                -103.171876,18.215855,0
                -103.171285,18.215565,0
                -103.171183,18.213917,0
                -103.170354,18.213511,0
                -103.167674,18.213713,0
                -103.167204,18.213197,0
                -103.16865,18.211335,0
                -103.167763,18.210815,0
                -103.166084,18.212049,0
                -103.163598,18.210776,0
                -103.160968,18.211155,0
                -103.157757,18.210411,0
                -103.156064,18.209706,0
                -103.154453,18.208029,0
                -103.153201,18.207778,0
                -103.15294,18.20685,0
                -103.148203,18.205833,0
                -103.147345,18.204523,0
                -103.145354,18.203762,0
                -103.14551,18.201785,0
                -103.146608,18.201222,0
                -103.145828,18.200173,0
                -103.144791,18.200137,0
                -103.143878,18.201352,0
                -103.142163,18.201309,0
                -103.141786,18.20068,0
                -103.140008,18.201393,0
                -103.139112,18.200863,0
                -103.138396,18.201637,0
                -103.134713,18.201549,0
                -103.131299,18.203579,0
                -103.131263,18.204334,0
                -103.128748,18.204961,0
                -103.123487,18.204597,0
                -103.11837,18.203245,0
                -103.115141,18.201651,0
                -103.113044,18.199242,0
                -103.112675,18.197217,0
                -103.114054,18.196205,0
                -103.113161,18.194394,0
                -103.114823,18.193593,0
                -103.11467,18.193161,0
                -103.113631,18.193429,0
                -103.111617,18.190953,0
                -103.111503,18.191584,0
                -103.108636,18.191911,0
                -103.108678,18.190341,0
                -103.1082,18.190387,0
                -103.108107,18.191526,0
                -103.106002,18.191782,0
                -103.103575,18.190774,0
                -103.103121,18.191124,0
                -103.100764,18.189276,0
                -103.100721,18.190005,0
                -103.099342,18.189855,0
                -103.099701,18.191445,0
                -103.098066,18.19153,0
                -103.097367,18.192359,0
                -103.095614,18.192798,0
                -103.094528,18.192341,0
                -103.092216,18.192865,0
                -103.083071,18.191634,0
                -103.071949,18.192035,0
                -103.072371,18.189951,0
                -103.071818,18.189449,0
                -103.070985,18.190778,0
                -103.069809,18.189589,0
                -103.066918,18.191145,0
                -103.067139,18.192636,0
                -103.066568,18.193326,0
                -103.062917,18.194462,0
                -103.058881,18.193721,0
                -103.057509,18.192895,0
                -103.057045,18.192304,0
                -103.057796,18.190769,0
                -103.056919,18.191318,0
                -103.055982,18.190686,0
                -103.056705,18.190181,0
                -103.056941,18.189463,0
                -103.05648,18.189339,0
                -103.053995,18.190386,0
                -103.052169,18.190098,0
                -103.050106,18.188624,0
                -103.047981,18.188878,0
                -103.043598,18.187323,0
                -103.038395,18.188964,0
                -103.034751,18.188955,0
                -103.031198,18.188091,0
                -103.018294,18.182222,0
                -103.017426,18.181669,0
                -103.016063,18.178971,0
                -103.013773,18.177241,0
                -103.00577,18.177246,0
                -102.992745,18.174124,0
                -102.985646,18.171595,0
                -102.974659,18.165511,0
                -102.972019,18.163396,0
                -102.968618,18.163159,0
                -102.956354,18.158274,0
                -102.866732,18.118151,0
                -102.825578,18.101311,0
                -102.806135,18.091672,0
                -102.793835,18.088314,0
                -102.792205,18.087592,0
                -102.790965,18.085766,0
                -102.788893,18.085054,0
                -102.787288,18.082913,0
                -102.772249,18.080597,0
                -102.763253,18.07785,0
                -102.761389,18.075964,0
                -102.762047,18.073815,0
                -102.761281,18.074591,0
                -102.760632,18.07408,0
                -102.760828,18.073019,0
                -102.760362,18.073922,0
                -102.759565,18.073563,0
                -102.760041,18.071974,0
                -102.759314,18.072611,0
                -102.759786,18.07014,0
                -102.759134,18.069876,0
                -102.758166,18.071867,0
                -102.755734,18.072907,0
                -102.753276,18.071816,0
                -102.752873,18.070912,0
                -102.75132,18.071711,0
                -102.752588,18.072924,0
                -102.752059,18.073958,0
                -102.750181,18.074934,0
                -102.746683,18.074657,0
                -102.744024,18.073135,0
                -102.743784,18.072508,0
                -102.745513,18.070366,0
                -102.743606,18.07101,0
                -102.743037,18.070342,0
                -102.744203,18.068823,0
                -102.743876,18.067317,0
                -102.742766,18.067459,0
                -102.742299,18.068338,0
                -102.74196,18.067572,0
                -102.741244,18.068224,0
                -102.740668,18.070278,0
                -102.739829,18.070471,0
                -102.739904,18.072249,0
                -102.73825,18.072777,0
                -102.729569,18.071776,0
                -102.726788,18.070183,0
                -102.724569,18.070339,0
                -102.720008,18.068107,0
                -102.718582,18.066578,0
                -102.71872,18.061557,0
                -102.7174,18.061406,0
                -102.715888,18.062191,0
                -102.71476,18.060644,0
                -102.712842,18.0595,0
                -102.709833,18.059443,0
                -102.708402,18.058431,0
                -102.706984,18.059388,0
                -102.70631,18.058728,0
                -102.704985,18.058795,0
                -102.704244,18.057426,0
                -102.703992,18.058506,0
                -102.702895,18.05889,0
                -102.701197,18.057239,0
                -102.699936,18.057518,0
                -102.698967,18.056554,0
                -102.698967,18.055705,0
                -102.697507,18.055171,0
                -102.695745,18.05672,0
                -102.694865,18.056467,0
                -102.694161,18.055205,0
                -102.69164,18.055442,0
                -102.691073,18.055742,0
                -102.691189,18.057243,0
                -102.689844,18.057639,0
                -102.689817,18.058604,0
                -102.68816,18.059847,0
                -102.686008,18.059748,0
                -102.684784,18.058786,0
                -102.683223,18.059712,0
                -102.682149,18.058732,0
                -102.679718,18.058363,0
                -102.679691,18.057618,0
                -102.678654,18.05729,0
                -102.677858,18.057357,0
                -102.676357,18.059309,0
                -102.674088,18.059601,0
                -102.662766,18.056403,0
                -102.661587,18.055457,0
                -102.657202,18.054795,0
                -102.656321,18.054384,0
                -102.656521,18.053446,0
                -102.655922,18.052744,0
                -102.65434,18.051942,0
                -102.654232,18.051157,0
                -102.653436,18.051237,0
                -102.653352,18.050429,0
                -102.652279,18.050305,0
                -102.650528,18.051582,0
                -102.649737,18.051191,0
                -102.649986,18.049918,0
                -102.647897,18.050408,0
                -102.646708,18.051792,0
                -102.645983,18.051594,0
                -102.645928,18.052798,0
                -102.645155,18.052878,0
                -102.643975,18.051744,0
                -102.641854,18.052681,0
                -102.639213,18.052268,0
                -102.637404,18.051321,0
                -102.637252,18.050095,0
                -102.636918,18.050427,0
                -102.636227,18.049634,0
                -102.635759,18.049651,0
                -102.636027,18.050422,0
                -102.634892,18.050894,0
                -102.6344,18.049702,0
                -102.633466,18.049534,0
                -102.633315,18.050271,0
                -102.630349,18.051778,0
                -102.628143,18.050385,0
                -102.627114,18.05154,0
                -102.624506,18.0512,0
                -102.622997,18.049852,0
                -102.62137,18.050379,0
                -102.618117,18.04792,0
                -102.617267,18.048142,0
                -102.616855,18.047376,0
                -102.616165,18.048107,0
                -102.615449,18.047471,0
                -102.614525,18.048221,0
                -102.614112,18.047634,0
                -102.612167,18.047654,0
                -102.611625,18.047983,0
                -102.611752,18.048872,0
                -102.609721,18.04888,0
                -102.590343,18.043342,0
                -102.570727,18.036568,0
                -102.558376,18.033051,0
                -102.548413,18.032017,0
                -102.534166,18.02839,0
                -102.533125,18.026991,0
                -102.530918,18.027477,0
                -102.528293,18.027053,0
                -102.527118,18.025774,0
                -102.526156,18.026455,0
                -102.524082,18.025943,0
                -102.523216,18.02423,0
                -102.520776,18.024044,0
                -102.519593,18.02181,0
                -102.517981,18.022906,0
                -102.516569,18.022965,0
                -102.514812,18.021866,0
                -102.510165,18.022339,0
                -102.508662,18.02125,0
                -102.504982,18.021206,0
                -102.502089,18.020233,0
                -102.499801,18.021397,0
                -102.496363,18.021493,0
                -102.483796,18.018741,0
                -102.45457,18.010434,0
                -102.384168,17.988777,0
                -102.310149,17.96984,0
                -102.260938,17.950862,0
                -102.218218,17.927484,0
                -102.206585,17.923099,0
                -102.192726,17.91585,0
                -102.187889,17.915008,0
                -102.18258,17.914989,0
                -102.178119,17.916677,0
                -102.168639,17.921759,0
                -102.165247,17.922829,0
                -102.164037,17.922203,0
                -102.162923,17.925756,0
                -102.164419,17.926831,0
                -102.163876,17.927726,0
                -102.15586,17.930128,0
                -102.155643,17.931147,0
                -102.147428,17.934216,0
                -102.141852,17.935164,0
                -102.139758,17.936213,0
                -102.136981,17.93892,0
                -102.136828,17.94003,0
                -102.138451,17.940474,0
                -102.138587,17.94104,0
                -102.137826,17.94851,0
                -102.134023,17.949504,0
                -102.132989,17.950836,0
                -102.136068,17.955774,0
                -102.136555,17.957873,0
                -102.136119,17.961689,0
                -102.137552,17.969684,0
                -102.143172,17.974196,0
                -102.145928,17.975702,0
                -102.155137,17.978249,0
                -102.173275,17.989637,0
                -102.18016,17.998901,0
                -102.180898,18.00084,0
                -102.184351,18.026388,0
                -102.183225,18.032984,0
                -102.179607,18.036058,0
                -102.178411,18.037852,0
                -102.181187,18.052215,0
                -102.183821,18.057076,0
                -102.184345,18.059487,0
                -102.183054,18.064231,0
                -102.178445,18.073728,0
                -102.178123,18.076825,0
                -102.179778,18.088789,0
                -102.177845,18.098403,0
                -102.175199,18.106692,0
                -102.174451,18.114368,0
                -102.174816,18.115584,0
                -102.177999,18.11742,0
                -102.178711,18.120341,0
                -102.178275,18.122923,0
                -102.174834,18.129162,0
                -102.167208,18.135742,0
                -102.163211,18.144777,0
                -102.161541,18.155544,0
                -102.161818,18.164148,0
                -102.16088,18.165417,0
                -102.158827,18.166551,0
                -102.154954,18.166724,0
                -102.150641,18.169881,0
                -102.149217,18.172297,0
                -102.148123,18.177487,0
                -102.145614,18.183144,0
                -102.142455,18.187055,0
                -102.139755,18.188381,0
                -102.131149,18.188866,0
                -102.125682,18.186665,0
                -102.11973,18.186365,0
                -102.110427,18.190581,0
                -102.104835,18.191583,0
                -102.099961,18.193615,0
                -102.094146,18.194901,0
                -102.08744,18.195317,0
                -102.083305,18.194377,0
                -102.072375,18.193452,0
                -102.067568,18.194632,0
                -102.056154,18.195464,0
                -102.047716,18.200138,0
                -102.042329,18.206512,0
                -102.038677,18.208196,0
                -102.030801,18.208459,0
                -102.021983,18.202861,0
                -102.019055,18.202116,0
                -102.010547,18.204844,0
                -102.004556,18.203001,0
                -101.99985,18.202498,0
                -101.994687,18.204196,0
                -101.98784,18.204844,0
                -101.978149,18.20731,0
                -101.975124,18.209067,0
                -101.973732,18.212015,0
                -101.977475,18.224192,0
                -101.977786,18.227153,0
                -101.976726,18.229541,0
                -101.973409,18.232307,0
                -101.969704,18.233107,0
                -101.960976,18.230135,0
                -101.950627,18.227829,0
                -101.947711,18.228214,0
                -101.936876,18.232632,0
                -101.927973,18.231611,0
                -101.926093,18.232921,0
                -101.923892,18.236834,0
                -101.920116,18.240693,0
                -101.916706,18.24185,0
                -101.910892,18.242123,0
                -101.906647,18.244808,0
                -101.904564,18.247905,0
                -101.905095,18.2548,0
                -101.907123,18.261185,0
                -101.900242,18.270241,0
                -101.898788,18.274517,0
                -101.896819,18.277115,0
                -101.893912,18.275245,0
                -101.890844,18.269381,0
                -101.883039,18.262424,0
                -101.877036,18.260686,0
                -101.870529,18.259682,0
                -101.863731,18.261187,0
                -101.862461,18.263521,0
                -101.862864,18.265734,0
                -101.876063,18.270787,0
                -101.88197,18.275782,0
                -101.882927,18.277894,0
                -101.882435,18.279332,0
                -101.881325,18.280234,0
                -101.878289,18.281391,0
                -101.873868,18.281961,0
                -101.864786,18.285748,0
                -101.861979,18.288449,0
                -101.862549,18.290902,0
                -101.866029,18.293664,0
                -101.867101,18.295649,0
                -101.869222,18.302104,0
                -101.870198,18.308323,0
                -101.869384,18.31001,0
                -101.867245,18.311396,0
                -101.857257,18.312332,0
                -101.855951,18.313718,0
                -101.855831,18.314953,0
                -101.861063,18.322502,0
                -101.86824,18.327094,0
                -101.870801,18.331767,0
                -101.870009,18.333517,0
                -101.86396,18.337866,0
                -101.862427,18.341012,0
                -101.861264,18.351205,0
                -101.861385,18.355754,0
                -101.861894,18.357182,0
                -101.874054,18.368346,0
                -101.874754,18.37106,0
                -101.871716,18.375329,0
                -101.871254,18.377134,0
                -101.871636,18.380874,0
                -101.873034,18.384297,0
                -101.884904,18.393899,0
                -101.887502,18.396666,0
                -101.889316,18.400473,0
                -101.889147,18.404379,0
                -101.886979,18.412099,0
                -101.878191,18.424627,0
                -101.87513,18.435212,0
                -101.873759,18.437486,0
                -101.860442,18.446185,0
                -101.860441,18.447378,0
                -101.861455,18.448832,0
                -101.870099,18.45703,0
                -101.880995,18.471286,0
                -101.8849,18.474951,0
                -101.88654,18.477223,0
                -101.888276,18.483442,0
                -101.887888,18.491571,0
                -101.888954,18.499017,0
                -101.888101,18.503876,0
                -101.886208,18.509283,0
                -101.881626,18.536205,0
                -101.879509,18.539252,0
                -101.877398,18.54083,0
                -101.868559,18.545721,0
                -101.859283,18.552895,0
                -101.85595,18.559488,0
                -101.861213,18.561961,0
                -101.867974,18.568762,0
                -101.876446,18.618444,0
                -101.879961,18.624223,0
                -101.919545,18.633635,0
                -101.920443,18.634915,0
                -101.923498,18.63574,0
                -101.925253,18.637338,0
                -101.926715,18.635187,0
                -101.928726,18.635976,0
                -101.929864,18.637381,0
                -101.93488,18.637345,0
                -101.935517,18.636674,0
                -101.936088,18.637953,0
                -101.935271,18.639822,0
                -101.933622,18.639952,0
                -101.934022,18.642062,0
                -101.93676,18.643145,0
                -101.939994,18.646775,0
                -101.941716,18.650333,0
                -101.943037,18.650569,0
                -101.945886,18.653221,0
                -101.949233,18.654378,0
                -101.95125,18.65594,0
                -101.955477,18.656941,0
                -101.957179,18.656835,0
                -101.959251,18.655666,0
                -101.959613,18.653502,0
                -101.963147,18.652556,0
                -101.964388,18.650898,0
                -101.968493,18.65055,0
                -101.968783,18.648745,0
                -101.972919,18.646608,0
                -101.974809,18.646193,0
                -101.975047,18.647052,0
                -101.976478,18.647658,0
                -101.97855,18.647323,0
                -101.98145,18.644843,0
                -101.982046,18.645298,0
                -101.983681,18.643181,0
                -101.983588,18.642319,0
                -101.985912,18.641427,0
                -101.986788,18.641537,0
                -101.987241,18.643424,0
                -101.989014,18.644566,0
                -101.989565,18.643342,0
                -101.993282,18.641896,0
                -101.995746,18.642559,0
                -101.997199,18.641867,0
                -101.998862,18.644186,0
                -102.002706,18.643122,0
                -102.008223,18.640533,0
                -102.012291,18.63398,0
                -102.020362,18.63022,0
                -102.031868,18.625943,0
                -102.050605,18.640231,0
                -102.05953,18.642103,0
                -102.060362,18.643152,0
                -102.063467,18.644081,0
                -102.067323,18.648788,0
                -102.073042,18.654132,0
                -102.079532,18.656718,0
                -102.081059,18.658136,0
                -102.081501,18.66005,0
                -102.085536,18.665387,0
                -102.092085,18.682966,0
                -102.095618,18.687583,0
                -102.097482,18.687643,0
                -102.1011,18.685205,0
                -102.103061,18.684761,0
                -102.104464,18.682928,0
                -102.105768,18.683377,0
                -102.108121,18.682592,0
                -102.10885,18.681612,0
                -102.110523,18.681341,0
                -102.11103,18.680167,0
                -102.117002,18.679264,0
                -102.118956,18.679571,0
                -102.123118,18.677252,0
                -102.124463,18.678525,0
                -102.126222,18.67817,0
                -102.126817,18.679437,0
                -102.128447,18.677568,0
                -102.13129,18.677403,0
                -102.133615,18.679741,0
                -102.134025,18.682222,0
                -102.134571,18.682588,0
                -102.136467,18.68251,0
                -102.136413,18.681399,0
                -102.138299,18.680244,0
                -102.13787,18.679521,0
                -102.141091,18.680536,0
                -102.142187,18.67963,0
                -102.143302,18.679702,0
                -102.143863,18.677757,0
                -102.144502,18.677448,0
                -102.146062,18.679794,0
                -102.146164,18.682374,0
                -102.149724,18.683081,0
                -102.151006,18.684542,0
                -102.152947,18.683818,0
                -102.153978,18.685044,0
                -102.155332,18.684624,0
                -102.157575,18.685097,0
                -102.159174,18.683251,0
                -102.160696,18.685485,0
                -102.162886,18.685272,0
                -102.162826,18.68383,0
                -102.165565,18.682764,0
                -102.17018,18.683022,0
                -102.171484,18.682438,0
                -102.174411,18.682927,0
                -102.177999,18.682422,0
                -102.181594,18.67871,0
              </coordinates>
            </LinearRing>
          </outerBoundaryIs>
          <innerBoundaryIs>
            <LinearRing>
              <tessellate>1</tessellate>
              <coordinates>
                -102.673194,19.06112,0
                -102.673287,19.060748,0
                -102.673154,19.061063,0
                -102.673194,19.06112,0
              </coordinates>
            </LinearRing>
          </innerBoundaryIs>
          <innerBoundaryIs>
            <LinearRing>
              <tessellate>1</tessellate>
              <coordinates>
                -102.678339,19.063696,0
                -102.676062,19.06358,0
                -102.674698,19.063267,0
                -102.674876,19.063521,0
                -102.678258,19.063786,0
                -102.678339,19.063696,0
              </coordinates>
            </LinearRing>
          </innerBoundaryIs>
        </Polygon>
      </Placemark>
    </Folder>
  </Document>
</kml>




`;
}
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址