WME WV MapRaid Overlay

Adds a WV MapRaid area overlay.

目前为 2017-01-03 提交的版本。查看 最新版本

// ==UserScript==
// @name         WME WV MapRaid Overlay
// @namespace    https://greasyfork.org/users/45389
// @version      0.3
// @description  Adds a WV MapRaid area overlay.
// @author       MapOMatic
// @include      https://beta.waze.com/*editor/*
// @include      https://www.waze.com/*editor/*
// @exclude      https://www.waze.com/*user/editor/*
// @license      MIT/BSD/X11
// ==/UserScript==

(function() {
    'use strict';

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

    // Enter the MapRaid area names and the desired fill colors, in order they appear in the original map legend:
    var _areas = {
        'WV-1':{fillColor:'#4389f0'},
        'WV-2':{fillColor:'#e04439'},
        'WV-3':{fillColor:'#67b24c'},
        'WV-4':{fillColor:'#9d64ac'},
        'WV-5':{fillColor:'#f79e2d'}
    };

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

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

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

    function GetFeaturesFromKMLString(strKML) {
        var format = new OpenLayers.Format.KML({
            'internalProjection': Waze.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);
            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;'}).css({color:color});
                    var $span = $('<span>').css({display:'inline-block'});
                    $span.text('MapRaid Area: ' + text).appendTo($div);
                    $('.location-info-region').parent().append($div);
                    if (color) {
                        break;
                    }
                }
            }
        }
    }


    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;
            i++;
        }
        var layerStyle = new OpenLayers.StyleMap({
            strokeDashstyle: 'solid',
            strokeColor: '#ff0000',
            strokeOpacity: 0.4,
            strokeWidth: 2,
            fillOpacity: 0.3,
            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();
    }

    function awaitLogin(e) {
        if (e && e.user === null) {
            return;
        }
        if (typeof Waze === 'undefined' ||
            typeof Waze.loginManager === 'undefined') {
            setTimeout(awaitLogin, 100);
            return;
        }
        if (!Waze.loginManager.hasUser()) {
            Waze.loginManager.events.register("login", null, awaitLogin);
            Waze.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>West Virginia</name>
		<description><![CDATA[]]></description>
		<Folder>
			<name>WV-1</name>
			<Placemark>
				<name></name>
				<styleUrl>#poly-4186F0-3-66-nodesc</styleUrl>
				<Polygon>
					<outerBoundaryIs>
						<LinearRing>
							<tessellate>1</tessellate>
							<coordinates>-79.391518,39.5994981,0.0 -79.5375707,38.2880639,0.0 -77.53643,39.25614,0.0 -77.9232741,39.7167,0.0 -79.391518,39.5994981,0.0</coordinates>
						</LinearRing>
					</outerBoundaryIs>
				</Polygon>
			</Placemark>
		</Folder>
		<Folder>
			<name>WV-2</name>
			<Placemark>
				<name></name>
				<styleUrl>#poly-EE9C96-3-77-nodesc</styleUrl>
				<Polygon>
					<outerBoundaryIs>
						<LinearRing>
							<tessellate>1</tessellate>
							<coordinates>-82.0265541,39.0442697,0.0 -79.4182085,39.0632223,0.0 -79.4715303,39.7247584,0.0 -80.5100263,39.7277242,0.0 -80.5115329,40.645567,0.0 -80.6612979,40.6181772,0.0 -80.8988941,39.7670166,0.0 -82.0265541,39.0442697,0.0</coordinates>
						</LinearRing>
					</outerBoundaryIs>
				</Polygon>
			</Placemark>
		</Folder>
		<Folder>
			<name>WV-3</name>
			<Placemark>
				<name></name>
				<styleUrl>#poly-62AF44-1-77-nodesc</styleUrl>
				<Polygon>
					<outerBoundaryIs>
						<LinearRing>
							<tessellate>1</tessellate>
							<coordinates>-79.4182085,39.0632223,0.0 -82.1282959,39.0490522,0.0 -82.3313789,38.4892679,0.0 -79.4833696,38.4781936,0.0 -79.4182085,39.0632223,0.0</coordinates>
						</LinearRing>
					</outerBoundaryIs>
				</Polygon>
			</Placemark>
		</Folder>
		<Folder>
			<name>WV-4</name>
			<Placemark>
				<name></name>
				<styleUrl>#poly-C6A4CF-2-102-nodesc</styleUrl>
				<Polygon>
					<outerBoundaryIs>
						<LinearRing>
							<tessellate>1</tessellate>
							<coordinates>-79.9990264,37.9506139,0.0 -79.6079636,38.492563,0.0 -82.6851654,38.50143,0.0 -82.6208923,37.9405795,0.0 -79.9990264,37.9506139,0.0</coordinates>
						</LinearRing>
					</outerBoundaryIs>
				</Polygon>
			</Placemark>
		</Folder>
		<Folder>
			<name>WV-5</name>
			<Placemark>
				<name></name>
				<styleUrl>#poly-F8971B-1-77-nodesc</styleUrl>
				<Polygon>
					<outerBoundaryIs>
						<LinearRing>
							<tessellate>1</tessellate>
							<coordinates>-82.5494812,37.9459946,0.0 -81.9133053,37.1943254,0.0 -80.4674181,37.2139782,0.0 -80.0087702,37.9565514,0.0 -82.5494812,37.9459946,0.0</coordinates>
						</LinearRing>
					</outerBoundaryIs>
				</Polygon>
			</Placemark>
		</Folder>
		<Folder>
			<name>cb_2015_us_state_5m</name>
			<Placemark>
				<name>West Virginia</name>
				<description><![CDATA[description: <br> Attributes<br>  STATEFP  54 <br>  STATENS  01779805 <br>  AFFGEOID  0400000US54 <br>  GEOID  54 <br>  STUSPS  WV <br>  NAME  West Virginia <br>  LSAD  00 <br>  ALAND  62266577599 <br>  AWATER  489469489 <br>STATEFP: 54<br>STATENS: 01779805<br>AFFGEOID: 0400000US54<br>GEOID: 54<br>STUSPS: WV<br>NAME: West Virginia<br>LSAD: 00<br>ALAND: 62266577599<br>AWATER: 489469489]]></description>
				<styleUrl>#poly-000000-2-0</styleUrl>
				<ExtendedData>
					<Data name='description'>
						<value>
 Attributes
  STATEFP  54 
  STATENS  01779805 
  AFFGEOID  0400000US54 
  GEOID  54 
  STUSPS  WV 
  NAME  West Virginia 
  LSAD  00 
  ALAND  62266577599 
  AWATER  489469489 </value>
					</Data>
					<Data name='STATEFP'>
						<value>54</value>
					</Data>
					<Data name='STATENS'>
						<value>01779805</value>
					</Data>
					<Data name='AFFGEOID'>
						<value>0400000US54</value>
					</Data>
					<Data name='GEOID'>
						<value>54</value>
					</Data>
					<Data name='STUSPS'>
						<value>WV</value>
					</Data>
					<Data name='NAME'>
						<value>West Virginia</value>
					</Data>
					<Data name='LSAD'>
						<value>00</value>
					</Data>
					<Data name='ALAND'>
						<value>62266577599</value>
					</Data>
					<Data name='AWATER'>
						<value>489469489</value>
					</Data>
				</ExtendedData>
				<Polygon>
					<outerBoundaryIs>
						<LinearRing>
							<tessellate>1</tessellate>
							<coordinates>-82.642997,38.16956,0.0 -82.644739,38.165487,0.0 -82.638947,38.156742,0.0 -82.638398,38.152157,0.0 -82.638288,38.143491,0.0 -82.637306,38.13905,0.0 -82.636466,38.13786,0.0 -82.634265,38.136669,0.0 -82.626182,38.134835,0.0 -82.622125,38.133414,0.0 -82.621167,38.131996,0.0 -82.621164,38.123239,0.0 -82.620351,38.121477,0.0 -82.619452,38.120745,0.0 -82.616149,38.120221,0.0 -82.606589,38.120843,0.0 -82.602618,38.11835,0.0 -82.600127,38.117389,0.0 -82.598011,38.115925,0.0 -82.593605,38.110869,0.0 -82.59178,38.109908,0.0 -82.587782,38.108879,0.0 -82.585696,38.107003,0.0 -82.585142,38.098055,0.0 -82.585488,38.094256,0.0 -82.584039,38.090663,0.0 -82.574075,38.082104,0.0 -82.565736,38.08064,0.0 -82.559598,38.072837,0.0 -82.551259,38.070799,0.0 -82.54958,38.068579,0.0 -82.549407,38.063063,0.0 -82.547284,38.061094,0.0 -82.54485,38.058521,0.0 -82.544779,38.054262,0.0 -82.543916,38.052133,0.0 -82.541245,38.048444,0.0 -82.537293,38.045204,0.0 -82.53747,38.042701,0.0 -82.539071,38.039788,0.0 -82.538639,38.037381,0.0 -82.534976,38.03225,0.0 -82.530371,38.028792,0.0 -82.527068,38.027586,0.0 -82.525817,38.026406,0.0 -82.525831,38.019564,0.0 -82.522591,38.012968,0.0 -82.519665,38.008538,0.0 -82.517606,38.007222,0.0 -82.517351,38.005131,0.0 -82.51781,38.002479,0.0 -82.517351,38.001204,0.0 -82.515974,37.999929,0.0 -82.513271,37.999674,0.0 -82.509812,38.001249,0.0 -82.507197,38.001512,0.0 -82.499874,37.999157,0.0 -82.48978,37.998869,0.0 -82.487732,37.99833,0.0 -82.485967,37.995705,0.0 -82.471629,37.986826,0.0 -82.467015,37.985578,0.0 -82.465473,37.98478,0.0 -82.464257,37.983412,0.0 -82.464067,37.980295,0.0 -82.464987,37.976859,0.0 -82.46938,37.973059,0.0 -82.472669,37.960721,0.0 -82.471657,37.959988,0.0 -82.471801,37.959119,0.0 -82.475096,37.954906,0.0 -82.48096,37.949136,0.0 -82.48512,37.946044,0.0 -82.487836,37.945288,0.0 -82.495294,37.946612,0.0 -82.496681,37.946405,0.0 -82.4973,37.945507,0.0 -82.4973,37.945491,0.0 -82.497285,37.942903,0.0 -82.500386,37.936518,0.0 -82.501948,37.934756,0.0 -82.501862,37.9332,0.0 -82.49814,37.9283,0.0 -82.49574,37.927043,0.0 -82.488279,37.91812,0.0 -82.487556,37.916975,0.0 -82.474574,37.900295,0.0 -82.472523,37.899243,0.0 -82.471223,37.899358,0.0 -82.447596,37.904352,0.0 -82.438582,37.900256,0.0 -82.435751,37.897028,0.0 -82.432113,37.88991,0.0 -82.429023,37.888285,0.0 -82.421484,37.885652,0.0 -82.419781,37.883821,0.0 -82.419204,37.882081,0.0 -82.419337,37.875095,0.0 -82.41869,37.872375,0.0 -82.417679,37.870658,0.0 -82.422127,37.863952,0.0 -82.42409,37.863037,0.0 -82.424264,37.861709,0.0 -82.423513,37.860313,0.0 -82.421983,37.859397,0.0 -82.421388,37.854674,0.0 -82.420484,37.847496,0.0 -82.420484,37.846809,0.0 -82.417367,37.845664,0.0 -82.413153,37.845343,0.0 -82.412172,37.844793,0.0 -82.408941,37.836644,0.0 -82.407874,37.835499,0.0 -82.39968,37.829935,0.0 -82.387769,37.818212,0.0 -82.386586,37.818212,0.0 -82.385259,37.81741,0.0 -82.37958,37.810907,0.0 -82.378514,37.80832,0.0 -82.377393,37.803009,0.0 -82.374867,37.80216,0.0 -82.369973,37.801749,0.0 -82.36778,37.800628,0.0 -82.365557,37.798318,0.0 -82.364979,37.796784,0.0 -82.363795,37.795435,0.0 -82.361199,37.794429,0.0 -82.356122,37.793859,0.0 -82.354275,37.793104,0.0 -82.348849,37.787178,0.0 -82.340455,37.786058,0.0 -82.339705,37.785509,0.0 -82.338377,37.780428,0.0 -82.339097,37.778276,0.0 -82.338895,37.776857,0.0 -82.337596,37.775369,0.0 -82.335981,37.7745,0.0 -82.333903,37.766306,0.0 -82.333816,37.765391,0.0 -82.331162,37.763125,0.0 -82.32946,37.762393,0.0 -82.327356,37.762233,0.0 -82.321012,37.755435,0.0 -82.321415,37.751269,0.0 -82.328221,37.74848,0.0 -82.333581,37.743283,0.0 -82.333349,37.7412,0.0 -82.333044,37.740969,0.0 -82.326834,37.736257,0.0 -82.319686,37.734404,0.0 -82.318879,37.733763,0.0 -82.318302,37.733053,0.0 -82.317869,37.72772,0.0 -82.316197,37.721541,0.0 -82.311702,37.718771,0.0 -82.311097,37.717329,0.0 -82.310665,37.7133,0.0 -82.307235,37.707669,0.0 -82.305679,37.706708,0.0 -82.300954,37.706135,0.0 -82.298074,37.704143,0.0 -82.296634,37.702403,0.0 -82.297325,37.699817,0.0 -82.301964,37.696223,0.0 -82.302886,37.693683,0.0 -82.301504,37.690775,0.0 -82.297788,37.687753,0.0 -82.296262,37.687067,0.0 -82.296118,37.686174,0.0 -82.294737,37.678277,0.0 -82.294392,37.677957,0.0 -82.294134,37.673378,0.0 -82.29471,37.672257,0.0 -82.294393,37.670448,0.0 -82.291773,37.669143,0.0 -82.288174,37.668227,0.0 -82.286446,37.670127,0.0 -82.277876,37.669998,0.0 -82.272021,37.663782,0.0 -82.267962,37.662407,0.0 -82.257111,37.656749,0.0 -82.252273,37.656907,0.0 -82.243911,37.660959,0.0 -82.240773,37.661785,0.0 -82.23939,37.661465,0.0 -82.226111,37.653092,0.0 -82.225535,37.651947,0.0 -82.224956,37.647003,0.0 -82.223602,37.644554,0.0 -82.21934,37.642931,0.0 -82.216691,37.641329,0.0 -82.21669,37.639956,0.0 -82.219078,37.635903,0.0 -82.220257,37.634781,0.0 -82.2202,37.633912,0.0 -82.214815,37.627572,0.0 -82.215649,37.626244,0.0 -82.21349,37.625408,0.0 -82.209691,37.625103,0.0 -82.204337,37.625811,0.0 -82.203388,37.626132,0.0 -82.202467,37.627483,0.0 -82.201201,37.627895,0.0 -82.192394,37.625606,0.0 -82.187298,37.626935,0.0 -82.186694,37.627576,0.0 -82.181398,37.626798,0.0 -82.182438,37.623971,0.0 -82.18143,37.621842,0.0 -82.176682,37.618202,0.0 -82.1692,37.613028,0.0 -82.169057,37.609869,0.0 -82.168137,37.608495,0.0 -82.164454,37.608014,0.0 -82.157609,37.596773,0.0 -82.156718,37.59279,0.0 -82.148434,37.59091,0.0 -82.146419,37.59265,0.0 -82.141555,37.595166,0.0 -82.131977,37.593537,0.0 -82.130165,37.591544,0.0 -82.127321,37.586667,0.0 -82.125601,37.579021,0.0 -82.124307,37.577806,0.0 -82.124372,37.57641,0.0 -82.116584,37.559588,0.0 -82.103127,37.560097,0.0 -82.102263,37.559456,0.0 -82.101946,37.558106,0.0 -82.089178,37.556004,0.0 -82.084605,37.55541,0.0 -82.07503,37.555824,0.0 -82.073246,37.555023,0.0 -82.064418,37.544516,0.0 -82.063671,37.541929,0.0 -82.064792,37.539021,0.0 -82.064418,37.53687,0.0 -82.063326,37.536206,0.0 -82.061256,37.536001,0.0 -82.05746,37.536893,0.0 -82.054787,37.536756,0.0 -82.04481,37.541814,0.0 -82.045155,37.544516,0.0 -82.04478,37.546713,0.0 -82.042825,37.548361,0.0 -82.038972,37.547926,0.0 -82.038024,37.546918,0.0 -82.036932,37.542729,0.0 -82.028826,37.537667,0.0 -82.025261,37.538261,0.0 -82.021006,37.540526,0.0 -82.018878,37.540572,0.0 -82.016925,37.538556,0.0 -82.01592,37.534321,0.0 -82.013966,37.533564,0.0 -82.009194,37.533243,0.0 -82.007412,37.533677,0.0 -81.994033,37.537612,0.0 -81.992597,37.538323,0.0 -81.989092,37.542514,0.0 -81.987511,37.542835,0.0 -81.982479,37.541807,0.0 -81.980841,37.542357,0.0 -81.976386,37.545426,0.0 -81.970147,37.546504,0.0 -81.964971,37.543026,0.0 -81.965401,37.541171,0.0 -81.968297,37.537798,0.0 -81.969279,37.534325,0.0 -81.967583,37.532815,0.0 -81.959362,37.53522,0.0 -81.957379,37.535198,0.0 -81.956947,37.534259,0.0 -81.957436,37.533206,0.0 -81.957693,37.529841,0.0 -81.95663,37.52849,0.0 -81.953524,37.528056,0.0 -81.946022,37.531742,0.0 -81.94401,37.530964,0.0 -81.943981,37.5303,0.0 -81.947545,37.52753,0.0 -81.94766,37.52508,0.0 -81.947085,37.523913,0.0 -81.943693,37.521212,0.0 -81.933088,37.518968,0.0 -81.926391,37.514207,0.0 -81.926736,37.51304,0.0 -81.927759,37.512209,0.0 -81.92787,37.512118,0.0 -81.932279,37.511961,0.0 -81.941151,37.509483,0.0 -81.943045,37.508609,0.0 -81.944188,37.506976,0.0 -81.943912,37.502929,0.0 -81.945957,37.501901,0.0 -81.949188,37.502376,0.0 -81.951831,37.50205,0.0 -81.953147,37.501314,0.0 -81.954077,37.499822,0.0 -81.954364,37.496084,0.0 -81.954167,37.495302,0.0 -81.952735,37.494162,0.0 -81.952681,37.492274,0.0 -81.953264,37.491763,0.0 -81.957213,37.491504,0.0 -81.964986,37.493488,0.0 -81.97073,37.489904,0.0 -81.977593,37.484603,0.0 -81.979169,37.484604,0.0 -81.980327,37.485447,0.0 -81.985703,37.485681,0.0 -81.989849,37.484879,0.0 -81.992916,37.482969,0.0 -81.996578,37.476705,0.0 -81.995649,37.469833,0.0 -81.99227,37.460916,0.0 -81.987006,37.454878,0.0 -81.984891,37.454315,0.0 -81.980013,37.45721,0.0 -81.976176,37.457186,0.0 -81.968795,37.451496,0.0 -81.969342,37.450324,0.0 -81.965582,37.446918,0.0 -81.958672,37.448045,0.0 -81.949367,37.445687,0.0 -81.945765,37.440214,0.0 -81.942856,37.439929,0.0 -81.941175,37.440485,0.0 -81.938843,37.440463,0.0 -81.935621,37.438397,0.0 -81.935316,37.43639,0.0 -81.937838,37.432111,0.0 -81.940553,37.429058,0.0 -81.93695,37.41992,0.0 -81.932468,37.415217,0.0 -81.923481,37.411379,0.0 -81.924506,37.407613,0.0 -81.925764,37.406874,0.0 -81.927338,37.406844,0.0 -81.930042,37.405291,0.0 -81.930786,37.401656,0.0 -81.92828,37.398059,0.0 -81.928778,37.393845,0.0 -81.933601,37.389217,0.0 -81.936744,37.38073,0.0 -81.935872,37.378554,0.0 -81.93388,37.377796,0.0 -81.932763,37.374229,0.0 -81.933895,37.372747,0.0 -81.930194,37.366728,0.0 -81.929915,37.366589,0.0 -81.926697,37.364618,0.0 -81.928497,37.360645,0.0 -81.926589,37.358942,0.0 -81.925643,37.357316,0.0 -81.921571,37.356423,0.0 -81.920711,37.355416,0.0 -81.920279,37.353402,0.0 -81.916678,37.349346,0.0 -81.911951,37.349339,0.0 -81.911487,37.348839,0.0 -81.910875,37.348729,0.0 -81.907895,37.343783,0.0 -81.907322,37.343119,0.0 -81.906368,37.34276,0.0 -81.905945,37.342775,0.0 -81.903795,37.34305,0.0 -81.902992,37.34234,0.0 -81.899495,37.341102,0.0 -81.899459,37.340277,0.0 -81.896001,37.331967,0.0 -81.895489,37.332022,0.0 -81.894797,37.332012,0.0 -81.894768,37.331381,0.0 -81.893773,37.330105,0.0 -81.892876,37.330134,0.0 -81.887722,37.331156,0.0 -81.886952,37.330725,0.0 -81.885075,37.330665,0.0 -81.880886,37.331146,0.0 -81.879601,37.332074,0.0 -81.878713,37.331753,0.0 -81.878343,37.328837,0.0 -81.873213,37.325065,0.0 -81.872662,37.323314,0.0 -81.87018,37.320667,0.0 -81.867425,37.320838,0.0 -81.860267,37.315715,0.0 -81.859928,37.313965,0.0 -81.863712,37.31223,0.0 -81.865429,37.31012,0.0 -81.865683,37.309484,0.0 -81.865219,37.308839,0.0 -81.86476,37.308404,0.0 -81.862031,37.305648,0.0 -81.859624,37.304765,0.0 -81.856032,37.306742,0.0 -81.85446,37.30657,0.0 -81.853645,37.300779,0.0 -81.853978,37.300418,0.0 -81.854465,37.299937,0.0 -81.853488,37.294763,0.0 -81.854059,37.291352,0.0 -81.853551,37.287701,0.0 -81.849949,37.285227,0.0 -81.846807,37.284649,0.0 -81.843167,37.285586,0.0 -81.84231,37.285556,0.0 -81.838762,37.286343,0.0 -81.834432,37.285416,0.0 -81.833406,37.284535,0.0 -81.834387,37.283086,0.0 -81.83447,37.281763,0.0 -81.825065,37.279536,0.0 -81.819625,37.279411,0.0 -81.816702,37.279865,0.0 -81.813222,37.281091,0.0 -81.810559,37.28298,0.0 -81.809184,37.283003,0.0 -81.807232,37.283175,0.0 -81.805382,37.285622,0.0 -81.803275,37.285916,0.0 -81.793595,37.284838,0.0 -81.793115,37.283538,0.0 -81.793639,37.282188,0.0 -81.793425,37.281674,0.0 -81.789294,37.284416,0.0 -81.783122,37.28258,0.0 -81.779362,37.279982,0.0 -81.77935,37.277394,0.0 -81.777319,37.275873,0.0 -81.774747,37.274847,0.0 -81.774684,37.274807,0.0 -81.767837,37.274216,0.0 -81.765195,37.275099,0.0 -81.763836,37.275218,0.0 -81.762776,37.275391,0.0 -81.761752,37.275713,0.0 -81.76022,37.275254,0.0 -81.757631,37.274003,0.0 -81.75773,37.271934,0.0 -81.757714,37.271124,0.0 -81.757531,37.27001,0.0 -81.755012,37.26772,0.0 -81.752912,37.266614,0.0 -81.752123,37.265568,0.0 -81.75129,37.265131,0.0 -81.747656,37.264329,0.0 -81.746109,37.263597,0.0 -81.745505,37.26133,0.0 -81.745445,37.258125,0.0 -81.743008,37.255127,0.0 -81.741662,37.254784,0.0 -81.740974,37.254052,0.0 -81.743505,37.247601,0.0 -81.74342,37.245858,0.0 -81.744291,37.244178,0.0 -81.744003,37.242528,0.0 -81.739277,37.238837,0.0 -81.738543,37.238264,0.0 -81.73332,37.238127,0.0 -81.728194,37.239823,0.0 -81.726171,37.240522,0.0 -81.723061,37.240493,0.0 -81.719554,37.237785,0.0 -81.716248,37.234321,0.0 -81.71573,37.228771,0.0 -81.698954,37.218201,0.0 -81.695113,37.21357,0.0 -81.686717,37.213105,0.0 -81.683544,37.211452,0.0 -81.684012,37.211098,0.0 -81.683268,37.205649,0.0 -81.681379,37.203634,0.0 -81.678603,37.202467,0.0 -81.67821,37.201483,0.0 -81.560625,37.206663,0.0 -81.558353,37.208145,0.0 -81.557315,37.207697,0.0 -81.556892,37.207275,0.0 -81.556119,37.207413,0.0 -81.5536,37.208443,0.0 -81.549248,37.213732,0.0 -81.545211,37.220165,0.0 -81.544437,37.220761,0.0 -81.53307,37.223414,0.0 -81.527458,37.225817,0.0 -81.520729,37.226914,0.0 -81.508786,37.232564,0.0 -81.507325,37.2338,0.0 -81.50626,37.239272,0.0 -81.506428,37.244469,0.0 -81.50488,37.247697,0.0 -81.504168,37.250115,0.0 -81.50319,37.252579,0.0 -81.498874,37.258025,0.0 -81.497775,37.257899,0.0 -81.497773,37.25719,0.0 -81.498445,37.256568,0.0 -81.498045,37.254659,0.0 -81.495738,37.252393,0.0 -81.492287,37.25096,0.0 -81.483559,37.250604,0.0 -81.480144,37.251121,0.0 -81.476431,37.255127,0.0 -81.462107,37.259899,0.0 -81.46,37.262547,0.0 -81.459874,37.263901,0.0 -81.460585,37.265527,0.0 -81.458895,37.266466,0.0 -81.454199,37.266999,0.0 -81.449068,37.269583,0.0 -81.448285,37.270575,0.0 -81.43285,37.272697,0.0 -81.427946,37.271015,0.0 -81.416663,37.273214,0.0 -81.411593,37.28033,0.0 -81.409577,37.284025,0.0 -81.409729,37.284837,0.0 -81.409196,37.286071,0.0 -81.403764,37.296597,0.0 -81.40506,37.298794,0.0 -81.402195,37.30166,0.0 -81.398185,37.302965,0.0 -81.396817,37.304498,0.0 -81.397357,37.306358,0.0 -81.398702,37.307806,0.0 -81.398548,37.310635,0.0 -81.394287,37.316411,0.0 -81.388132,37.319903,0.0 -81.386727,37.320474,0.0 -81.38581,37.320085,0.0 -81.384914,37.318832,0.0 -81.384127,37.318596,0.0 -81.380159,37.317838,0.0 -81.377349,37.318447,0.0 -81.374455,37.318614,0.0 -81.37261,37.320195,0.0 -81.371315,37.324115,0.0 -81.367599,37.327569,0.0 -81.36803,37.329447,0.0 -81.369264,37.330568,0.0 -81.369379,37.331827,0.0 -81.36809,37.332423,0.0 -81.367052,37.334504,0.0 -81.366315,37.335927,0.0 -81.362156,37.337687,0.0 -81.320105,37.299323,0.0 -81.225104,37.234874,0.0 -81.204774,37.243013,0.0 -81.178151,37.257979,0.0 -81.167029,37.262881,0.0 -81.158964,37.265382,0.0 -81.142404,37.269165,0.0 -81.112596,37.278497,0.0 -81.09482,37.28264,0.0 -81.084012,37.284401,0.0 -81.037191,37.290251,0.0 -81.021937,37.294143,0.0 -81.008457,37.296073,0.0 -81.000576,37.297868,0.0 -80.996013,37.299545,0.0 -80.979589,37.302279,0.0 -80.979106,37.300581,0.0 -80.982173,37.296023,0.0 -80.981322,37.293465,0.0 -80.980146,37.292743,0.0 -80.973889,37.291444,0.0 -80.966556,37.292158,0.0 -80.947896,37.295872,0.0 -80.938135,37.300278,0.0 -80.931118,37.302872,0.0 -80.92704,37.303683,0.0 -80.919259,37.306163,0.0 -80.900535,37.315,0.0 -80.880103,37.328903,0.0 -80.868986,37.338573,0.0 -80.865321,37.340523,0.0 -80.849451,37.346909,0.0 -80.883248,37.383933,0.0 -80.862761,37.411829,0.0 -80.864455,37.41418,0.0 -80.865174,37.416996,0.0 -80.865148,37.419927,0.0 -80.863142,37.424644,0.0 -80.859563,37.429558,0.0 -80.859556,37.429568,0.0 -80.858473,37.428301,0.0 -80.85836,37.428168,0.0 -80.856997,37.427052,0.0 -80.853163,37.426902,0.0 -80.850656,37.426062,0.0 -80.846324,37.423394,0.0 -80.844213,37.423555,0.0 -80.841672,37.425971,0.0 -80.837678,37.425658,0.0 -80.836446,37.424355,0.0 -80.811639,37.407507,0.0 -80.808769,37.406271,0.0 -80.806358,37.404119,0.0 -80.807134,37.401348,0.0 -80.806129,37.398074,0.0 -80.800447,37.395738,0.0 -80.798869,37.395807,0.0 -80.790317,37.395668,0.0 -80.784188,37.394587,0.0 -80.783324,37.392793,0.0 -80.783382,37.390649,0.0 -80.782295,37.389016,0.0 -80.776766,37.384131,0.0 -80.776649,37.383679,0.0 -80.770082,37.372363,0.0 -80.759886,37.374882,0.0 -80.748722,37.38005,0.0 -80.745527,37.380111,0.0 -80.73804,37.382547,0.0 -80.731589,37.38471,0.0 -80.723596,37.388261,0.0 -80.715479,37.390707,0.0 -80.705203,37.394618,0.0 -80.691709,37.401749,0.0 -80.684576,37.40463,0.0 -80.664971,37.414215,0.0 -80.664112,37.41422,0.0 -80.656687,37.417585,0.0 -80.653589,37.419514,0.0 -80.645893,37.422147,0.0 -80.636947,37.427471,0.0 -80.637554,37.428556,0.0 -80.637379,37.429372,0.0 -80.63439,37.431227,0.0 -80.632365,37.432125,0.0 -80.626365,37.433328,0.0 -80.622664,37.433307,0.0 -80.622117,37.435969,0.0 -80.616802,37.439443,0.0 -80.600204,37.446173,0.0 -80.591377,37.45144,0.0 -80.59024,37.453296,0.0 -80.585856,37.456654,0.0 -80.566297,37.466575,0.0 -80.561442,37.469775,0.0 -80.552036,37.473563,0.0 -80.544836,37.474695,0.0 -80.539786,37.474527,0.0 -80.533449,37.476406,0.0 -80.532372,37.477124,0.0 -80.528349,37.477368,0.0 -80.523481,37.476905,0.0 -80.515139,37.478566,0.0 -80.513409,37.479446,0.0 -80.511391,37.481672,0.0 -80.492981,37.457749,0.0 -80.49728,37.444779,0.0 -80.494867,37.43507,0.0 -80.475601,37.422949,0.0 -80.46482,37.426144,0.0 -80.457313,37.432267,0.0 -80.451367,37.434039,0.0 -80.443025,37.438126,0.0 -80.425656,37.449876,0.0 -80.402816,37.460322,0.0 -80.39988,37.462314,0.0 -80.382535,37.470367,0.0 -80.378308,37.471381,0.0 -80.371952,37.474069,0.0 -80.369449,37.476599,0.0 -80.36317,37.480001,0.0 -80.366838,37.484879,0.0 -80.343789,37.492148,0.0 -80.332038,37.493744,0.0 -80.327103,37.495376,0.0 -80.320627,37.49888,0.0 -80.314806,37.500943,0.0 -80.309331,37.50288,0.0 -80.309833,37.503827,0.0 -80.299789,37.508271,0.0 -80.282385,37.533517,0.0 -80.291644,37.536505,0.0 -80.309346,37.527381,0.0 -80.330306,37.536244,0.0 -80.327489,37.540022,0.0 -80.324384,37.541052,0.0 -80.321249,37.541419,0.0 -80.314464,37.54412,0.0 -80.312393,37.546239,0.0 -80.328504,37.564315,0.0 -80.294882,37.57877,0.0 -80.28244,37.585481,0.0 -80.270342,37.591149,0.0 -80.26356,37.593374,0.0 -80.258919,37.595499,0.0 -80.24978,37.602117,0.0 -80.240272,37.606961,0.0 -80.226017,37.620059,0.0 -80.223386,37.623185,0.0 -80.220984,37.627767,0.0 -80.239288,37.637672,0.0 -80.254431,37.642352,0.0 -80.254469,37.642333,0.0 -80.263281,37.645082,0.0 -80.263291,37.645101,0.0 -80.26483,37.645526,0.0 -80.264874,37.645511,0.0 -80.267228,37.646011,0.0 -80.267455,37.646108,0.0 -80.270352,37.648929,0.0 -80.270323,37.648982,0.0 -80.279372,37.657077,0.0 -80.292258,37.683732,0.0 -80.292337,37.683976,0.0 -80.296138,37.691783,0.0 -80.294108,37.693852,0.0 -80.287107,37.696403,0.0 -80.275007,37.707844,0.0 -80.27199,37.711532,0.0 -80.264406,37.718786,0.0 -80.258143,37.720612,0.0 -80.253077,37.725899,0.0 -80.252227,37.727261,0.0 -80.252024,37.729825,0.0 -80.260313,37.733517,0.0 -80.262765,37.738336,0.0 -80.257411,37.756084,0.0 -80.25641,37.756372,0.0 -80.251622,37.755866,0.0 -80.24979,37.757111,0.0 -80.250427,37.761301,0.0 -80.251319,37.762958,0.0 -80.246902,37.768309,0.0 -80.24139,37.769443,0.0 -80.232011,37.775621,0.0 -80.230458,37.778305,0.0 -80.227498,37.778889,0.0 -80.221827,37.778293,0.0 -80.217634,37.776775,0.0 -80.216899,37.776056,0.0 -80.216498,37.776445,0.0 -80.215658,37.777481,0.0 -80.215892,37.781989,0.0 -80.218616,37.783291,0.0 -80.220092,37.78316,0.0 -80.227965,37.791714,0.0 -80.229489,37.792331,0.0 -80.229228,37.79466,0.0 -80.227092,37.798886,0.0 -80.218611,37.809783,0.0 -80.216939,37.809505,0.0 -80.216229,37.80982,0.0 -80.210965,37.812598,0.0 -80.206482,37.81597,0.0 -80.205841,37.818921,0.0 -80.202853,37.82424,0.0 -80.199633,37.827507,0.0 -80.19465,37.831759,0.0 -80.18638,37.837741,0.0 -80.181768,37.838343,0.0 -80.179391,37.839751,0.0 -80.183555,37.84681,0.0 -80.183062,37.850646,0.0 -80.181815,37.852724,0.0 -80.176712,37.854029,0.0 -80.172076,37.860066,0.0 -80.172033,37.862144,0.0 -80.168957,37.867116,0.0 -80.162202,37.875122,0.0 -80.153832,37.881824,0.0 -80.148951,37.886892,0.0 -80.147316,37.885936,0.0 -80.14613,37.884453,0.0 -80.141947,37.882616,0.0 -80.131931,37.8895,0.0 -80.13104,37.890697,0.0 -80.130464,37.893194,0.0 -80.129555,37.894134,0.0 -80.12362,37.897943,0.0 -80.123021,37.898046,0.0 -80.120613,37.896735,0.0 -80.117747,37.89772,0.0 -80.11748,37.900581,0.0 -80.119106,37.902018,0.0 -80.118967,37.903614,0.0 -80.116884,37.906292,0.0 -80.106819,37.914698,0.0 -80.102931,37.918911,0.0 -80.096563,37.918112,0.0 -80.086954,37.929547,0.0 -80.080823,37.935526,0.0 -80.075441,37.939629,0.0 -80.074514,37.942221,0.0 -80.066569,37.947171,0.0 -80.063682,37.947968,0.0 -80.056839,37.951833,0.0 -80.056329,37.952274,0.0 -80.051043,37.956852,0.0 -80.04841,37.957481,0.0 -80.036236,37.96792,0.0 -80.024168,37.976907,0.0 -80.013145,37.984253,0.0 -80.012555,37.985999,0.0 -80.012891,37.987443,0.0 -80.012193,37.988633,0.0 -80.008888,37.99083,0.0 -80.002507,37.992767,0.0 -79.999384,37.995842,0.0 -79.996134,38.000996,0.0 -79.995398,38.003309,0.0 -79.995901,38.005791,0.0 -79.994985,38.007853,0.0 -79.990114,38.013246,0.0 -79.986142,38.014182,0.0 -79.984842,38.01661,0.0 -79.985792,38.018089,0.0 -79.985619,38.01916,0.0 -79.98029,38.027596,0.0 -79.978427,38.029082,0.0 -79.976732,38.029278,0.0 -79.975269,38.030075,0.0 -79.973701,38.032556,0.0 -79.972165,38.036102,0.0 -79.973777,38.038744,0.0 -79.973895,38.040004,0.0 -79.971231,38.044326,0.0 -79.968189,38.047709,0.0 -79.959844,38.063697,0.0 -79.960093,38.068677,0.0 -79.954369,38.080397,0.0 -79.953509,38.081484,0.0 -79.949113,38.084238,0.0 -79.942364,38.091588,0.0 -79.938274,38.094741,0.0 -79.935101,38.096541,0.0 -79.93425,38.097669,0.0 -79.933911,38.099168,0.0 -79.931034,38.101402,0.0 -79.927645,38.104826,0.0 -79.92633,38.107151,0.0 -79.929687,38.109197,0.0 -79.934364,38.109718,0.0 -79.938051,38.110759,0.0 -79.938952,38.111619,0.0 -79.944843,38.131585,0.0 -79.942747,38.134333,0.0 -79.933751,38.135508,0.0 -79.929031,38.139771,0.0 -79.928747,38.144436,0.0 -79.928683,38.144928,0.0 -79.925512,38.150237,0.0 -79.925251,38.150465,0.0 -79.923125,38.150874,0.0 -79.918662,38.15479,0.0 -79.914884,38.167524,0.0 -79.915065,38.168088,0.0 -79.916072,38.168428,0.0 -79.917924,38.168399,0.0 -79.918913,38.170439,0.0 -79.918629,38.172671,0.0 -79.916765,38.175504,0.0 -79.916622,38.177994,0.0 -79.921026,38.179954,0.0 -79.921196,38.180378,0.0 -79.917061,38.183741,0.0 -79.916174,38.184386,0.0 -79.916344,38.186278,0.0 -79.91441,38.188418,0.0 -79.910961,38.18792,0.0 -79.90609,38.188999,0.0 -79.898426,38.193045,0.0 -79.892916,38.199868,0.0 -79.892345,38.202397,0.0 -79.891999,38.203378,0.0 -79.891591,38.204652,0.0 -79.888045,38.20736,0.0 -79.886413,38.207953,0.0 -79.884234,38.207868,0.0 -79.879087,38.211016,0.0 -79.863625,38.223945,0.0 -79.856962,38.231075,0.0 -79.850324,38.233329,0.0 -79.846445,38.240003,0.0 -79.845207,38.241082,0.0 -79.842981,38.241594,0.0 -79.837494,38.241276,0.0 -79.835124,38.241892,0.0 -79.834171,38.242899,0.0 -79.834031,38.244957,0.0 -79.832971,38.247553,0.0 -79.830882,38.249687,0.0 -79.825283,38.250488,0.0 -79.82101,38.248277,0.0 -79.819623,38.248234,0.0 -79.817149,38.249511,0.0 -79.814865,38.251568,0.0 -79.815719,38.253645,0.0 -79.815708,38.255065,0.0 -79.814202,38.258174,0.0 -79.811987,38.260401,0.0 -79.806333,38.259193,0.0 -79.801274,38.261474,0.0 -79.798295,38.265957,0.0 -79.7961,38.266413,0.0 -79.790134,38.267654,0.0 -79.788945,38.268703,0.0 -79.787542,38.273298,0.0 -79.789791,38.281167,0.0 -79.795448,38.290228,0.0 -79.797848,38.292053,0.0 -79.802778,38.292073,0.0 -79.803346,38.296682,0.0 -79.804026,38.298622,0.0 -79.807542,38.301694,0.0 -79.810115,38.305037,0.0 -79.810154,38.306707,0.0 -79.808711,38.309429,0.0 -79.804093,38.313922,0.0 -79.799617,38.317149,0.0 -79.798159,38.319161,0.0 -79.79655,38.32348,0.0 -79.785972,38.330878,0.0 -79.779272,38.331609,0.0 -79.77309,38.335529,0.0 -79.769906,38.341843,0.0 -79.766403,38.350873,0.0 -79.767263,38.353395,0.0 -79.764432,38.356514,0.0 -79.757626,38.357566,0.0 -79.75556,38.357372,0.0 -79.744105,38.353968,0.0 -79.740615,38.354101,0.0 -79.7346,38.356728,0.0 -79.732059,38.360168,0.0 -79.729344,38.36183,0.0 -79.727053,38.362233,0.0 -79.725973,38.363229,0.0 -79.725597,38.363828,0.0 -79.725804,38.366128,0.0 -79.72679,38.370832,0.0 -79.727676,38.371701,0.0 -79.730494,38.372217,0.0 -79.731698,38.373376,0.0 -79.729895,38.380351,0.0 -79.72635,38.38707,0.0 -79.722653,38.389517,0.0 -79.717365,38.401562,0.0 -79.712904,38.405034,0.0 -79.708965,38.409553,0.0 -79.70914,38.412064,0.0 -79.706634,38.41573,0.0 -79.689675,38.431439,0.0 -79.689909,38.432864,0.0 -79.69093,38.433995,0.0 -79.691656,38.436436,0.0 -79.691377,38.439558,0.0 -79.689544,38.442511,0.0 -79.691478,38.446282,0.0 -79.688962,38.449538,0.0 -79.688205,38.450476,0.0 -79.688365,38.45687,0.0 -79.688882,38.458714,0.0 -79.691088,38.463744,0.0 -79.695588,38.469058,0.0 -79.698929,38.469869,0.0 -79.699622,38.473967,0.0 -79.699006,38.475148,0.0 -79.695565,38.477842,0.0 -79.69418,38.478311,0.0 -79.693424,38.481011,0.0 -79.695462,38.481454,0.0 -79.696959,38.484574,0.0 -79.697572,38.487223,0.0 -79.694506,38.494232,0.0 -79.692273,38.496474,0.0 -79.691301,38.496768,0.0 -79.688345,38.496183,0.0 -79.682974,38.501317,0.0 -79.681606,38.504504,0.0 -79.681574,38.508217,0.0 -79.680374,38.510617,0.0 -79.674074,38.510417,0.0 -79.670474,38.507717,0.0 -79.669128,38.510883,0.0 -79.669128,38.510975,0.0 -79.668774,38.512017,0.0 -79.667574,38.512917,0.0 -79.665674,38.513817,0.0 -79.663474,38.514117,0.0 -79.662074,38.515517,0.0 -79.662974,38.518717,0.0 -79.666774,38.524317,0.0 -79.669774,38.526917,0.0 -79.671574,38.527517,0.0 -79.672974,38.528717,0.0 -79.668774,38.534217,0.0 -79.666874,38.538317,0.0 -79.669675,38.543416,0.0 -79.669275,38.549516,0.0 -79.665075,38.560916,0.0 -79.662575,38.560516,0.0 -79.659275,38.562416,0.0 -79.660675,38.566216,0.0 -79.661575,38.567316,0.0 -79.659375,38.572616,0.0 -79.658175,38.573016,0.0 -79.656109,38.5762,0.0 -79.649075,38.591515,0.0 -79.571771,38.563117,0.0 -79.566271,38.562517,0.0 -79.555471,38.560217,0.0 -79.54257,38.553217,0.0 -79.53827,38.551817,0.0 -79.53687,38.550917,0.0 -79.53337,38.546217,0.0 -79.53317,38.544717,0.0 -79.53187,38.542817,0.0 -79.521469,38.533918,0.0 -79.499768,38.49772,0.0 -79.476638,38.457228,0.0 -79.370302,38.427244,0.0 -79.312276,38.411876,0.0 -79.300081,38.414888,0.0 -79.297758,38.416438,0.0 -79.295712,38.418129,0.0 -79.291813,38.419627,0.0 -79.290529,38.420757,0.0 -79.288432,38.42096,0.0 -79.286874,38.420555,0.0 -79.285613,38.419249,0.0 -79.282971,38.418095,0.0 -79.280149,38.42076,0.0 -79.279678,38.424173,0.0 -79.280263,38.425475,0.0 -79.280581,38.426833,0.0 -79.28247,38.429168,0.0 -79.282663,38.431021,0.0 -79.282762,38.431647,0.0 -79.282225,38.432078,0.0 -79.274529,38.436337,0.0 -79.272064,38.437376,0.0 -79.267414,38.438322,0.0 -79.265327,38.441772,0.0 -79.263376,38.443762,0.0 -79.26291,38.444586,0.0 -79.261107,38.448082,0.0 -79.254435,38.455949,0.0 -79.253067,38.455818,0.0 -79.247342,38.453294,0.0 -79.242641,38.454168,0.0 -79.241854,38.457055,0.0 -79.242024,38.464332,0.0 -79.240059,38.469841,0.0 -79.234408,38.473011,0.0 -79.23162,38.474041,0.0 -79.225669,38.476471,0.0 -79.224192,38.477763,0.0 -79.220961,38.48059,0.0 -79.221406,38.484837,0.0 -79.219067,38.487441,0.0 -79.215212,38.489261,0.0 -79.210591,38.492913,0.0 -79.210026,38.494231,0.0 -79.210008,38.494283,0.0 -79.209703,38.495574,0.0 -79.207873,38.500122,0.0 -79.207884,38.500428,0.0 -79.206959,38.503522,0.0 -79.210959,38.507422,0.0 -79.205859,38.524521,0.0 -79.201459,38.527821,0.0 -79.196959,38.536721,0.0 -79.193458,38.542421,0.0 -79.188958,38.54742,0.0 -79.184058,38.55152,0.0 -79.180858,38.55992,0.0 -79.176658,38.56552,0.0 -79.174881,38.566314,0.0 -79.174512,38.566531,0.0 -79.170958,38.56812,0.0 -79.170658,38.56922,0.0 -79.171658,38.57162,0.0 -79.170858,38.574119,0.0 -79.168058,38.578619,0.0 -79.163458,38.583119,0.0 -79.158657,38.592319,0.0 -79.158257,38.593919,0.0 -79.158957,38.594519,0.0 -79.159158,38.601219,0.0 -79.154357,38.606518,0.0 -79.155557,38.609218,0.0 -79.155355,38.611225,0.0 -79.151257,38.620618,0.0 -79.146974,38.625641,0.0 -79.146741,38.625819,0.0 -79.142657,38.634417,0.0 -79.139657,38.637217,0.0 -79.137557,38.638017,0.0 -79.137012,38.640655,0.0 -79.136374,38.6424,0.0 -79.135546,38.643715,0.0 -79.135472,38.644057,0.0 -79.133557,38.646017,0.0 -79.131057,38.653217,0.0 -79.129757,38.655017,0.0 -79.122256,38.659817,0.0 -79.120256,38.660216,0.0 -79.111556,38.659717,0.0 -79.106356,38.656217,0.0 -79.092955,38.659517,0.0 -79.092755,38.662816,0.0 -79.091055,38.669316,0.0 -79.087855,38.673816,0.0 -79.084355,38.686516,0.0 -79.085555,38.688816,0.0 -79.088055,38.690115,0.0 -79.090755,38.692515,0.0 -79.092271,38.699208,0.0 -79.092555,38.700149,0.0 -79.092755,38.702315,0.0 -79.086555,38.716015,0.0 -79.087255,38.720114,0.0 -79.085455,38.724614,0.0 -79.081955,38.729714,0.0 -79.079655,38.734714,0.0 -79.076555,38.739214,0.0 -79.073855,38.742114,0.0 -79.072755,38.744614,0.0 -79.072555,38.747513,0.0 -79.064854,38.754413,0.0 -79.060954,38.756713,0.0 -79.057554,38.760213,0.0 -79.057253,38.761413,0.0 -79.056754,38.766513,0.0 -79.055654,38.770913,0.0 -79.053754,38.772313,0.0 -79.051554,38.772613,0.0 -79.051254,38.773913,0.0 -79.051654,38.778013,0.0 -79.052454,38.779213,0.0 -79.054354,38.780613,0.0 -79.055654,38.783013,0.0 -79.054954,38.785713,0.0 -79.048954,38.790713,0.0 -79.046554,38.792113,0.0 -79.033153,38.791013,0.0 -79.029253,38.791013,0.0 -79.027253,38.792113,0.0 -79.023053,38.798613,0.0 -79.023453,38.802612,0.0 -79.024453,38.803712,0.0 -79.024053,38.809212,0.0 -79.019553,38.817912,0.0 -79.016752,38.820012,0.0 -79.011952,38.820412,0.0 -79.007952,38.822312,0.0 -79.006552,38.823712,0.0 -79.006152,38.824512,0.0 -79.006352,38.826112,0.0 -79.005152,38.829912,0.0 -79.002352,38.836512,0.0 -78.999014,38.840074,0.0 -78.998863,38.840962,0.0 -79.000252,38.845412,0.0 -78.998171,38.847353,0.0 -78.993997,38.850102,0.0 -78.869276,38.762991,0.0 -78.865905,38.767034,0.0 -78.863684,38.7718,0.0 -78.848187,38.794978,0.0 -78.835191,38.811499,0.0 -78.832267,38.814388,0.0 -78.827262,38.82161,0.0 -78.821167,38.830982,0.0 -78.815116,38.841594,0.0 -78.810943,38.849616,0.0 -78.808181,38.856175,0.0 -78.796213,38.874606,0.0 -78.79161,38.877593,0.0 -78.790078,38.880076,0.0 -78.788031,38.885123,0.0 -78.786025,38.887187,0.0 -78.779198,38.892298,0.0 -78.772793,38.893742,0.0 -78.759085,38.900529,0.0 -78.757278,38.903203,0.0 -78.754516,38.905728,0.0 -78.754658,38.907582,0.0 -78.750517,38.916029,0.0 -78.738921,38.927283,0.0 -78.726222,38.930932,0.0 -78.724062,38.930846,0.0 -78.722451,38.931405,0.0 -78.718482,38.934267,0.0 -78.717076,38.936028,0.0 -78.71962,38.92651,0.0 -78.720095,38.923863,0.0 -78.719806,38.922638,0.0 -78.719755,38.922135,0.0 -78.719451,38.92026,0.0 -78.7209,38.909844,0.0 -78.71981,38.905907,0.0 -78.718647,38.904561,0.0 -78.717178,38.904296,0.0 -78.716168,38.90483,0.0 -78.712622,38.908665,0.0 -78.704323,38.915231,0.0 -78.69738,38.915602,0.0 -78.69145,38.922195,0.0 -78.688266,38.92478,0.0 -78.681617,38.92584,0.0 -78.680456,38.925313,0.0 -78.670679,38.9338,0.0 -78.666594,38.9392,0.0 -78.665886,38.941579,0.0 -78.662083,38.945702,0.0 -78.65905,38.947375,0.0 -78.655043,38.953766,0.0 -78.652352,38.960677,0.0 -78.646589,38.968138,0.0 -78.638423,38.966819,0.0 -78.632471,38.974739,0.0 -78.632452,38.976983,0.0 -78.630846,38.979586,0.0 -78.629553,38.980866,0.0 -78.625672,38.982575,0.0 -78.620453,38.982601,0.0 -78.619914,38.981288,0.0 -78.619982,38.977338,0.0 -78.618676,38.974082,0.0 -78.614312,38.97585,0.0 -78.611184,38.976134,0.0 -78.608369,38.969743,0.0 -78.601655,38.964603,0.0 -78.601399,38.96653,0.0 -78.598894,38.969546,0.0 -78.596015,38.970192,0.0 -78.593261,38.971918,0.0 -78.588704,38.978579,0.0 -78.582928,38.985416,0.0 -78.581981,38.988398,0.0 -78.580465,38.990567,0.0 -78.570462,39.001552,0.0 -78.561711,39.009007,0.0 -78.5594,39.011877,0.0 -78.554919,39.015124,0.0 -78.552321,39.016374,0.0 -78.550467,39.018065,0.0 -78.55738,39.021393,0.0 -78.55964,39.024456,0.0 -78.563294,39.026328,0.0 -78.565073,39.025935,0.0 -78.565837,39.026303,0.0 -78.571901,39.031995,0.0 -78.559997,39.041573,0.0 -78.556748,39.044527,0.0 -78.554263,39.048058,0.0 -78.547734,39.054069,0.0 -78.545679,39.055052,0.0 -78.544101,39.056663,0.0 -78.540216,39.060631,0.0 -78.531695,39.066519,0.0 -78.526543,39.068221,0.0 -78.522714,39.071062,0.0 -78.516789,39.077569,0.0 -78.515955,39.080046,0.0 -78.516479,39.081802,0.0 -78.512103,39.084878,0.0 -78.508132,39.08863,0.0 -78.504384,39.091398,0.0 -78.495984,39.09898,0.0 -78.49516,39.100992,0.0 -78.484283,39.107372,0.0 -78.478426,39.109843,0.0 -78.47732,39.109398,0.0 -78.475376,39.107469,0.0 -78.473209,39.108143,0.0 -78.470261,39.110063,0.0 -78.46953,39.111204,0.0 -78.466662,39.112858,0.0 -78.459869,39.113351,0.0 -78.439429,39.132146,0.0 -78.437771,39.135426,0.0 -78.436658,39.141691,0.0 -78.427294,39.152726,0.0 -78.413943,39.158415,0.0 -78.412599,39.160038,0.0 -78.403697,39.167451,0.0 -78.406966,39.170903,0.0 -78.411972,39.172734,0.0 -78.426315,39.182762,0.0 -78.428697,39.187217,0.0 -78.424292,39.192156,0.0 -78.424905,39.193301,0.0 -78.430846,39.196227,0.0 -78.436662,39.196658,0.0 -78.438651,39.198049,0.0 -78.437053,39.199766,0.0 -78.43213,39.204717,0.0 -78.431167,39.205744,0.0 -78.429803,39.207014,0.0 -78.427911,39.208611,0.0 -78.423968,39.212049,0.0 -78.41789,39.217504,0.0 -78.405585,39.231176,0.0 -78.40498,39.238006,0.0 -78.404214,39.241214,0.0 -78.399669,39.243874,0.0 -78.399785,39.244129,0.0 -78.409116,39.252564,0.0 -78.414631,39.255733,0.0 -78.41612,39.25541,0.0 -78.418584,39.256065,0.0 -78.419422,39.257476,0.0 -78.414204,39.26391,0.0 -78.402783,39.275471,0.0 -78.401813,39.276754,0.0 -78.402275,39.277238,0.0 -78.398682,39.281332,0.0 -78.393371,39.282988,0.0 -78.388785,39.288572,0.0 -78.387194,39.291444,0.0 -78.387242,39.29343,0.0 -78.385888,39.294888,0.0 -78.374728,39.305136,0.0 -78.371604,39.307692,0.0 -78.367242,39.310148,0.0 -78.364686,39.317312,0.0 -78.361567,39.318037,0.0 -78.360035,39.317771,0.0 -78.35894,39.319484,0.0 -78.346301,39.339108,0.0 -78.34546,39.341024,0.0 -78.347634,39.34272,0.0 -78.347409,39.343402,0.0 -78.343685,39.346713,0.0 -78.342514,39.346769,0.0 -78.341308,39.345555,0.0 -78.339284,39.348605,0.0 -78.338958,39.349889,0.0 -78.34048,39.353492,0.0 -78.348698,39.354744,0.0 -78.362267,39.357784,0.0 -78.366867,39.35929,0.0 -78.362632,39.362888,0.0 -78.354837,39.371616,0.0 -78.343214,39.388807,0.0 -78.350014,39.392861,0.0 -78.349436,39.397252,0.0 -78.357949,39.404192,0.0 -78.359918,39.409028,0.0 -78.359352,39.412534,0.0 -78.356627,39.415902,0.0 -78.351236,39.420595,0.0 -78.348354,39.424431,0.0 -78.346718,39.427618,0.0 -78.347942,39.430879,0.0 -78.353227,39.436792,0.0 -78.347773,39.440583,0.0 -78.346546,39.442616,0.0 -78.346061,39.445613,0.0 -78.347333,39.447659,0.0 -78.346962,39.450679,0.0 -78.345823,39.453499,0.0 -78.345143,39.459484,0.0 -78.349476,39.462205,0.0 -78.347087,39.466012,0.0 -78.28798,39.428755,0.0 -78.262785,39.414323,0.0 -78.228766,39.391233,0.0 -78.205401,39.375099,0.0 -78.18737,39.363989,0.0 -78.158194,39.343392,0.0 -78.14092,39.333745,0.0 -78.108746,39.31246,0.0 -78.033187,39.264622,0.0 -78.033185,39.264621,0.0 -78.032841,39.264403,0.0 -77.828302,39.132422,0.0 -77.828157,39.132329,0.0 -77.822182,39.139985,0.0 -77.82223,39.142734,0.0 -77.82299,39.145451,0.0 -77.822874,39.147755,0.0 -77.821413,39.15241,0.0 -77.818446,39.155279,0.0 -77.813206,39.165023,0.0 -77.811295,39.167563,0.0 -77.809125,39.168567,0.0 -77.805991,39.172421,0.0 -77.805099,39.174222,0.0 -77.804415,39.178045,0.0 -77.804712,39.179419,0.0 -77.797943,39.192826,0.0 -77.797714,39.19424,0.0 -77.798478,39.199574,0.0 -77.79819,39.200658,0.0 -77.794596,39.206299,0.0 -77.793631,39.210125,0.0 -77.788763,39.215243,0.0 -77.78364,39.224081,0.0 -77.781268,39.226909,0.0 -77.778068,39.229305,0.0 -77.771415,39.236776,0.0 -77.767277,39.24938,0.0 -77.770589,39.249393,0.0 -77.770876,39.24976,0.0 -77.770669,39.255262,0.0 -77.770281,39.255977,0.0 -77.768992,39.256417,0.0 -77.768,39.257657,0.0 -77.766525,39.25734,0.0 -77.762844,39.258445,0.0 -77.761768,39.263031,0.0 -77.761217,39.263721,0.0 -77.758733,39.268114,0.0 -77.758412,39.269197,0.0 -77.755698,39.274575,0.0 -77.755193,39.275191,0.0 -77.753105,39.27734,0.0 -77.75306,39.277971,0.0 -77.753357,39.280331,0.0 -77.752726,39.283373,0.0 -77.750267,39.289284,0.0 -77.747287,39.295001,0.0 -77.734899,39.312409,0.0 -77.730047,39.315666,0.0 -77.721638,39.318494,0.0 -77.719946,39.319693,0.0 -77.719519,39.321314,0.0 -77.727379,39.321666,0.0 -77.730914,39.324684,0.0 -77.735009,39.327015,0.0 -77.755789,39.333899,0.0 -77.759615,39.337331,0.0 -77.761115,39.339757,0.0 -77.761084,39.342524,0.0 -77.760435,39.344171,0.0 -77.759315,39.345314,0.0 -77.750387,39.34945,0.0 -77.74593,39.353221,0.0 -77.743874,39.359947,0.0 -77.744144,39.365139,0.0 -77.753274,39.37832,0.0 -77.753804,39.379624,0.0 -77.753389,39.382094,0.0 -77.752209,39.383328,0.0 -77.749715,39.384171,0.0 -77.740765,39.385409,0.0 -77.738084,39.386211,0.0 -77.736317,39.387744,0.0 -77.735905,39.389665,0.0 -77.736409,39.392684,0.0 -77.740012,39.401694,0.0 -77.747478,39.41093,0.0 -77.75268,39.420174,0.0 -77.75309,39.423262,0.0 -77.754681,39.424658,0.0 -77.75872,39.42681,0.0 -77.763319,39.428436,0.0 -77.77485,39.427845,0.0 -77.783847,39.430456,0.0 -77.786768,39.435442,0.0 -77.786052,39.444224,0.0 -77.78558,39.445367,0.0 -77.78611,39.447197,0.0 -77.780471,39.459867,0.0 -77.779202,39.460392,0.0 -77.777815,39.461924,0.0 -77.777815,39.462816,0.0 -77.778522,39.463663,0.0 -77.789645,39.467827,0.0 -77.795634,39.471259,0.0 -77.796755,39.472448,0.0 -77.798201,39.475719,0.0 -77.797787,39.47876,0.0 -77.796695,39.480498,0.0 -77.795485,39.481824,0.0 -77.788519,39.485048,0.0 -77.78176,39.487128,0.0 -77.771723,39.489207,0.0 -77.769125,39.490281,0.0 -77.767087,39.491333,0.0 -77.765551,39.493025,0.0 -77.765403,39.494397,0.0 -77.765993,39.495724,0.0 -77.768442,39.497783,0.0 -77.77095,39.499087,0.0 -77.774374,39.4995,0.0 -77.781608,39.499067,0.0 -77.784442,39.498061,0.0 -77.786539,39.496598,0.0 -77.807821,39.490241,0.0 -77.820781,39.4939,0.0 -77.825499,39.494258,0.0 -77.831909,39.494744,0.0 -77.845666,39.498628,0.0 -77.847639,39.500698,0.0 -77.848112,39.502093,0.0 -77.847611,39.503351,0.0 -77.845103,39.505845,0.0 -77.829045,39.514425,0.0 -77.82565,39.516895,0.0 -77.823555,39.524077,0.0 -77.823762,39.525907,0.0 -77.825357,39.529177,0.0 -77.827188,39.530458,0.0 -77.833509,39.532628,0.0 -77.836935,39.53217,0.0 -77.839061,39.531117,0.0 -77.840536,39.529196,0.0 -77.840651,39.520941,0.0 -77.84192,39.51847,0.0 -77.850747,39.515403,0.0 -77.860195,39.514325,0.0 -77.86368,39.515032,0.0 -77.866132,39.517661,0.0 -77.866518,39.520039,0.0 -77.866138,39.524727,0.0 -77.865078,39.528226,0.0 -77.864315,39.534813,0.0 -77.864434,39.536483,0.0 -77.865351,39.538381,0.0 -77.87153,39.544278,0.0 -77.886436,39.551947,0.0 -77.888945,39.55595,0.0 -77.888648,39.558054,0.0 -77.887968,39.559198,0.0 -77.886135,39.560432,0.0 -77.878451,39.563493,0.0 -77.872723,39.563895,0.0 -77.865734,39.563547,0.0 -77.855847,39.564607,0.0 -77.842174,39.564333,0.0 -77.83633,39.56637,0.0 -77.833217,39.571016,0.0 -77.830775,39.581178,0.0 -77.829814,39.587288,0.0 -77.829753,39.59105,0.0 -77.831813,39.601105,0.0 -77.833568,39.602936,0.0 -77.838008,39.606125,0.0 -77.842785,39.607255,0.0 -77.853436,39.607117,0.0 -77.8578,39.60788,0.0 -77.868679,39.611138,0.0 -77.874718,39.614293,0.0 -77.885124,39.615775,0.0 -77.887017,39.614518,0.0 -77.886959,39.613329,0.0 -77.881936,39.608112,0.0 -77.88111,39.606214,0.0 -77.880993,39.602852,0.0 -77.881823,39.600039,0.0 -77.882977,39.598828,0.0 -77.885077,39.597937,0.0 -77.888477,39.597343,0.0 -77.91641,39.602816,0.0 -77.916836,39.602942,0.0 -77.923298,39.604852,0.0 -77.925988,39.607642,0.0 -77.928738,39.613908,0.0 -77.932862,39.617676,0.0 -77.937492,39.61915,0.0 -77.94194,39.61879,0.0 -77.944622,39.616772,0.0 -77.940431,39.605776,0.0 -77.936371,39.594508,0.0 -77.93905,39.587139,0.0 -77.946182,39.584814,0.0 -77.956122,39.591268,0.0 -77.955337,39.600336,0.0 -77.957642,39.608614,0.0 -77.962092,39.608702,0.0 -77.966223,39.607435,0.0 -77.97015,39.605091,0.0 -77.973967,39.601071,0.0 -77.976686,39.599744,0.0 -77.984815,39.59942,0.0 -77.991437,39.600194,0.0 -78.00233,39.600488,0.0 -78.006734,39.601337,0.0 -78.009985,39.602893,0.0 -78.011343,39.604083,0.0 -78.022402,39.6196,0.0 -78.023896,39.621697,0.0 -78.03014,39.627462,0.0 -78.035992,39.63572,0.0 -78.03886,39.638121,0.0 -78.047672,39.643107,0.0 -78.04995,39.645349,0.0 -78.051932,39.648207,0.0 -78.068291,39.66106,0.0 -78.074595,39.666686,0.0 -78.077525,39.66888,0.0 -78.08226,39.671166,0.0 -78.088592,39.671211,0.0 -78.089835,39.671668,0.0 -78.097118,39.678161,0.0 -78.101737,39.680286,0.0 -78.107834,39.682137,0.0 -78.11183,39.682593,0.0 -78.123939,39.685652,0.0 -78.132706,39.686977,0.0 -78.135221,39.688305,0.0 -78.143478,39.690412,0.0 -78.154164,39.690531,0.0 -78.162126,39.693643,0.0 -78.171361,39.695612,0.0 -78.176625,39.695967,0.0 -78.182759,39.69511,0.0 -78.191107,39.690262,0.0 -78.192439,39.689118,0.0 -78.196701,39.682074,0.0 -78.201081,39.677866,0.0 -78.202945,39.676653,0.0 -78.206763,39.67599,0.0 -78.227333,39.676121,0.0 -78.231564,39.674382,0.0 -78.233138,39.672875,0.0 -78.233012,39.670471,0.0 -78.223864,39.662607,0.0 -78.223597,39.661097,0.0 -78.225075,39.658878,0.0 -78.227677,39.656796,0.0 -78.238059,39.652081,0.0 -78.246722,39.644758,0.0 -78.254077,39.640089,0.0 -78.262189,39.630464,0.0 -78.263344,39.626417,0.0 -78.263371,39.621675,0.0 -78.265088,39.619274,0.0 -78.266833,39.618818,0.0 -78.271122,39.619642,0.0 -78.283039,39.62047,0.0 -78.308152,39.629606,0.0 -78.313033,39.631001,0.0 -78.331934,39.636054,0.0 -78.33388,39.636486,0.0 -78.351905,39.640486,0.0 -78.355218,39.640576,0.0 -78.358264,39.63966,0.0 -78.359506,39.638081,0.0 -78.358735,39.635589,0.0 -78.355567,39.633463,0.0 -78.353673,39.630787,0.0 -78.353465,39.628912,0.0 -78.353878,39.627722,0.0 -78.35577,39.626258,0.0 -78.358343,39.625581,0.0 -78.362485,39.626049,0.0 -78.366212,39.627534,0.0 -78.367959,39.628929,0.0 -78.373166,39.630459,0.0 -78.380504,39.629359,0.0 -78.382487,39.628216,0.0 -78.383447,39.625091,0.0 -78.383461,39.623321,0.0 -78.382959,39.622246,0.0 -78.379118,39.618127,0.0 -78.372404,39.612297,0.0 -78.372255,39.6112,0.0 -78.3732,39.60953,0.0 -78.374732,39.608635,0.0 -78.378181,39.608178,0.0 -78.383591,39.608912,0.0 -78.390774,39.612117,0.0 -78.395828,39.616076,0.0 -78.41286,39.621091,0.0 -78.420549,39.624021,0.0 -78.425902,39.624548,0.0 -78.43025,39.62329,0.0 -78.433297,39.620569,0.0 -78.433623,39.618259,0.0 -78.433002,39.61652,0.0 -78.431524,39.614484,0.0 -78.425581,39.607599,0.0 -78.420644,39.603183,0.0 -78.41287,39.598311,0.0 -78.402702,39.593596,0.0 -78.397471,39.590232,0.0 -78.395463,39.587372,0.0 -78.395317,39.584215,0.0 -78.397446,39.581952,0.0 -78.400936,39.580214,0.0 -78.408031,39.578593,0.0 -78.41867,39.581111,0.0 -78.420059,39.581706,0.0 -78.422985,39.584109,0.0 -78.428246,39.586717,0.0 -78.443175,39.591155,0.0 -78.445983,39.591223,0.0 -78.451186,39.590193,0.0 -78.454527,39.588958,0.0 -78.457187,39.587379,0.0 -78.458052,39.585241,0.0 -78.458338,39.580426,0.0 -78.454376,39.574319,0.0 -78.450207,39.570889,0.0 -78.438179,39.563524,0.0 -78.426537,39.559155,0.0 -78.423287,39.556319,0.0 -78.420019,39.551745,0.0 -78.418777,39.548953,0.0 -78.419398,39.547401,0.0 -78.421105,39.54678,0.0 -78.424053,39.546315,0.0 -78.426953,39.546598,0.0 -78.430414,39.549418,0.0 -78.433828,39.548953,0.0 -78.434759,39.54678,0.0 -78.434759,39.543988,0.0 -78.435107,39.541658,0.0 -78.436378,39.539302,0.0 -78.438357,39.538753,0.0 -78.441961,39.541223,0.0 -78.445309,39.543367,0.0 -78.447171,39.543367,0.0 -78.449499,39.542281,0.0 -78.449964,39.54104,0.0 -78.449654,39.539643,0.0 -78.449499,39.538092,0.0 -78.45105,39.536695,0.0 -78.459274,39.535919,0.0 -78.461291,39.534678,0.0 -78.461911,39.532971,0.0 -78.461071,39.529304,0.0 -78.460951,39.525987,0.0 -78.462899,39.52084,0.0 -78.468639,39.516789,0.0 -78.471166,39.516103,0.0 -78.474178,39.51624,0.0 -78.480677,39.51896,0.0 -78.484044,39.519507,0.0 -78.485697,39.519392,0.0 -78.489742,39.517789,0.0 -78.499017,39.518906,0.0 -78.5032,39.518652,0.0 -78.513622,39.522545,0.0 -78.521388,39.52479,0.0 -78.527886,39.524654,0.0 -78.546584,39.520998,0.0 -78.550128,39.520702,0.0 -78.552756,39.521388,0.0 -78.557127,39.521526,0.0 -78.565929,39.519444,0.0 -78.567937,39.519902,0.0 -78.572692,39.522372,0.0 -78.578956,39.526695,0.0 -78.587079,39.52802,0.0 -78.590654,39.530192,0.0 -78.592131,39.531816,0.0 -78.593114,39.534401,0.0 -78.593871,39.535158,0.0 -78.595603,39.535483,0.0 -78.597659,39.53505,0.0 -78.600511,39.533434,0.0 -78.605868,39.534304,0.0 -78.606873,39.535082,0.0 -78.614526,39.537595,0.0 -78.623037,39.539512,0.0 -78.628566,39.53919,0.0 -78.628744,39.537863,0.0 -78.630842,39.537109,0.0 -78.655984,39.534695,0.0 -78.657417,39.535068,0.0 -78.66399,39.536778,0.0 -78.668745,39.540164,0.0 -78.675629,39.540371,0.0 -78.682423,39.543848,0.0 -78.689455,39.54577,0.0 -78.691494,39.547646,0.0 -78.691996,39.55078,0.0 -78.692824,39.55197,0.0 -78.694626,39.553251,0.0 -78.707098,39.555857,0.0 -78.708664,39.556795,0.0 -78.713335,39.562032,0.0 -78.714784,39.562558,0.0 -78.72501,39.563973,0.0 -78.726342,39.567587,0.0 -78.731992,39.575364,0.0 -78.733149,39.58369,0.0 -78.733979,39.586618,0.0 -78.738502,39.586319,0.0 -78.740246,39.585655,0.0 -78.743318,39.580712,0.0 -78.746421,39.579544,0.0 -78.756747,39.58069,0.0 -78.760196,39.582154,0.0 -78.76749,39.587487,0.0 -78.768314,39.589394,0.0 -78.768481,39.591583,0.0 -78.770511,39.594994,0.0 -78.772128,39.596497,0.0 -78.774281,39.597328,0.0 -78.778141,39.601364,0.0 -78.778096,39.602097,0.0 -78.77686,39.604027,0.0 -78.768115,39.608704,0.0 -78.760497,39.609984,0.0 -78.751514,39.609947,0.0 -78.74935,39.608572,0.0 -78.749222,39.606536,0.0 -78.747063,39.60569,0.0 -78.73905,39.609697,0.0 -78.733759,39.613931,0.0 -78.733553,39.615533,0.0 -78.736189,39.621708,0.0 -78.74288,39.625088,0.0 -78.748499,39.626262,0.0 -78.756686,39.622971,0.0 -78.763171,39.618897,0.0 -78.769565,39.619431,0.0 -78.777516,39.621712,0.0 -78.778477,39.62265,0.0 -78.778477,39.624405,0.0 -78.77264,39.636887,0.0 -78.77114,39.638387,0.0 -78.76814,39.639287,0.0 -78.76534,39.643987,0.0 -78.76504,39.646087,0.0 -78.76584,39.648487,0.0 -78.775241,39.645687,0.0 -78.790941,39.638287,0.0 -78.795941,39.637287,0.0 -78.801741,39.627488,0.0 -78.795964,39.614205,0.0 -78.795368,39.61071,0.0 -78.795857,39.606934,0.0 -78.79784,39.604897,0.0 -78.800434,39.605232,0.0 -78.801792,39.606812,0.0 -78.809347,39.608063,0.0 -78.812154,39.60054,0.0 -78.812215,39.597717,0.0 -78.818899,39.59037,0.0 -78.824788,39.590233,0.0 -78.826009,39.588829,0.0 -78.82636,39.577333,0.0 -78.820104,39.576287,0.0 -78.815114,39.571351,0.0 -78.813512,39.56772,0.0 -78.816764,39.561691,0.0 -78.821404,39.560616,0.0 -78.826407,39.562589,0.0 -78.830298,39.565355,0.0 -78.838553,39.5673,0.0 -78.851196,39.559924,0.0 -78.851016,39.554044,0.0 -78.851931,39.551848,0.0 -78.868908,39.532487,0.0 -78.868966,39.531366,0.0 -78.874744,39.522611,0.0 -78.87681,39.52125,0.0 -78.879084,39.521205,0.0 -78.885996,39.522581,0.0 -78.891197,39.5189,0.0 -78.895307,39.512085,0.0 -78.908719,39.496699,0.0 -78.916488,39.486544,0.0 -78.918142,39.485858,0.0 -78.926999,39.487003,0.0 -78.933613,39.48618,0.0 -78.938751,39.483732,0.0 -78.942293,39.480987,0.0 -78.942618,39.479614,0.0 -78.941526,39.476869,0.0 -78.939164,39.475267,0.0 -78.938869,39.4741,0.0 -78.941969,39.469959,0.0 -78.946603,39.46614,0.0 -78.953333,39.463645,0.0 -78.955483,39.442277,0.0 -78.956751,39.440264,0.0 -78.965484,39.438455,0.0 -78.967461,39.439804,0.0 -78.970118,39.443327,0.0 -78.978826,39.448678,0.0 -78.99695,39.454961,0.0 -79.010097,39.461048,0.0 -79.017147,39.466977,0.0 -79.020542,39.467002,0.0 -79.028159,39.46506,0.0 -79.030343,39.465403,0.0 -79.033884,39.467761,0.0 -79.035712,39.471331,0.0 -79.035623,39.473344,0.0 -79.036915,39.476795,0.0 -79.046276,39.483801,0.0 -79.050528,39.483299,0.0 -79.052447,39.482315,0.0 -79.05388,39.480094,0.0 -79.054989,39.473096,0.0 -79.056583,39.471014,0.0 -79.068627,39.474515,0.0 -79.08327,39.471379,0.0 -79.091329,39.472407,0.0 -79.094702,39.473253,0.0 -79.096517,39.472799,0.0 -79.098059,39.472073,0.0 -79.098875,39.471438,0.0 -79.099057,39.470259,0.0 -79.09824,39.468445,0.0 -79.096154,39.465542,0.0 -79.095428,39.462548,0.0 -79.104217,39.448358,0.0 -79.107933,39.445748,0.0 -79.11407,39.443321,0.0 -79.116369,39.440482,0.0 -79.116574,39.438058,0.0 -79.116932,39.435788,0.0 -79.117932,39.434412,0.0 -79.119433,39.433161,0.0 -79.12156,39.432786,0.0 -79.124036,39.433204,0.0 -79.129047,39.429542,0.0 -79.129404,39.426637,0.0 -79.128941,39.423279,0.0 -79.129816,39.419901,0.0 -79.132193,39.418275,0.0 -79.136696,39.417649,0.0 -79.140699,39.416649,0.0 -79.14195,39.414272,0.0 -79.142701,39.410519,0.0 -79.143827,39.408517,0.0 -79.145453,39.407767,0.0 -79.147455,39.407767,0.0 -79.149581,39.407767,0.0 -79.151583,39.408768,0.0 -79.153584,39.41202,0.0 -79.157212,39.413021,0.0 -79.159213,39.413021,0.0 -79.16134,39.411895,0.0 -79.166497,39.400888,0.0 -79.165593,39.397134,0.0 -79.16722,39.393256,0.0 -79.170494,39.392026,0.0 -79.1746,39.392756,0.0 -79.176977,39.39213,0.0 -79.179335,39.388342,0.0 -79.189465,39.3865,0.0 -79.193332,39.387974,0.0 -79.195543,39.38779,0.0 -79.197937,39.386132,0.0 -79.202943,39.377872,0.0 -79.213961,39.36532,0.0 -79.220357,39.363157,0.0 -79.229247,39.363662,0.0 -79.235878,39.358689,0.0 -79.25227,39.356663,0.0 -79.253928,39.354085,0.0 -79.253891,39.337222,0.0 -79.255306,39.335874,0.0 -79.269365,39.330732,0.0 -79.27228,39.328964,0.0 -79.282037,39.323048,0.0 -79.283723,39.30964,0.0 -79.290236,39.299323,0.0 -79.29271,39.298729,0.0 -79.302311,39.299554,0.0 -79.314768,39.304381,0.0 -79.33238,39.299919,0.0 -79.344344,39.293534,0.0 -79.345599,39.289733,0.0 -79.343625,39.287148,0.0 -79.343801,39.286096,0.0 -79.35375,39.278039,0.0 -79.361343,39.274924,0.0 -79.376154,39.273154,0.0 -79.387023,39.26554,0.0 -79.412051,39.240546,0.0 -79.42035,39.23888,0.0 -79.425059,39.233686,0.0 -79.424413,39.228171,0.0 -79.43983,39.217074,0.0 -79.452685,39.211719,0.0 -79.469156,39.2073,0.0 -79.476037,39.203728,0.0 -79.486862,39.205959,0.0 -79.486873,39.205961,0.0 -79.485874,39.264905,0.0 -79.486179,39.26497,0.0 -79.487274,39.265205,0.0 -79.486737,39.278149,0.0 -79.487651,39.279933,0.0 -79.486812,39.296367,0.0 -79.486072,39.3443,0.0 -79.484372,39.3443,0.0 -79.482648,39.521364,0.0 -79.482354,39.524682,0.0 -79.482366,39.531689,0.0 -79.478866,39.531689,0.0 -79.477764,39.642282,0.0 -79.476968,39.642986,0.0 -79.476574,39.644206,0.0 -79.476662,39.721078,0.0 -79.548465,39.720778,0.0 -79.608223,39.721154,0.0 -79.610623,39.721245,0.0 -79.763774,39.720776,0.0 -79.852904,39.720713,0.0 -79.853131,39.720713,0.0 -79.916171,39.720893,0.0 -80.041702,39.721252,0.0 -80.075947,39.72135,0.0 -80.308651,39.721283,0.0 -80.309457,39.721264,0.0 -80.421388,39.721189,0.0 -80.519342,39.721403,0.0 -80.519423,39.806181,0.0 -80.518891,39.890964,0.0 -80.519248,39.936967,0.0 -80.519115,39.939188,0.0 -80.519175,39.956648,0.0 -80.519203,39.959394,0.0 -80.519217,39.962199,0.0 -80.519218,39.962424,0.0 -80.519207,39.963381,0.0 -80.51912,40.01641,0.0 -80.519008,40.077001,0.0 -80.51896,40.078089,0.0 -80.519104,40.159672,0.0 -80.519056,40.172744,0.0 -80.519056,40.172771,0.0 -80.519039,40.342101,0.0 -80.517991,40.367968,0.0 -80.517991,40.398868,0.0 -80.517987,40.399644,0.0 -80.51769,40.462467,0.0 -80.51899,40.473667,0.0 -80.518995,40.477363,0.0 -80.519054,40.517922,0.0 -80.519057,40.517922,0.0 -80.519055,40.590173,0.0 -80.519086,40.590161,0.0 -80.519086,40.616385,0.0 -80.519039,40.616391,0.0 -80.518991,40.638801,0.0 -80.521917,40.636992,0.0 -80.52566,40.636068,0.0 -80.530093,40.636255,0.0 -80.532737,40.63559,0.0 -80.539541,40.632122,0.0 -80.545892,40.629702,0.0 -80.551126,40.628847,0.0 -80.56072,40.62368,0.0 -80.56784,40.617552,0.0 -80.571936,40.615456,0.0 -80.576736,40.614224,0.0 -80.579856,40.614304,0.0 -80.583633,40.61552,0.0 -80.592049,40.622496,0.0 -80.594065,40.623664,0.0 -80.598764,40.625263,0.0 -80.603876,40.625064,0.0 -80.616002,40.621696,0.0 -80.627171,40.619936,0.0 -80.634355,40.616095,0.0 -80.639379,40.61128,0.0 -80.644963,40.603648,0.0 -80.651716,40.597744,0.0 -80.653972,40.59648,0.0 -80.655188,40.596544,0.0 -80.662564,40.5916,0.0 -80.665892,40.587728,0.0 -80.667957,40.582496,0.0 -80.667781,40.578096,0.0 -80.666917,40.573664,0.0 -80.662708,40.570176,0.0 -80.655316,40.565184,0.0 -80.652436,40.562544,0.0 -80.64138,40.548417,0.0 -80.633107,40.538705,0.0 -80.630483,40.537921,0.0 -80.627507,40.535793,0.0 -80.622195,40.520497,0.0 -80.620883,40.512257,0.0 -80.618003,40.502049,0.0 -80.609058,40.489506,0.0 -80.60245,40.484226,0.0 -80.599194,40.482566,0.0 -80.595494,40.475266,0.0 -80.594794,40.471366,0.0 -80.596094,40.463366,0.0 -80.598294,40.458366,0.0 -80.604395,40.449767,0.0 -80.604895,40.446667,0.0 -80.611195,40.437767,0.0 -80.612295,40.434867,0.0 -80.612995,40.429367,0.0 -80.612295,40.418567,0.0 -80.612695,40.407667,0.0 -80.611795,40.403867,0.0 -80.612195,40.402667,0.0 -80.615195,40.399867,0.0 -80.628096,40.395867,0.0 -80.629699,40.395007,0.0 -80.632196,40.393667,0.0 -80.633596,40.390467,0.0 -80.631596,40.385468,0.0 -80.63074,40.3849,0.0 -80.619196,40.381768,0.0 -80.614396,40.378768,0.0 -80.609695,40.374968,0.0 -80.607595,40.369568,0.0 -80.608695,40.361968,0.0 -80.611796,40.355168,0.0 -80.612796,40.347668,0.0 -80.610796,40.340868,0.0 -80.602895,40.327869,0.0 -80.600495,40.321169,0.0 -80.599895,40.317669,0.0 -80.602895,40.307069,0.0 -80.606596,40.303869,0.0 -80.614896,40.291969,0.0 -80.616796,40.285269,0.0 -80.616196,40.27227,0.0 -80.619297,40.26517,0.0 -80.622497,40.26177,0.0 -80.637098,40.25427,0.0 -80.637198,40.25507,0.0 -80.644598,40.25127,0.0 -80.652098,40.24497,0.0 -80.661543,40.229798,0.0 -80.664299,40.21917,0.0 -80.666299,40.206271,0.0 -80.6681,40.199671,0.0 -80.6726,40.192371,0.0 -80.6796,40.186371,0.0 -80.681812,40.185566,0.0 -80.682008,40.185495,0.0 -80.683705,40.184215,0.0 -80.686137,40.181607,0.0 -80.702924,40.157257,0.0 -80.704602,40.154823,0.0 -80.705994,40.151591,0.0 -80.707322,40.144999,0.0 -80.710042,40.138311,0.0 -80.710554,40.125271,0.0 -80.70881,40.118088,0.0 -80.708106,40.117256,0.0 -80.707002,40.113272,0.0 -80.706702,40.110872,0.0 -80.707702,40.105372,0.0 -80.709102,40.101472,0.0 -80.710203,40.099572,0.0 -80.713003,40.096872,0.0 -80.730704,40.086472,0.0 -80.736804,40.080072,0.0 -80.738604,40.075672,0.0 -80.738504,40.071472,0.0 -80.737104,40.064972,0.0 -80.734304,40.059672,0.0 -80.733104,40.058772,0.0 -80.730904,40.049172,0.0 -80.730904,40.046672,0.0 -80.731504,40.037472,0.0 -80.733267,40.033357,0.0 -80.733304,40.033272,0.0 -80.7363,40.029929,0.0 -80.737389,40.027593,0.0 -80.737341,40.022969,0.0 -80.737805,40.020761,0.0 -80.740509,40.015225,0.0 -80.741901,40.007929,0.0 -80.742045,40.005641,0.0 -80.741085,39.996857,0.0 -80.740045,39.993929,0.0 -80.738717,39.985113,0.0 -80.740126,39.970793,0.0 -80.743166,39.969113,0.0 -80.74627,39.966233,0.0 -80.755135,39.961561,0.0 -80.758527,39.959241,0.0 -80.763375,39.953514,0.0 -80.764479,39.95025,0.0 -80.764511,39.946602,0.0 -80.761312,39.929098,0.0 -80.756784,39.920586,0.0 -80.755936,39.916554,0.0 -80.756432,39.91393,0.0 -80.758304,39.910426,0.0 -80.759296,39.909466,0.0 -80.760656,39.908906,0.0 -80.762592,39.908906,0.0 -80.768272,39.909642,0.0 -80.772641,39.911306,0.0 -80.782849,39.917162,0.0 -80.795714,39.91969,0.0 -80.80053,39.919434,0.0 -80.803394,39.918762,0.0 -80.806018,39.91713,0.0 -80.807618,39.914938,0.0 -80.809283,39.910314,0.0 -80.809683,39.906106,0.0 -80.809011,39.903226,0.0 -80.806179,39.897306,0.0 -80.802339,39.89161,0.0 -80.796162,39.88553,0.0 -80.793989,39.882787,0.0 -80.790156,39.872252,0.0 -80.790761,39.86728,0.0 -80.793131,39.863751,0.0 -80.799898,39.858912,0.0 -80.81643,39.853032,0.0 -80.821279,39.849982,0.0 -80.824276,39.847159,0.0 -80.826124,39.844238,0.0 -80.826964,39.841656,0.0 -80.826228,39.835802,0.0 -80.82303,39.827484,0.0 -80.82248,39.824971,0.0 -80.822181,39.811708,0.0 -80.824969,39.801092,0.0 -80.826079,39.798584,0.0 -80.835311,39.79069,0.0 -80.863048,39.775197,0.0 -80.866329,39.771738,0.0 -80.869092,39.766364,0.0 -80.869933,39.763555,0.0 -80.867596,39.757116,0.0 -80.865339,39.753251,0.0 -80.854717,39.742592,0.0 -80.852738,39.74104,0.0 -80.846091,39.737812,0.0 -80.836597,39.723925,0.0 -80.834563,39.721582,0.0 -80.833463,39.720812,0.0 -80.831551,39.719475,0.0 -80.829723,39.714041,0.0 -80.829764,39.711839,0.0 -80.831871,39.705655,0.0 -80.833882,39.703497,0.0 -80.839112,39.701033,0.0 -80.844721,39.69944,0.0 -80.852,39.69856,0.0 -80.854599,39.697473,0.0 -80.861718,39.693625,0.0 -80.863698,39.691724,0.0 -80.865805,39.686484,0.0 -80.86633,39.683167,0.0 -80.86667,39.678487,0.0 -80.865575,39.662751,0.0 -80.866647,39.652616,0.0 -80.869802,39.646896,0.0 -80.870771,39.642885,0.0 -80.870473,39.641764,0.0 -80.87102,39.638963,0.0 -80.876002,39.627084,0.0 -80.88036,39.620706,0.0 -80.892208,39.616756,0.0 -80.896514,39.616757,0.0 -80.906247,39.618431,0.0 -80.91762,39.618703,0.0 -80.925841,39.617396,0.0 -80.933292,39.614812,0.0 -80.936906,39.612616,0.0 -80.943782,39.606926,0.0 -80.970436,39.590127,0.0 -80.978664,39.583517,0.0 -80.987732,39.577262,0.0 -80.993695,39.571253,0.0 -80.996804,39.56912,0.0 -81.00866,39.562798,0.0 -81.020055,39.55541,0.0 -81.0239,39.552313,0.0 -81.026662,39.548547,0.0 -81.030169,39.545211,0.0 -81.038706,39.540048,0.0 -81.044902,39.5363,0.0 -81.049955,39.531893,0.0 -81.051982,39.52931,0.0 -81.060379,39.522744,0.0 -81.070594,39.515991,0.0 -81.07595,39.50966,0.0 -81.091433,39.496975,0.0 -81.100833,39.487175,0.0 -81.114433,39.466275,0.0 -81.115133,39.466275,0.0 -81.121472,39.457757,0.0 -81.124733,39.453375,0.0 -81.128533,39.449375,0.0 -81.132534,39.446275,0.0 -81.134434,39.445075,0.0 -81.138134,39.443775,0.0 -81.152534,39.443175,0.0 -81.16352,39.441186,0.0 -81.170634,39.439175,0.0 -81.179934,39.435121,0.0 -81.182307,39.433533,0.0 -81.185946,39.430731,0.0 -81.190714,39.423562,0.0 -81.200412,39.415303,0.0 -81.205223,39.410786,0.0 -81.208231,39.407147,0.0 -81.210833,39.403563,0.0 -81.211433,39.402031,0.0 -81.21087,39.397112,0.0 -81.211654,39.392977,0.0 -81.213064,39.390656,0.0 -81.217315,39.38759,0.0 -81.221372,39.386172,0.0 -81.223581,39.386062,0.0 -81.24184,39.390276,0.0 -81.249088,39.389992,0.0 -81.259788,39.386698,0.0 -81.270716,39.385914,0.0 -81.275677,39.383786,0.0 -81.281405,39.379258,0.0 -81.297517,39.374378,0.0 -81.304798,39.370538,0.0 -81.319598,39.36129,0.0 -81.326174,39.358186,0.0 -81.335599,39.352794,0.0 -81.342623,39.348042,0.0 -81.347567,39.34577,0.0 -81.356911,39.343178,0.0 -81.371271,39.342062,0.0 -81.375961,39.341697,0.0 -81.379674,39.342081,0.0 -81.384556,39.343449,0.0 -81.391249,39.348814,0.0 -81.393794,39.351706,0.0 -81.395883,39.355553,0.0 -81.400744,39.369221,0.0 -81.40277,39.376914,0.0 -81.406689,39.38809,0.0 -81.412706,39.394618,0.0 -81.420578,39.400378,0.0 -81.428642,39.405374,0.0 -81.435642,39.408474,0.0 -81.446543,39.410374,0.0 -81.456143,39.409274,0.0 -81.467744,39.403774,0.0 -81.473188,39.40017,0.0 -81.4829,39.389674,0.0 -81.489044,39.384074,0.0 -81.503189,39.373242,0.0 -81.513493,39.36705,0.0 -81.524309,39.36161,0.0 -81.53447,39.358234,0.0 -81.542346,39.352874,0.0 -81.557547,39.338774,0.0 -81.559647,39.330774,0.0 -81.560147,39.317874,0.0 -81.565047,39.293874,0.0 -81.565247,39.276175,0.0 -81.567347,39.270675,0.0 -81.570247,39.267675,0.0 -81.585559,39.268747,0.0 -81.588583,39.269787,0.0 -81.59516,39.273387,0.0 -81.603352,39.275531,0.0 -81.608408,39.276043,0.0 -81.613896,39.275339,0.0 -81.621305,39.273643,0.0 -81.643178,39.277195,0.0 -81.656138,39.277355,0.0 -81.670187,39.275963,0.0 -81.678331,39.273755,0.0 -81.683627,39.270939,0.0 -81.689483,39.266043,0.0 -81.69206,39.263227,0.0 -81.69638,39.257035,0.0 -81.696988,39.248747,0.0 -81.696636,39.246123,0.0 -81.695724,39.242859,0.0 -81.692203,39.236091,0.0 -81.691067,39.230139,0.0 -81.691339,39.227947,0.0 -81.692395,39.226443,0.0 -81.694603,39.224107,0.0 -81.700908,39.220844,0.0 -81.711628,39.219228,0.0 -81.724365,39.216508,0.0 -81.725583,39.215835,0.0 -81.726973,39.215068,0.0 -81.729949,39.211884,0.0 -81.733357,39.205868,0.0 -81.735805,39.196268,0.0 -81.737085,39.193836,0.0 -81.741533,39.189596,0.0 -81.749853,39.186489,0.0 -81.752754,39.184676,0.0 -81.755754,39.180976,0.0 -81.755815,39.180524,0.0 -81.756254,39.177276,0.0 -81.754254,39.171476,0.0 -81.744621,39.148413,0.0 -81.743565,39.141933,0.0 -81.744525,39.138829,0.0 -81.744838,39.130898,0.0 -81.744568,39.126816,0.0 -81.742153,39.116777,0.0 -81.742953,39.106578,0.0 -81.743853,39.102378,0.0 -81.745453,39.098078,0.0 -81.747253,39.095378,0.0 -81.752353,39.089878,0.0 -81.760753,39.084078,0.0 -81.764854,39.081978,0.0 -81.775554,39.078378,0.0 -81.781454,39.078078,0.0 -81.785554,39.078578,0.0 -81.790754,39.079778,0.0 -81.798155,39.082878,0.0 -81.803055,39.083878,0.0 -81.807855,39.083978,0.0 -81.810655,39.083278,0.0 -81.812355,39.082078,0.0 -81.813855,39.079278,0.0 -81.814155,39.073478,0.0 -81.813355,39.065878,0.0 -81.811655,39.059578,0.0 -81.808955,39.055178,0.0 -81.803355,39.047678,0.0 -81.800355,39.044978,0.0 -81.793304,39.040353,0.0 -81.786554,39.036579,0.0 -81.772854,39.026179,0.0 -81.767253,39.019979,0.0 -81.764253,39.015279,0.0 -81.764253,39.006579,0.0 -81.765153,39.002579,0.0 -81.767188,39.000115,0.0 -81.771975,38.996845,0.0 -81.774062,38.993682,0.0 -81.775551,38.990107,0.0 -81.776723,38.985142,0.0 -81.776466,38.982048,0.0 -81.775734,38.980737,0.0 -81.779883,38.972773,0.0 -81.78182,38.964935,0.0 -81.780736,38.958975,0.0 -81.778845,38.955892,0.0 -81.77396,38.951645,0.0 -81.769703,38.948707,0.0 -81.756975,38.937152,0.0 -81.756131,38.933545,0.0 -81.758506,38.927942,0.0 -81.759995,38.925828,0.0 -81.762659,38.924121,0.0 -81.766227,38.922946,0.0 -81.76976,38.92273,0.0 -81.774106,38.922965,0.0 -81.781248,38.924804,0.0 -81.785647,38.926193,0.0 -81.793372,38.930204,0.0 -81.796376,38.932498,0.0 -81.806137,38.942112,0.0 -81.814235,38.946168,0.0 -81.819692,38.947016,0.0 -81.825026,38.946603,0.0 -81.827354,38.945898,0.0 -81.831516,38.943697,0.0 -81.838067,38.937135,0.0 -81.844486,38.928746,0.0 -81.84607,38.913192,0.0 -81.845312,38.910088,0.0 -81.848653,38.901407,0.0 -81.855971,38.892734,0.0 -81.858921,38.89019,0.0 -81.874857,38.881174,0.0 -81.889233,38.874279,0.0 -81.892837,38.873869,0.0 -81.898541,38.874582,0.0 -81.908645,38.87846,0.0 -81.910312,38.879294,0.0 -81.915898,38.88427,0.0 -81.926967,38.891602,0.0 -81.928,38.893492,0.0 -81.928352,38.895371,0.0 -81.926671,38.901311,0.0 -81.919098,38.908615,0.0 -81.917757,38.910604,0.0 -81.911936,38.915564,0.0 -81.908341,38.917403,0.0 -81.90091,38.924338,0.0 -81.899953,38.925405,0.0 -81.89847,38.929603,0.0 -81.900595,38.937671,0.0 -81.9066,38.945262,0.0 -81.912443,38.954343,0.0 -81.918214,38.966595,0.0 -81.926561,38.977508,0.0 -81.933186,38.987659,0.0 -81.936828,38.990414,0.0 -81.941829,38.993295,0.0 -81.951447,38.996032,0.0 -81.95926,38.995227,0.0 -81.960832,38.994275,0.0 -81.967769,38.992955,0.0 -81.973871,38.992413,0.0 -81.977455,38.992679,0.0 -81.979371,38.993193,0.0 -81.981158,38.994351,0.0 -81.982032,38.995697,0.0 -81.982761,39.001978,0.0 -81.983761,39.005478,0.0 -81.987061,39.011978,0.0 -81.991361,39.018378,0.0 -81.994961,39.022478,0.0 -82.002261,39.027878,0.0 -82.007062,39.029578,0.0 -82.017562,39.030078,0.0 -82.027262,39.028378,0.0 -82.035963,39.025478,0.0 -82.038763,39.022678,0.0 -82.041563,39.017878,0.0 -82.045663,39.003778,0.0 -82.049163,38.997278,0.0 -82.051563,38.994378,0.0 -82.058764,38.990078,0.0 -82.068864,38.984878,0.0 -82.079364,38.981078,0.0 -82.089065,38.975978,0.0 -82.091565,38.973778,0.0 -82.093165,38.97098,0.0 -82.094865,38.964578,0.0 -82.098873,38.958319,0.0 -82.100565,38.955678,0.0 -82.109065,38.945579,0.0 -82.110866,38.940379,0.0 -82.110565,38.935279,0.0 -82.111666,38.932579,0.0 -82.120966,38.921079,0.0 -82.128866,38.909979,0.0 -82.134766,38.905579,0.0 -82.143167,38.898079,0.0 -82.144567,38.891679,0.0 -82.145267,38.883479,0.0 -82.142167,38.87708,0.0 -82.139988,38.870345,0.0 -82.139224,38.86502,0.0 -82.141616,38.851394,0.0 -82.144867,38.84048,0.0 -82.147667,38.83698,0.0 -82.16157,38.824632,0.0 -82.165898,38.822437,0.0 -82.179478,38.817376,0.0 -82.191172,38.815137,0.0 -82.19928,38.808688,0.0 -82.20929,38.802672,0.0 -82.214494,38.798691,0.0 -82.217269,38.79568,0.0 -82.221566,38.787187,0.0 -82.221518,38.77981,0.0 -82.220449,38.773739,0.0 -82.216614,38.76835,0.0 -82.207141,38.763943,0.0 -82.201537,38.760372,0.0 -82.198882,38.757725,0.0 -82.195606,38.752441,0.0 -82.193268,38.741182,0.0 -82.189668,38.737382,0.0 -82.188268,38.734082,0.0 -82.186568,38.722482,0.0 -82.184567,38.715882,0.0 -82.182467,38.708782,0.0 -82.182867,38.705482,0.0 -82.185067,38.699182,0.0 -82.190167,38.687382,0.0 -82.190867,38.680383,0.0 -82.187667,38.672683,0.0 -82.186067,38.666783,0.0 -82.185567,38.659583,0.0 -82.179067,38.648883,0.0 -82.176767,38.642783,0.0 -82.174267,38.633183,0.0 -82.172667,38.629684,0.0 -82.172066,38.625984,0.0 -82.172066,38.619284,0.0 -82.175167,38.608484,0.0 -82.177267,38.603784,0.0 -82.181967,38.599384,0.0 -82.188767,38.594984,0.0 -82.193824,38.593096,0.0 -82.205171,38.591719,0.0 -82.218967,38.591683,0.0 -82.222168,38.591384,0.0 -82.245969,38.598483,0.0 -82.252469,38.598783,0.0 -82.26207,38.598183,0.0 -82.27147,38.595383,0.0 -82.27427,38.593683,0.0 -82.287102,38.582588,0.0 -82.291271,38.578983,0.0 -82.293471,38.575383,0.0 -82.293871,38.572683,0.0 -82.293271,38.560283,0.0 -82.295671,38.538483,0.0 -82.297771,38.533283,0.0 -82.300271,38.529383,0.0 -82.302871,38.523183,0.0 -82.303971,38.517683,0.0 -82.303071,38.504384,0.0 -82.304223,38.496308,0.0 -82.306351,38.490692,0.0 -82.310639,38.483172,0.0 -82.312511,38.476116,0.0 -82.313935,38.468084,0.0 -82.318111,38.457876,0.0 -82.323999,38.449268,0.0 -82.330335,38.4445,0.0 -82.34064,38.440948,0.0 -82.360145,38.438596,0.0 -82.381773,38.434783,0.0 -82.389746,38.434355,0.0 -82.404882,38.439347,0.0 -82.434375,38.430082,0.0 -82.447076,38.426982,0.0 -82.459676,38.424682,0.0 -82.486577,38.418082,0.0 -82.507676,38.410783,0.0 -82.507678,38.410782,0.0 -82.529579,38.405182,0.0 -82.540199,38.403666,0.0 -82.549799,38.403202,0.0 -82.560664,38.404338,0.0 -82.569368,38.406258,0.0 -82.577176,38.40877,0.0 -82.579976,38.41013,0.0 -82.588249,38.415489,0.0 -82.593673,38.421809,0.0 -82.596281,38.417681,0.0 -82.597113,38.412881,0.0 -82.597033,38.409937,0.0 -82.595001,38.40133,0.0 -82.597801,38.395154,0.0 -82.599241,38.39317,0.0 -82.599737,38.39037,0.0 -82.599273,38.388738,0.0 -82.595369,38.382722,0.0 -82.595382,38.382712,0.0 -82.594905,38.381179,0.0 -82.593008,38.375082,0.0 -82.593952,38.371847,0.0 -82.596654,38.367338,0.0 -82.597524,38.364843,0.0 -82.598189,38.357885,0.0 -82.597979,38.344909,0.0 -82.596525,38.342849,0.0 -82.592543,38.34166,0.0 -82.589724,38.340265,0.0 -82.587951,38.338595,0.0 -82.585363,38.334064,0.0 -82.576936,38.328275,0.0 -82.572691,38.318801,0.0 -82.571877,38.315781,0.0 -82.571964,38.313606,0.0 -82.572893,38.311981,0.0 -82.578352,38.305458,0.0 -82.58146,38.300445,0.0 -82.583056,38.296829,0.0 -82.582823,38.295478,0.0 -82.579743,38.291726,0.0 -82.57948,38.284928,0.0 -82.578782,38.281747,0.0 -82.57672,38.277513,0.0 -82.5746,38.274721,0.0 -82.574656,38.263873,0.0 -82.578254,38.254809,0.0 -82.581796,38.248592,0.0 -82.584001,38.246371,0.0 -82.586061,38.245616,0.0 -82.59497,38.245453,0.0 -82.60423,38.247303,0.0 -82.604625,38.247303,0.0 -82.605333,38.247303,0.0 -82.607131,38.245975,0.0 -82.61226,38.236087,0.0 -82.61252,38.234553,0.0 -82.610367,38.226772,0.0 -82.608944,38.22366,0.0 -82.60575,38.221144,0.0 -82.600353,38.218949,0.0 -82.598437,38.217393,0.0 -82.598864,38.201007,0.0 -82.599326,38.197231,0.0 -82.60425,38.187639,0.0 -82.611343,38.171548,0.0 -82.613487,38.170242,0.0 -82.619429,38.169027,0.0 -82.625457,38.170491,0.0 -82.639054,38.171114,0.0 -82.642997,38.16956,0.0</coordinates>
						</LinearRing>
					</outerBoundaryIs>
				</Polygon>
			</Placemark>
		</Folder>
		<Style id='poly-000000-2-0-normal'>
			<LineStyle>
				<color>ff000000</color>
				<width>2</width>
			</LineStyle>
			<PolyStyle>
				<color> 0000000</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
		</Style>
		<Style id='poly-000000-2-0-highlight'>
			<LineStyle>
				<color>ff000000</color>
				<width>3.0</width>
			</LineStyle>
			<PolyStyle>
				<color> 0000000</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
		</Style>
		<StyleMap id='poly-000000-2-0'>
			<Pair>
				<key>normal</key>
				<styleUrl>#poly-000000-2-0-normal</styleUrl>
			</Pair>
			<Pair>
				<key>highlight</key>
				<styleUrl>#poly-000000-2-0-highlight</styleUrl>
			</Pair>
		</StyleMap>
		<Style id='poly-4186F0-3-66-nodesc-normal'>
			<LineStyle>
				<color>ffF08641</color>
				<width>3</width>
			</LineStyle>
			<PolyStyle>
				<color>42F08641</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<Style id='poly-4186F0-3-66-nodesc-highlight'>
			<LineStyle>
				<color>ffF08641</color>
				<width>5.0</width>
			</LineStyle>
			<PolyStyle>
				<color>42F08641</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<StyleMap id='poly-4186F0-3-66-nodesc'>
			<Pair>
				<key>normal</key>
				<styleUrl>#poly-4186F0-3-66-nodesc-normal</styleUrl>
			</Pair>
			<Pair>
				<key>highlight</key>
				<styleUrl>#poly-4186F0-3-66-nodesc-highlight</styleUrl>
			</Pair>
		</StyleMap>
		<Style id='poly-62AF44-1-77-nodesc-normal'>
			<LineStyle>
				<color>ff44AF62</color>
				<width>1</width>
			</LineStyle>
			<PolyStyle>
				<color>4D44AF62</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<Style id='poly-62AF44-1-77-nodesc-highlight'>
			<LineStyle>
				<color>ff44AF62</color>
				<width>2.0</width>
			</LineStyle>
			<PolyStyle>
				<color>4D44AF62</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<StyleMap id='poly-62AF44-1-77-nodesc'>
			<Pair>
				<key>normal</key>
				<styleUrl>#poly-62AF44-1-77-nodesc-normal</styleUrl>
			</Pair>
			<Pair>
				<key>highlight</key>
				<styleUrl>#poly-62AF44-1-77-nodesc-highlight</styleUrl>
			</Pair>
		</StyleMap>
		<Style id='poly-A61B4A-5-0-normal'>
			<LineStyle>
				<color>ff4A1BA6</color>
				<width>5</width>
			</LineStyle>
			<PolyStyle>
				<color> 04A1BA6</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
		</Style>
		<Style id='poly-A61B4A-5-0-highlight'>
			<LineStyle>
				<color>ff4A1BA6</color>
				<width>8.0</width>
			</LineStyle>
			<PolyStyle>
				<color> 04A1BA6</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
		</Style>
		<StyleMap id='poly-A61B4A-5-0'>
			<Pair>
				<key>normal</key>
				<styleUrl>#poly-A61B4A-5-0-normal</styleUrl>
			</Pair>
			<Pair>
				<key>highlight</key>
				<styleUrl>#poly-A61B4A-5-0-highlight</styleUrl>
			</Pair>
		</StyleMap>
		<Style id='poly-C6A4CF-2-102-nodesc-normal'>
			<LineStyle>
				<color>ffCFA4C6</color>
				<width>2</width>
			</LineStyle>
			<PolyStyle>
				<color>66CFA4C6</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<Style id='poly-C6A4CF-2-102-nodesc-highlight'>
			<LineStyle>
				<color>ffCFA4C6</color>
				<width>3.0</width>
			</LineStyle>
			<PolyStyle>
				<color>66CFA4C6</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<StyleMap id='poly-C6A4CF-2-102-nodesc'>
			<Pair>
				<key>normal</key>
				<styleUrl>#poly-C6A4CF-2-102-nodesc-normal</styleUrl>
			</Pair>
			<Pair>
				<key>highlight</key>
				<styleUrl>#poly-C6A4CF-2-102-nodesc-highlight</styleUrl>
			</Pair>
		</StyleMap>
		<Style id='poly-EE9C96-3-77-nodesc-normal'>
			<LineStyle>
				<color>ff969CEE</color>
				<width>3</width>
			</LineStyle>
			<PolyStyle>
				<color>4D969CEE</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<Style id='poly-EE9C96-3-77-nodesc-highlight'>
			<LineStyle>
				<color>ff969CEE</color>
				<width>5.0</width>
			</LineStyle>
			<PolyStyle>
				<color>4D969CEE</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<StyleMap id='poly-EE9C96-3-77-nodesc'>
			<Pair>
				<key>normal</key>
				<styleUrl>#poly-EE9C96-3-77-nodesc-normal</styleUrl>
			</Pair>
			<Pair>
				<key>highlight</key>
				<styleUrl>#poly-EE9C96-3-77-nodesc-highlight</styleUrl>
			</Pair>
		</StyleMap>
		<Style id='poly-F8971B-1-77-nodesc-normal'>
			<LineStyle>
				<color>ff1B97F8</color>
				<width>1</width>
			</LineStyle>
			<PolyStyle>
				<color>4D1B97F8</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<Style id='poly-F8971B-1-77-nodesc-highlight'>
			<LineStyle>
				<color>ff1B97F8</color>
				<width>2.0</width>
			</LineStyle>
			<PolyStyle>
				<color>4D1B97F8</color>
				<fill>1</fill>
				<outline>1</outline>
			</PolyStyle>
			<BalloonStyle>
				<text><![CDATA[<h3>$[name]</h3>]]></text>
			</BalloonStyle>
		</Style>
		<StyleMap id='poly-F8971B-1-77-nodesc'>
			<Pair>
				<key>normal</key>
				<styleUrl>#poly-F8971B-1-77-nodesc-normal</styleUrl>
			</Pair>
			<Pair>
				<key>highlight</key>
				<styleUrl>#poly-F8971B-1-77-nodesc-highlight</styleUrl>
			</Pair>
		</StyleMap>
	</Document>
</kml>`;
    }
})();