diff --git a/build.py b/build.py index 504cf8054e..86f303d7d6 100755 --- a/build.py +++ b/build.py @@ -309,6 +309,7 @@ def examples_star_json(name, match): "externs/bingmaps.js", "externs/bootstrap.js", "externs/closure-compiler.js", + "externs/esrijson.js", "externs/example.js", "externs/fastclick.js", "externs/geojson.js", diff --git a/config/examples-all.json b/config/examples-all.json index 3e75c54f08..35e32667df 100644 --- a/config/examples-all.json +++ b/config/examples-all.json @@ -14,6 +14,7 @@ "externs/bingmaps.js", "externs/bootstrap.js", "externs/closure-compiler.js", + "externs/esrijson.js", "externs/example.js", "externs/fastclick.js", "externs/geojson.js", diff --git a/config/ol.json b/config/ol.json index c74879e641..7367530e45 100644 --- a/config/ol.json +++ b/config/ol.json @@ -5,6 +5,7 @@ "externs": [ "externs/bingmaps.js", "externs/closure-compiler.js", + "externs/esrijson.js", "externs/geojson.js", "externs/oli.js", "externs/olx.js", diff --git a/examples/vector-esri-edit.html b/examples/vector-esri-edit.html new file mode 100644 index 0000000000..48bfe4e673 --- /dev/null +++ b/examples/vector-esri-edit.html @@ -0,0 +1,20 @@ +--- +template: example.html +title: esri ArcGIS REST Feature Service example with editing +shortdesc: Example of using an ArcGIS REST Feature Service in an editing application. +docs: > + This example loads features from ArcGIS REST Feature Service and allows to add new features or update existing features. +tags: "vector, esri, ArcGIS, REST, Feature, Service, bbox, loading, server, edit, updateFeature, addFeature" +--- +
+
+
+
+ + +
+
+
diff --git a/examples/vector-esri-edit.js b/examples/vector-esri-edit.js new file mode 100644 index 0000000000..234b8d056d --- /dev/null +++ b/examples/vector-esri-edit.js @@ -0,0 +1,151 @@ +goog.require('ol.Attribution'); +goog.require('ol.Map'); +goog.require('ol.View'); +goog.require('ol.format.EsriJSON'); +goog.require('ol.interaction'); +goog.require('ol.interaction.Draw'); +goog.require('ol.interaction.Modify'); +goog.require('ol.interaction.Select'); +goog.require('ol.layer.Tile'); +goog.require('ol.layer.Vector'); +goog.require('ol.loadingstrategy'); +goog.require('ol.proj'); +goog.require('ol.source.Vector'); +goog.require('ol.source.XYZ'); +goog.require('ol.tilegrid.XYZ'); + + +var serviceUrl = 'http://services.arcgis.com/rOo16HdIMeOBI4Mb/arcgis/rest/' + + 'services/PDX_Pedestrian_Districts/FeatureServer/'; +var layer = '0'; + +var esrijsonFormat = new ol.format.EsriJSON(); + +var vectorSource = new ol.source.Vector({ + loader: function(extent, resolution, projection) { + var url = serviceUrl + layer + '/query/?f=json&' + + 'returnGeometry=true&spatialRel=esriSpatialRelIntersects&geometry=' + + encodeURIComponent('{"xmin":' + extent[0] + ',"ymin":' + + extent[1] + ',"xmax":' + extent[2] + ',"ymax":' + extent[3] + + ',"spatialReference":{"wkid":102100}}') + + '&geometryType=esriGeometryEnvelope&inSR=102100&outFields=*' + + '&outSR=102100'; + $.ajax({url: url, dataType: 'jsonp', success: function(response) { + // dataProjection will be read from document + var features = esrijsonFormat.readFeatures(response, { + featureProjection: projection + }); + if (features.length > 0) { + vectorSource.addFeatures(features); + } + }}); + }, + strategy: ol.loadingstrategy.tile(new ol.tilegrid.XYZ({ + tileSize: 512 + })) +}); + +var vector = new ol.layer.Vector({ + source: vectorSource +}); + +var draw = new ol.interaction.Draw({ + source: vectorSource, + type: /** @type {ol.geom.GeometryType} */ ('Polygon') +}); + +var select = new ol.interaction.Select(); +select.setActive(false); +var selected = select.getFeatures(); + +var modify = new ol.interaction.Modify({ + features: selected +}); +modify.setActive(false); + +var typeSelect = document.getElementById('type'); + + +/** + * Let user change the interaction type. + * @param {Event} e Change event. + */ +typeSelect.onchange = function(e) { + draw.setActive(typeSelect.value === 'DRAW'); + select.setActive(typeSelect.value === 'MODIFY'); + modify.setActive(typeSelect.value === 'MODIFY'); +}; + +var dirty = {}; + +selected.on('add', function(evt) { + var feature = evt.element; + feature.on('change', function(evt) { + dirty[evt.target.getId()] = true; + }); +}); + +selected.on('remove', function(evt) { + var feature = evt.element; + var fid = feature.getId(); + if (dirty[fid] === true) { + var payload = '[' + esrijsonFormat.writeFeature(feature, { + featureProjection: select.getMap().getView().getProjection() + }) + ']'; + var url = serviceUrl + layer + '/updateFeatures'; + $.post(url, { f: 'json', features: payload }).done(function(data) { + var result = JSON.parse(data); + if (result.updateResults && result.updateResults.length > 0) { + if (result.updateResults[0].success !== true) { + var error = result.updateResults[0].error; + alert(error.description + ' (' + error.code + ')'); + } else { + delete dirty[fid]; + } + } + }); + } +}); + +draw.on('drawend', function(evt) { + var feature = evt.feature; + var payload = '[' + esrijsonFormat.writeFeature(feature, { + featureProjection: evt.target.getMap().getView().getProjection() + }) + ']'; + var url = serviceUrl + layer + '/addFeatures'; + $.post(url, { f: 'json', features: payload }).done(function(data) { + var result = JSON.parse(data); + if (result.addResults && result.addResults.length > 0) { + if (result.addResults[0].success === true) { + feature.setId(result.addResults[0]['objectId']); + vectorSource.clear(); + } else { + var error = result.addResults[0].error; + alert(error.description + ' (' + error.code + ')'); + } + } + }); +}); + +var attribution = new ol.Attribution({ + html: 'Tiles © ArcGIS' +}); + +var raster = new ol.layer.Tile({ + source: new ol.source.XYZ({ + attributions: [attribution], + url: 'http://server.arcgisonline.com/ArcGIS/rest/services/' + + 'World_Topo_Map/MapServer/tile/{z}/{y}/{x}' + }) +}); + +var map = new ol.Map({ + interactions: ol.interaction.defaults().extend([draw, select, modify]), + layers: [raster, vector], + target: document.getElementById('map'), + view: new ol.View({ + center: ol.proj.transform([-122.619, 45.512], 'EPSG:4326', 'EPSG:3857'), + zoom: 12 + }) +}); diff --git a/examples/vector-esri.html b/examples/vector-esri.html new file mode 100644 index 0000000000..d153fffeff --- /dev/null +++ b/examples/vector-esri.html @@ -0,0 +1,18 @@ +--- +template: example.html +title: esri ArcGIS REST Feature Service example +shortdesc: Example of using an ArcGIS REST Feature Service with a BBOX strategy. +docs: > + This example loads new features from ArcGIS REST Feature Service when the view extent changes. +tags: "vector, esri, ArcGIS, REST, Feature, Service, bbox, loading, server" +--- +
+
+
+
+
+   +
+
+
+
diff --git a/examples/vector-esri.js b/examples/vector-esri.js new file mode 100644 index 0000000000..2cacb97269 --- /dev/null +++ b/examples/vector-esri.js @@ -0,0 +1,154 @@ +goog.require('ol.Attribution'); +goog.require('ol.Map'); +goog.require('ol.View'); +goog.require('ol.format.EsriJSON'); +goog.require('ol.layer.Tile'); +goog.require('ol.layer.Vector'); +goog.require('ol.loadingstrategy'); +goog.require('ol.proj'); +goog.require('ol.source.Vector'); +goog.require('ol.source.XYZ'); +goog.require('ol.style.Fill'); +goog.require('ol.style.Stroke'); +goog.require('ol.style.Style'); +goog.require('ol.tilegrid.XYZ'); + + +var serviceUrl = 'http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/' + + 'Petroleum/KSFields/FeatureServer/'; +var layer = '0'; + +var esrijsonFormat = new ol.format.EsriJSON(); + +var styleCache = { + 'ABANDONED': [ + new ol.style.Style({ + fill: new ol.style.Fill({ + color: 'rgba(225, 225, 225, 255)' + }), + stroke: new ol.style.Stroke({ + color: 'rgba(0, 0, 0, 255)', + width: 0.4 + }) + }) + ], + 'GAS': [ + new ol.style.Style({ + fill: new ol.style.Fill({ + color: 'rgba(255, 0, 0, 255)' + }), + stroke: new ol.style.Stroke({ + color: 'rgba(110, 110, 110, 255)', + width: 0.4 + }) + }) + ], + 'OIL': [ + new ol.style.Style({ + fill: new ol.style.Fill({ + color: 'rgba(56, 168, 0, 255)' + }), + stroke: new ol.style.Stroke({ + color: 'rgba(110, 110, 110, 255)', + width: 0 + }) + }) + ], + 'OILGAS': [ + new ol.style.Style({ + fill: new ol.style.Fill({ + color: 'rgba(168, 112, 0, 255)' + }), + stroke: new ol.style.Stroke({ + color: 'rgba(110, 110, 110, 255)', + width: 0.4 + }) + }) + ] +}; + +var vectorSource = new ol.source.Vector({ + loader: function(extent, resolution, projection) { + var url = serviceUrl + layer + '/query/?f=json&' + + 'returnGeometry=true&spatialRel=esriSpatialRelIntersects&geometry=' + + encodeURIComponent('{"xmin":' + extent[0] + ',"ymin":' + + extent[1] + ',"xmax":' + extent[2] + ',"ymax":' + extent[3] + + ',"spatialReference":{"wkid":102100}}') + + '&geometryType=esriGeometryEnvelope&inSR=102100&outFields=*' + + '&outSR=102100'; + $.ajax({url: url, dataType: 'jsonp', success: function(response) { + // dataProjection will be read from document + var features = esrijsonFormat.readFeatures(response, { + featureProjection: projection + }); + if (features.length > 0) { + vectorSource.addFeatures(features); + } + }}); + }, + strategy: ol.loadingstrategy.tile(new ol.tilegrid.XYZ({ + tileSize: 512 + })) +}); + +var vector = new ol.layer.Vector({ + source: vectorSource, + style: function(feature, resolution) { + var classify = feature.get('activeprod'); + return styleCache[classify]; + } +}); + + +var attribution = new ol.Attribution({ + html: 'Tiles © ArcGIS' +}); + +var raster = new ol.layer.Tile({ + source: new ol.source.XYZ({ + attributions: [attribution], + url: 'http://server.arcgisonline.com/ArcGIS/rest/services/' + + 'World_Topo_Map/MapServer/tile/{z}/{y}/{x}' + }) +}); + +var map = new ol.Map({ + layers: [raster, vector], + target: document.getElementById('map'), + view: new ol.View({ + center: ol.proj.transform([-97.6114, 38.8403], 'EPSG:4326', 'EPSG:3857'), + zoom: 7 + }) +}); + +var displayFeatureInfo = function(pixel) { + var features = []; + map.forEachFeatureAtPixel(pixel, function(feature, layer) { + features.push(feature); + }); + if (features.length > 0) { + var info = []; + var i, ii; + for (i = 0, ii = features.length; i < ii; ++i) { + info.push(features[i].get('field_name')); + } + document.getElementById('info').innerHTML = info.join(', ') || '(unknown)'; + map.getTarget().style.cursor = 'pointer'; + } else { + document.getElementById('info').innerHTML = ' '; + map.getTarget().style.cursor = ''; + } +}; + +map.on('pointermove', function(evt) { + if (evt.dragging) { + return; + } + var pixel = map.getEventPixel(evt.originalEvent); + displayFeatureInfo(pixel); +}); + +map.on('click', function(evt) { + displayFeatureInfo(evt.pixel); +}); diff --git a/externs/esrijson.js b/externs/esrijson.js new file mode 100644 index 0000000000..22a62e9a3d --- /dev/null +++ b/externs/esrijson.js @@ -0,0 +1,198 @@ + +/** + * @fileoverview Externs for EsriJSON. + * @see http://resources.arcgis.com/en/help/rest/apiref/geometry.html + * @externs + */ + + + +/** + * @constructor + */ +var EsriJSONObject = function() {}; + + +/** + * @type {!EsriJSONCRS} + */ +EsriJSONObject.prototype.spatialReference; + + + +/** + * @constructor + */ +var EsriJSONCRS = function() {}; + + +/** + * CRS well know identifier. + * @type {number} + */ +EsriJSONCRS.prototype.wkid; + + + +/** + * @constructor + * @extends {EsriJSONObject} + */ +var EsriJSONPoint = function() {}; + + +/** + * M value of point. + * @type {number} + */ +EsriJSONPoint.prototype.m; + + +/** + * X coordinate of point. + * @type {number} + */ +EsriJSONPoint.prototype.x; + + + +/** + * Y coordinate of point. + * @type {number} + */ +EsriJSONPoint.prototype.y; + + +/** + * Z coordinate of point. + * @type {number|undefined} + */ +EsriJSONPoint.prototype.z; + + +/** + * @constructor + * @extends {EsriJSONObject} + */ +var EsriJSONMultipoint = function() {}; + + +/** + * Does Multipoint have M values? + * @type {boolean|undefined} + */ +EsriJSONMultipoint.prototype.hasM; + + +/** + * Does Multipoint have Z values? + * @type {boolean|undefined} + */ +EsriJSONMultipoint.prototype.hasZ; + + +/** + * @type {!Array.>} + */ +EsriJSONMultipoint.prototype.points; + + +/** + * @constructor + * @extends {EsriJSONObject} + */ +var EsriJSONPolyline = function() {}; + + +/** + * Does Polyline have M values? + * @type {boolean|undefined} + */ +EsriJSONPolyline.prototype.hasM; + + +/** + * Does Polyline have Z values? + * @type {boolean|undefined} + */ +EsriJSONPolyline.prototype.hasZ; + + +/** + * @type {!Array.>>} + */ +EsriJSONPolyline.prototype.paths; + + +/** + * @constructor + * @extends {EsriJSONObject} + */ +var EsriJSONPolygon = function() {}; + + +/** + * Does Polygon have M values? + * @type {boolean|undefined} + */ +EsriJSONPolygon.prototype.hasM; + + +/** + * Does Polygon have Z values? + * @type {boolean|undefined} + */ +EsriJSONPolygon.prototype.hasZ; + + +/** + * @type {!Array.>>} + */ +EsriJSONPolygon.prototype.rings; + + +/** + * @typedef {(EsriJSONPoint|EsriJSONMultipoint|EsriJSONPolyline| + EsriJSONPolygon)} + */ +var EsriJSONGeometry; + + +/** + * @constructor + * @extends {EsriJSONObject} + */ +var EsriJSONFeature = function() {}; + + +/** + * @type {EsriJSONGeometry} + */ +EsriJSONFeature.prototype.geometry; + + +/** + * @type {Object.} + */ +EsriJSONFeature.prototype.attributes; + + + +/** + * @constructor + * @extends {EsriJSONObject} + */ +var EsriJSONFeatureCollection = function() {}; + + +/** + * @type {!Array.} + */ +EsriJSONFeatureCollection.prototype.features; + + +/** + * The name of the attribute that contains ids. + * @type {string} + */ +EsriJSONFeatureCollection.prototype.objectIdFieldName; diff --git a/externs/olx.js b/externs/olx.js index 674b03b8ee..e1750071c9 100644 --- a/externs/olx.js +++ b/externs/olx.js @@ -1635,6 +1635,21 @@ olx.format.GeoJSONOptions.prototype.defaultDataProjection; olx.format.GeoJSONOptions.prototype.geometryName; +/** + * @typedef {{geometryName: (string|undefined)}} + * @api + */ +olx.format.EsriJSONOptions; + + +/** + * Geometry name to use when creating features. + * @type {string|undefined} + * @api + */ +olx.format.EsriJSONOptions.prototype.geometryName; + + /** * @typedef {{factor: (number|undefined), * geometryLayout: (ol.geom.GeometryLayout|undefined)}} diff --git a/src/ol/format/esrijsonformat.js b/src/ol/format/esrijsonformat.js new file mode 100644 index 0000000000..c081768aa6 --- /dev/null +++ b/src/ol/format/esrijsonformat.js @@ -0,0 +1,706 @@ +goog.provide('ol.format.EsriJSON'); + +goog.require('goog.array'); +goog.require('goog.asserts'); +goog.require('goog.object'); +goog.require('ol.Feature'); +goog.require('ol.extent'); +goog.require('ol.format.Feature'); +goog.require('ol.format.JSONFeature'); +goog.require('ol.geom.GeometryLayout'); +goog.require('ol.geom.GeometryType'); +goog.require('ol.geom.LineString'); +goog.require('ol.geom.LinearRing'); +goog.require('ol.geom.MultiLineString'); +goog.require('ol.geom.MultiPoint'); +goog.require('ol.geom.MultiPolygon'); +goog.require('ol.geom.Point'); +goog.require('ol.geom.Polygon'); +goog.require('ol.geom.flat.orient'); +goog.require('ol.proj'); + + + +/** + * @classdesc + * Feature format for reading and writing data in the EsriJSON format. + * + * @constructor + * @extends {ol.format.JSONFeature} + * @param {olx.format.EsriJSONOptions=} opt_options Options. + * @api + */ +ol.format.EsriJSON = function(opt_options) { + + var options = goog.isDef(opt_options) ? opt_options : {}; + + goog.base(this); + + /** + * Name of the geometry attribute for features. + * @type {string|undefined} + * @private + */ + this.geometryName_ = options.geometryName; + +}; +goog.inherits(ol.format.EsriJSON, ol.format.JSONFeature); + + +/** + * @param {EsriJSONGeometry} object Object. + * @param {olx.format.ReadOptions=} opt_options Read options. + * @private + * @return {ol.geom.Geometry} Geometry. + */ +ol.format.EsriJSON.readGeometry_ = function(object, opt_options) { + if (goog.isNull(object)) { + return null; + } + var type; + if (goog.isNumber(object.x) && goog.isNumber(object.y)) { + type = ol.geom.GeometryType.POINT; + } else if (goog.isDefAndNotNull(object.points)) { + type = ol.geom.GeometryType.MULTI_POINT; + } else if (goog.isDefAndNotNull(object.paths)) { + if (object.paths.length === 1) { + type = ol.geom.GeometryType.LINE_STRING; + } else { + type = ol.geom.GeometryType.MULTI_LINE_STRING; + } + } else if (goog.isDefAndNotNull(object.rings)) { + var layout = ol.format.EsriJSON.getGeometryLayout_(object); + var rings = ol.format.EsriJSON.convertRings_(object.rings, layout); + object = /** @type {EsriJSONGeometry} */(goog.object.clone(object)); + if (rings.length === 1) { + type = ol.geom.GeometryType.POLYGON; + object.rings = rings[0]; + } else { + type = ol.geom.GeometryType.MULTI_POLYGON; + object.rings = rings; + } + } + goog.asserts.assert(goog.isDef(type), 'geometry type should be defined'); + var geometryReader = ol.format.EsriJSON.GEOMETRY_READERS_[type]; + goog.asserts.assert(goog.isDef(geometryReader), + 'geometryReader should be defined'); + return /** @type {ol.geom.Geometry} */ ( + ol.format.Feature.transformWithOptions( + geometryReader(object), false, opt_options)); +}; + + +/** + * Determines inner and outer rings. + * Checks if any polygons in this array contain any other polygons in this + * array. It is used for checking for holes. + * Logic inspired by: https://github.com/Esri/terraformer-arcgis-parser + * @param {Array.>>} rings Rings. + * @param {ol.geom.GeometryLayout} layout Geometry layout. + * @private + * @return {Array.>>} Transoformed rings. + */ +ol.format.EsriJSON.convertRings_ = function(rings, layout) { + var outerRings = []; + var holes = []; + var i, ii; + for (i = 0, ii = rings.length; i < ii; ++i) { + var flatRing = goog.array.flatten(rings[i]); + // is this ring an outer ring? is it clockwise? + var clockwise = ol.geom.flat.orient.linearRingIsClockwise(flatRing, 0, + flatRing.length, layout.length); + if (clockwise) { + outerRings.push([rings[i]]); + } else { + holes.push(rings[i]); + } + } + while (holes.length) { + var hole = holes.shift(); + var matched = false; + // loop over all outer rings and see if they contain our hole. + for (i = outerRings.length - 1; i >= 0; i--) { + var outerRing = outerRings[i][0]; + if (ol.extent.containsExtent(new ol.geom.LinearRing( + outerRing).getExtent(), + new ol.geom.LinearRing(hole).getExtent())) { + // the hole is contained push it into our polygon + outerRings[i].push(hole); + matched = true; + break; + } + } + if (!matched) { + // no outer rings contain this hole turn it into and outer + // ring (reverse it) + outerRings.push([hole.reverse()]); + } + } + return outerRings; +}; + + +/** + * @param {EsriJSONGeometry} object Object. + * @private + * @return {ol.geom.Geometry} Point. + */ +ol.format.EsriJSON.readPointGeometry_ = function(object) { + goog.asserts.assert(goog.isNumber(object.x), 'object.x should be number'); + goog.asserts.assert(goog.isNumber(object.y), 'object.y should be number'); + var point; + if (goog.isDefAndNotNull(object.m) && goog.isDefAndNotNull(object.z)) { + point = new ol.geom.Point([object.x, object.y, object.z, object.m], + ol.geom.GeometryLayout.XYZM); + } else if (goog.isDefAndNotNull(object.z)) { + point = new ol.geom.Point([object.x, object.y, object.z], + ol.geom.GeometryLayout.XYZ); + } else if (goog.isDefAndNotNull(object.m)) { + point = new ol.geom.Point([object.x, object.y, object.m], + ol.geom.GeometryLayout.XYM); + } else { + point = new ol.geom.Point([object.x, object.y]); + } + return point; +}; + + +/** + * @param {EsriJSONGeometry} object Object. + * @private + * @return {ol.geom.Geometry} LineString. + */ +ol.format.EsriJSON.readLineStringGeometry_ = function(object) { + goog.asserts.assert(goog.isArray(object.paths), + 'object.paths should be an array'); + goog.asserts.assert(object.paths.length === 1, + 'object.paths array length should be 1'); + var layout = ol.format.EsriJSON.getGeometryLayout_(object); + return new ol.geom.LineString(object.paths[0], layout); +}; + + +/** + * @param {EsriJSONGeometry} object Object. + * @private + * @return {ol.geom.Geometry} MultiLineString. + */ +ol.format.EsriJSON.readMultiLineStringGeometry_ = function(object) { + goog.asserts.assert(goog.isArray(object.paths), + 'object.paths should be an array'); + goog.asserts.assert(object.paths.length > 1, + 'object.paths array length should be more than 1'); + var layout = ol.format.EsriJSON.getGeometryLayout_(object); + return new ol.geom.MultiLineString(object.paths, layout); +}; + + +/** + * @param {EsriJSONGeometry} object Object. + * @private + * @return {ol.geom.GeometryLayout} The geometry layout to use. + */ +ol.format.EsriJSON.getGeometryLayout_ = function(object) { + var layout = ol.geom.GeometryLayout.XY; + if (object.hasZ === true && object.hasM === true) { + layout = ol.geom.GeometryLayout.XYZM; + } else if (object.hasZ === true) { + layout = ol.geom.GeometryLayout.XYZ; + } else if (object.hasM === true) { + layout = ol.geom.GeometryLayout.XYM; + } + return layout; +}; + + +/** + * @param {EsriJSONGeometry} object Object. + * @private + * @return {ol.geom.Geometry} MultiPoint. + */ +ol.format.EsriJSON.readMultiPointGeometry_ = function(object) { + goog.asserts.assert(goog.isDefAndNotNull(object.points), + 'object.points should be defined'); + var layout = ol.format.EsriJSON.getGeometryLayout_(object); + return new ol.geom.MultiPoint(object.points, layout); +}; + + +/** + * @param {EsriJSONGeometry} object Object. + * @private + * @return {ol.geom.Geometry} MultiPolygon. + */ +ol.format.EsriJSON.readMultiPolygonGeometry_ = function(object) { + goog.asserts.assert(goog.isDefAndNotNull(object.rings)); + goog.asserts.assert(object.rings.length > 1, + 'object.rings should have length larger than 1'); + var layout = ol.format.EsriJSON.getGeometryLayout_(object); + return new ol.geom.MultiPolygon( + /** @type {Array.>>>} */(object.rings), + layout); +}; + + +/** + * @param {EsriJSONGeometry} object Object. + * @private + * @return {ol.geom.Geometry} Polygon. + */ +ol.format.EsriJSON.readPolygonGeometry_ = function(object) { + goog.asserts.assert(goog.isDefAndNotNull(object.rings)); + var layout = ol.format.EsriJSON.getGeometryLayout_(object); + return new ol.geom.Polygon(object.rings, layout); +}; + + +/** + * @param {ol.geom.Geometry} geometry Geometry. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @private + * @return {EsriJSONGeometry} EsriJSON geometry. + */ +ol.format.EsriJSON.writePointGeometry_ = function(geometry, opt_options) { + goog.asserts.assertInstanceof(geometry, ol.geom.Point, + 'geometry should be an ol.geom.Point'); + var coordinates = geometry.getCoordinates(); + var layout = geometry.getLayout(); + if (layout === ol.geom.GeometryLayout.XYZ) { + return /** @type {EsriJSONPoint} */ ({ + x: coordinates[0], + y: coordinates[1], + z: coordinates[2] + }); + } else if (layout === ol.geom.GeometryLayout.XYM) { + return /** @type {EsriJSONPoint} */ ({ + x: coordinates[0], + y: coordinates[1], + m: coordinates[2] + }); + } else if (layout === ol.geom.GeometryLayout.XYZM) { + return /** @type {EsriJSONPoint} */ ({ + x: coordinates[0], + y: coordinates[1], + z: coordinates[2], + m: coordinates[3] + }); + } else if (layout === ol.geom.GeometryLayout.XY) { + return /** @type {EsriJSONPoint} */ ({ + x: coordinates[0], + y: coordinates[1] + }); + } else { + goog.asserts.fail('Unknown geometry layout'); + } +}; + + +/** + * @param {ol.geom.SimpleGeometry} geometry Geometry. + * @private + * @return {Object} Object with boolean hasZ and hasM keys. + */ +ol.format.EsriJSON.getHasZM_ = function(geometry) { + var layout = geometry.getLayout(); + return { + hasZ: (layout === ol.geom.GeometryLayout.XYZ || + layout === ol.geom.GeometryLayout.XYZM), + hasM: (layout === ol.geom.GeometryLayout.XYM || + layout === ol.geom.GeometryLayout.XYZM) + }; +}; + + +/** + * @param {ol.geom.Geometry} geometry Geometry. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @private + * @return {EsriJSONPolyline} EsriJSON geometry. + */ +ol.format.EsriJSON.writeLineStringGeometry_ = function(geometry, opt_options) { + goog.asserts.assertInstanceof(geometry, ol.geom.LineString, + 'geometry should be an ol.geom.LineString'); + var hasZM = ol.format.EsriJSON.getHasZM_(geometry); + return /** @type {EsriJSONPolyline} */ ({ + hasZ: hasZM.hasZ, + hasM: hasZM.hasM, + paths: [geometry.getCoordinates()] + }); +}; + + +/** + * @param {ol.geom.Geometry} geometry Geometry. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @private + * @return {EsriJSONPolygon} EsriJSON geometry. + */ +ol.format.EsriJSON.writePolygonGeometry_ = function(geometry, opt_options) { + goog.asserts.assertInstanceof(geometry, ol.geom.Polygon, + 'geometry should be an ol.geom.Polygon'); + // Esri geometries use the left-hand rule + var hasZM = ol.format.EsriJSON.getHasZM_(geometry); + return /** @type {EsriJSONPolygon} */ ({ + hasZ: hasZM.hasZ, + hasM: hasZM.hasM, + rings: geometry.getCoordinates(false) + }); +}; + + +/** + * @param {ol.geom.Geometry} geometry Geometry. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @private + * @return {EsriJSONPolyline} EsriJSON geometry. + */ +ol.format.EsriJSON.writeMultiLineStringGeometry_ = + function(geometry, opt_options) { + goog.asserts.assertInstanceof(geometry, ol.geom.MultiLineString, + 'geometry should be an ol.geom.MultiLineString'); + var hasZM = ol.format.EsriJSON.getHasZM_(geometry); + return /** @type {EsriJSONPolyline} */ ({ + hasZ: hasZM.hasZ, + hasM: hasZM.hasM, + paths: geometry.getCoordinates() + }); +}; + + +/** + * @param {ol.geom.Geometry} geometry Geometry. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @private + * @return {EsriJSONMultipoint} EsriJSON geometry. + */ +ol.format.EsriJSON.writeMultiPointGeometry_ = function(geometry, opt_options) { + goog.asserts.assertInstanceof(geometry, ol.geom.MultiPoint, + 'geometry should be an ol.geom.MultiPoint'); + var hasZM = ol.format.EsriJSON.getHasZM_(geometry); + return /** @type {EsriJSONMultipoint} */ ({ + hasZ: hasZM.hasZ, + hasM: hasZM.hasM, + points: geometry.getCoordinates() + }); +}; + + +/** + * @param {ol.geom.Geometry} geometry Geometry. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @private + * @return {EsriJSONPolygon} EsriJSON geometry. + */ +ol.format.EsriJSON.writeMultiPolygonGeometry_ = function(geometry, + opt_options) { + goog.asserts.assertInstanceof(geometry, ol.geom.MultiPolygon, + 'geometry should be an ol.geom.MultiPolygon'); + var hasZM = ol.format.EsriJSON.getHasZM_(geometry); + var coordinates = geometry.getCoordinates(false); + var output = []; + for (var i = 0; i < coordinates.length; i++) { + for (var x = coordinates[i].length - 1; x >= 0; x--) { + output.push(coordinates[i][x]); + } + } + return /** @type {EsriJSONPolygon} */ ({ + hasZ: hasZM.hasZ, + hasM: hasZM.hasM, + rings: output + }); +}; + + +/** + * @const + * @private + * @type {Object.} + */ +ol.format.EsriJSON.GEOMETRY_READERS_ = {}; +ol.format.EsriJSON.GEOMETRY_READERS_[ol.geom.GeometryType.POINT] = + ol.format.EsriJSON.readPointGeometry_; +ol.format.EsriJSON.GEOMETRY_READERS_[ol.geom.GeometryType.LINE_STRING] = + ol.format.EsriJSON.readLineStringGeometry_; +ol.format.EsriJSON.GEOMETRY_READERS_[ol.geom.GeometryType.POLYGON] = + ol.format.EsriJSON.readPolygonGeometry_; +ol.format.EsriJSON.GEOMETRY_READERS_[ol.geom.GeometryType.MULTI_POINT] = + ol.format.EsriJSON.readMultiPointGeometry_; +ol.format.EsriJSON.GEOMETRY_READERS_[ol.geom.GeometryType.MULTI_LINE_STRING] = + ol.format.EsriJSON.readMultiLineStringGeometry_; +ol.format.EsriJSON.GEOMETRY_READERS_[ol.geom.GeometryType.MULTI_POLYGON] = + ol.format.EsriJSON.readMultiPolygonGeometry_; + + +/** + * @const + * @private + * @type {Object.} + */ +ol.format.EsriJSON.GEOMETRY_WRITERS_ = {}; +ol.format.EsriJSON.GEOMETRY_WRITERS_[ol.geom.GeometryType.POINT] = + ol.format.EsriJSON.writePointGeometry_; +ol.format.EsriJSON.GEOMETRY_WRITERS_[ol.geom.GeometryType.LINE_STRING] = + ol.format.EsriJSON.writeLineStringGeometry_; +ol.format.EsriJSON.GEOMETRY_WRITERS_[ol.geom.GeometryType.POLYGON] = + ol.format.EsriJSON.writePolygonGeometry_; +ol.format.EsriJSON.GEOMETRY_WRITERS_[ol.geom.GeometryType.MULTI_POINT] = + ol.format.EsriJSON.writeMultiPointGeometry_; +ol.format.EsriJSON.GEOMETRY_WRITERS_[ol.geom.GeometryType.MULTI_LINE_STRING] = + ol.format.EsriJSON.writeMultiLineStringGeometry_; +ol.format.EsriJSON.GEOMETRY_WRITERS_[ol.geom.GeometryType.MULTI_POLYGON] = + ol.format.EsriJSON.writeMultiPolygonGeometry_; + + +/** + * Read a feature from a EsriJSON Feature source. Only works for Feature, + * use `readFeatures` to read FeatureCollection source. + * + * @function + * @param {ArrayBuffer|Document|Node|Object|string} source Source. + * @param {olx.format.ReadOptions=} opt_options Read options. + * @return {ol.Feature} Feature. + * @api + */ +ol.format.EsriJSON.prototype.readFeature; + + +/** + * Read all features from a EsriJSON source. Works with both Feature and + * FeatureCollection sources. + * + * @function + * @param {ArrayBuffer|Document|Node|Object|string} source Source. + * @param {olx.format.ReadOptions=} opt_options Read options. + * @return {Array.} Features. + * @api + */ +ol.format.EsriJSON.prototype.readFeatures; + + +/** + * @inheritDoc + */ +ol.format.EsriJSON.prototype.readFeatureFromObject = function( + object, opt_options) { + var esriJSONFeature = /** @type {EsriJSONFeature} */ (object); + goog.asserts.assert(goog.isDefAndNotNull(esriJSONFeature.geometry) || + goog.isDefAndNotNull(esriJSONFeature.compressedGeometry) || + goog.isDefAndNotNull(esriJSONFeature.attributes), + 'geometry, compressedGeometry or attributes should be defined'); + var geometry = ol.format.EsriJSON.readGeometry_(esriJSONFeature.geometry, + opt_options); + var feature = new ol.Feature(); + if (goog.isDef(this.geometryName_)) { + feature.setGeometryName(this.geometryName_); + } + feature.setGeometry(geometry); + if (goog.isDef(opt_options) && goog.isDef(opt_options.idField) && + goog.isDef(esriJSONFeature.attributes[opt_options.idField])) { + goog.asserts.assert( + goog.isNumber(esriJSONFeature.attributes[opt_options.idField]), + 'objectIdFieldName value should be a number'); + feature.setId(/** @type {number} */( + esriJSONFeature.attributes[opt_options.idField])); + } + if (goog.isDef(esriJSONFeature.attributes)) { + feature.setProperties(esriJSONFeature.attributes); + } + return feature; +}; + + +/** + * @inheritDoc + */ +ol.format.EsriJSON.prototype.readFeaturesFromObject = function( + object, opt_options) { + var esriJSONObject = /** @type {EsriJSONObject} */ (object); + var options = goog.isDef(opt_options) ? opt_options : {}; + if (goog.isDefAndNotNull(esriJSONObject.features)) { + var esriJSONFeatureCollection = /** @type {EsriJSONFeatureCollection} */ + (object); + /** @type {Array.} */ + var features = []; + var esriJSONFeatures = esriJSONFeatureCollection.features; + var i, ii; + options.idField = object.objectIdFieldName; + for (i = 0, ii = esriJSONFeatures.length; i < ii; ++i) { + features.push(this.readFeatureFromObject(esriJSONFeatures[i], + options)); + } + return features; + } else { + return [this.readFeatureFromObject(object, options)]; + } +}; + + +/** + * Read a geometry from a EsriJSON source. + * + * @function + * @param {ArrayBuffer|Document|Node|Object|string} source Source. + * @param {olx.format.ReadOptions=} opt_options Read options. + * @return {ol.geom.Geometry} Geometry. + * @api + */ +ol.format.EsriJSON.prototype.readGeometry; + + +/** + * @inheritDoc + */ +ol.format.EsriJSON.prototype.readGeometryFromObject = function( + object, opt_options) { + return ol.format.EsriJSON.readGeometry_( + /** @type {EsriJSONGeometry} */ (object), opt_options); +}; + + +/** + * Read the projection from a EsriJSON source. + * + * @function + * @param {ArrayBuffer|Document|Node|Object|string} source Source. + * @return {ol.proj.Projection} Projection. + * @api + */ +ol.format.EsriJSON.prototype.readProjection; + + +/** + * @inheritDoc + */ +ol.format.EsriJSON.prototype.readProjectionFromObject = function(object) { + var esriJSONObject = /** @type {EsriJSONObject} */ (object); + if (goog.isDefAndNotNull(esriJSONObject.spatialReference) && + goog.isDefAndNotNull(esriJSONObject.spatialReference.wkid)) { + var crs = esriJSONObject.spatialReference.wkid; + return ol.proj.get('EPSG:' + crs); + } else { + return null; + } +}; + + +/** + * @param {ol.geom.Geometry} geometry Geometry. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @private + * @return {EsriJSONGeometry} EsriJSON geometry. + */ +ol.format.EsriJSON.writeGeometry_ = function(geometry, opt_options) { + var geometryWriter = ol.format.EsriJSON.GEOMETRY_WRITERS_[geometry.getType()]; + goog.asserts.assert(goog.isDef(geometryWriter), + 'geometryWriter should be defined'); + return geometryWriter(/** @type {ol.geom.Geometry} */ ( + ol.format.Feature.transformWithOptions(geometry, true, opt_options)), + opt_options); +}; + + +/** + * Encode a geometry as a EsriJSON string. + * + * @function + * @param {ol.geom.Geometry} geometry Geometry. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @return {string} EsriJSON. + * @api + */ +ol.format.EsriJSON.prototype.writeGeometry; + + +/** + * Encode a geometry as a EsriJSON object. + * + * @param {ol.geom.Geometry} geometry Geometry. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @return {EsriJSONGeometry} Object. + * @api + */ +ol.format.EsriJSON.prototype.writeGeometryObject = function(geometry, + opt_options) { + return ol.format.EsriJSON.writeGeometry_(geometry, + this.adaptOptions(opt_options)); +}; + + +/** + * Encode a feature as a EsriJSON Feature string. + * + * @function + * @param {ol.Feature} feature Feature. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @return {string} EsriJSON. + * @api + */ +ol.format.EsriJSON.prototype.writeFeature; + + +/** + * Encode a feature as a esriJSON Feature object. + * + * @param {ol.Feature} feature Feature. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @return {Object} Object. + * @api + */ +ol.format.EsriJSON.prototype.writeFeatureObject = function( + feature, opt_options) { + opt_options = this.adaptOptions(opt_options); + var object = {}; + var geometry = feature.getGeometry(); + if (goog.isDefAndNotNull(geometry)) { + object['geometry'] = + ol.format.EsriJSON.writeGeometry_(geometry, opt_options); + } + var properties = feature.getProperties(); + goog.object.remove(properties, feature.getGeometryName()); + if (!goog.object.isEmpty(properties)) { + object['attributes'] = properties; + } else { + object['attributes'] = {}; + } + if (goog.isDef(opt_options) && goog.isDef(opt_options.featureProjection)) { + object['spatialReference'] = /** @type {EsriJSONCRS} */({ + wkid: ol.proj.get( + opt_options.featureProjection).getCode().split(':').pop() + }); + } + return object; +}; + + +/** + * Encode an array of features as EsriJSON. + * + * @function + * @param {Array.} features Features. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @return {string} EsriJSON. + * @api + */ +ol.format.EsriJSON.prototype.writeFeatures; + + +/** + * Encode an array of features as a EsriJSON object. + * + * @param {Array.} features Features. + * @param {olx.format.WriteOptions=} opt_options Write options. + * @return {Object} EsriJSON Object. + * @api + */ +ol.format.EsriJSON.prototype.writeFeaturesObject = + function(features, opt_options) { + opt_options = this.adaptOptions(opt_options); + var objects = []; + var i, ii; + for (i = 0, ii = features.length; i < ii; ++i) { + objects.push(this.writeFeatureObject(features[i], opt_options)); + } + return /** @type {EsriJSONFeatureCollection} */ ({ + 'features': objects + }); +}; diff --git a/test/spec/ol/format/esrijson/ksfields.json b/test/spec/ol/format/esrijson/ksfields.json new file mode 100644 index 0000000000..9726f18777 --- /dev/null +++ b/test/spec/ol/format/esrijson/ksfields.json @@ -0,0 +1 @@ +{"objectIdFieldName":"objectid","globalIdFieldName":"","geometryType":"esriGeometryPolygon","spatialReference":{"wkid":3857},"fields":[{"name":"objectid","alias":"Object ID","type":"esriFieldTypeOID"},{"name":"field_kid","alias":"Field KID","type":"esriFieldTypeString","length":25},{"name":"approxacre","alias":"Acres","type":"esriFieldTypeDouble"},{"name":"field_name","alias":"Field Name","type":"esriFieldTypeString","length":150},{"name":"status","alias":"Status","type":"esriFieldTypeString","length":50},{"name":"prod_gas","alias":"Production Gas","type":"esriFieldTypeString","length":3},{"name":"prod_oil","alias":"Production Oil","type":"esriFieldTypeString","length":3},{"name":"activeprod","alias":"Field Status","type":"esriFieldTypeString","length":10},{"name":"cumm_oil","alias":"Cumulative Oil (bbl)","type":"esriFieldTypeDouble"},{"name":"maxoilwell","alias":"Max Oil Well","type":"esriFieldTypeDouble"},{"name":"lastoilpro","alias":"Last Oil Production","type":"esriFieldTypeDouble"},{"name":"lastoilwel","alias":"Last Oil Well","type":"esriFieldTypeDouble"},{"name":"lastodate","alias":"Last Oil Date","type":"esriFieldTypeString","length":50},{"name":"cumm_gas","alias":"Cumulative Gas (mcf)","type":"esriFieldTypeDouble"},{"name":"maxgaswell","alias":"Max Gas Well","type":"esriFieldTypeDouble"},{"name":"lastgaspro","alias":"Last Gas Production","type":"esriFieldTypeDouble"},{"name":"lastgaswel","alias":"Last Gas Well","type":"esriFieldTypeDouble"},{"name":"lastgdate","alias":"Last Gas Date","type":"esriFieldTypeString","length":50},{"name":"avgdepth","alias":"Average Depth","type":"esriFieldTypeDouble"},{"name":"avgdepthsl","alias":"Average Depth SL","type":"esriFieldTypeDouble"},{"name":"polydate","alias":"Poly Date","type":"esriFieldTypeDate","length":36},{"name":"field_type","alias":"Field Date","type":"esriFieldTypeString","length":5},{"name":"field_kidn","alias":"Field KID Number","type":"esriFieldTypeDouble"}],"features":[{"geometry":{"rings":[[[-10581641.008809472,4715780.550333011],[-10581642.18973699,4715520.8407662529],[-10581386.928907201,4715520.3096603891],[-10581130.873573344,4715519.7703234283],[-10581119.608956689,4715519.7373542385],[-10580873.701468645,4715519.1957234172],[-10580861.60981103,4715519.1697147377],[-10580615.535927057,4715517.0707246196],[-10580599.267516816,4715516.9415102424],[-10580356.313282218,4715514.8964298368],[-10580096.016614966,4715512.6975572435],[-10580085.157259075,4715512.5968669346],[-10579834.66194349,4715510.4663823154],[-10579572.218332695,4715508.2272371156],[-10579570.694119161,4715245.0864215102],[-10579569.245250966,4714995.2990554227],[-10579569.181525018,4714983.3778878348],[-10579567.655721823,4714723.0591734583],[-10579566.233413922,4714480.0828212034],[-10579566.147244416,4714464.1485788235],[-10579564.643474612,4714205.7942372626],[-10579563.21364719,4713960.4758592462],[-10579563.150922153,4713948.5143310428],[-10579561.654570013,4713692.3226798577],[-10579560.164629741,4713437.2040129453],[-10579818.68690289,4713434.1710076462],[-10580069.244710566,4713431.2257367112],[-10580076.190516936,4713431.1479246197],[-10580332.675571974,4713428.1345064193],[-10580578.767897427,4713425.2375497548],[-10580588.137763079,4713425.1227728855],[-10580842.522528194,4713422.1298433635],[-10581088.452269366,4713419.228514336],[-10581095.843082247,4713419.1249553487],[-10581348.183420943,4713416.1347515462],[-10581599.226383224,4713413.1520271944],[-10581857.400373746,4713412.825347729],[-10582116.067425568,4713412.4930000044],[-10582375.28250131,4713412.1690131789],[-10582634.967211677,4713411.8383286307],[-10582896.620863341,4713411.4800799293],[-10583012.040450454,4713411.3203521585],[-10583157.771643776,4713411.4572614906],[-10583418.572426554,4713411.6518422104],[-10583585.761746617,4713411.7746360581],[-10583678.933416383,4713414.1515424261],[-10583676.798410894,4713153.203218977],[-10583674.67011529,4712893.0234163888],[-10583674.133676214,4712824.9508809811],[-10583673.896863189,4712633.1480886815],[-10583673.576327704,4712373.6530253869],[-10583935.25948476,4712372.3817386748],[-10584196.239741644,4712371.1080138544],[-10584457.663904078,4712369.8086737609],[-10584719.146132795,4712368.5012253327],[-10584979.714222293,4712367.6856751712],[-10585240.322357493,4712366.8638184788],[-10585501.415044457,4712366.0141581269],[-10585761.619119724,4712365.1611604588],[-10585761.632046392,4712369.4585605012],[-10585763.548343509,4712626.7084440179],[-10585765.499193013,4712888.7577283205],[-10585765.52273085,4712892.7310108021],[-10585765.540390531,4713050.8903168831],[-10585765.574908435,4713151.1354423845],[-10585765.670749661,4713414.5626412435],[-10585764.732917938,4713679.3177012932],[-10585763.796486296,4713943.484986065],[-10585762.849543003,4714207.7251834497],[-10585761.90340035,4714471.8252575137],[-10585761.426016528,4714601.1272833226],[-10585763.045812963,4714728.1530703567],[-10585763.160061851,4714734.9427697286],[-10585767.605650978,4714997.7424090439],[-10585768.62637677,4715056.8870177437],[-10585769.780761153,4715190.3893869286],[-10585770.404665092,4715260.2480165185],[-10585772.743554419,4715522.4504168415],[-10585513.380061427,4715523.3052334432],[-10585260.007384634,4715524.1347551141],[-10585253.868099647,4715524.1630127374],[-10584994.015049888,4715525.0171910124],[-10584744.88660223,4715525.8303190414],[-10584733.861258013,4715525.8496155962],[-10584693.115198983,4715526.0065854741],[-10584477.117951216,4715528.1580030024],[-10584347.763179801,4715529.4444226427],[-10584313.437125223,4715529.5802127309],[-10584224.592842296,4715529.9134111581],[-10584220.110942964,4715529.9186072387],[-10583962.796582736,4715530.9074216317],[-10583705.138531595,4715531.8919913732],[-10583706.84564521,4715792.4131819149],[-10583708.553760745,4716053.2461916842],[-10583451.344047548,4716051.5469888281],[-10583192.005312003,4716049.8266940266],[-10582932.721939163,4716048.0949403718],[-10582672.18934487,4716046.346720431],[-10582670.54642038,4716306.6043958655],[-10582668.900694761,4716567.3730738284],[-10582411.228190882,4716565.6393072046],[-10582154.831037452,4716563.9073297856],[-10581896.525512936,4716562.1476908326],[-10581637.329875631,4716560.3757011611],[-10581637.490308633,4716547.7301372141],[-10581638.630838037,4716300.3546775905],[-10581639.828182889,4716040.3752108943],[-10581641.008809472,4715780.550333011]]]},"attributes":{"objectid":6406,"field_kid":"1000147599","approxacre":2488,"field_name":"EUDORA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":948.48000000000002,"maxoilwell":2,"lastoilpro":38.5,"lastoilwel":1,"lastodate":"8-2007","cumm_gas":15576,"maxgaswell":3,"lastgaspro":424,"lastgaswel":3,"lastgdate":"12-1985","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000147599}},{"geometry":{"rings":[[[-10570353.181407621,4709482.1398939062],[-10570353.902426597,4709221.1762966719],[-10570094.803280041,4709218.381630688],[-10569835.657279504,4709215.5814332133],[-10569576.428483618,4709212.7674703123],[-10569317.048613865,4709209.9450176135],[-10569318.623005355,4708948.8156989375],[-10569320.192196747,4708688.6999346968],[-10569321.74026081,4708428.0652989727],[-10569323.183106411,4708185.0600114977],[-10569323.257189075,4708167.4369667573],[-10569324.002729883,4707906.7884428874],[-10569324.748070696,4707646.1846857322],[-10569325.474189114,4707385.5370612862],[-10569326.20130858,4707124.8758014925],[-10569324.960096058,4706869.7591555174],[-10569323.72129019,4706615.3188053546],[-10569322.494791482,4706359.6870848732],[-10569321.391181892,4706129.4498195611],[-10569321.645022823,4706103.493034767],[-10569323.901021671,4705846.4087031307],[-10569326.158721156,4705589.0993722519],[-10569328.432237571,4705331.572132621],[-10569330.705552557,4705073.8398615886],[-10569072.412897337,4705070.3260472417],[-10568813.004158007,4705066.7890927531],[-10568808.730641391,4705066.7133749016],[-10568552.455607157,4705063.2106074998],[-10568290.74882381,4705059.6250583632],[-10568030.987979002,4705056.0448971409],[-10567773.131224675,4705052.4829848511],[-10567513.514345391,4705048.9059109166],[-10567253.336921133,4705045.3152097091],[-10567254.35274992,4704783.5754813459],[-10567255.365978384,4704522.2937541101],[-10567256.360786904,4704261.2273299508],[-10567257.354095496,4704000.4705798998],[-10567258.172658516,4703783.1388147948],[-10567258.771794638,4703740.1138761062],[-10567262.395033,4703480.082465901],[-10567266.025081046,4703220.3632245762],[-10567269.651126223,4702960.9368411014],[-10567530.255449533,4702963.1140644476],[-10567789.482488215,4702965.2725249557],[-10568048.142174166,4702967.4340756303],[-10568305.966699198,4702969.5808456307],[-10568563.739364535,4702971.7283877265],[-10568821.52364317,4702973.8705295706],[-10569079.147837438,4702975.9842564249],[-10569337.20362819,4702978.0957945976],[-10569337.65183704,4702719.2774653211],[-10569338.100644581,4702460.1220475035],[-10569338.554455761,4702200.6082240064],[-10569339.00926587,4701940.7177656246],[-10569339.470281053,4701680.47872815],[-10569339.93079355,4701419.8825247092],[-10569340.376987455,4701158.9278971953],[-10569340.823880043,4700897.6151301274],[-10569596.29030394,4700899.070602051],[-10569846.849581927,4700900.4942250391],[-10569851.768140858,4700900.5119329533],[-10570107.285222901,4700901.9510782361],[-10570356.262480576,4700903.3491294831],[-10570362.834842321,4700903.385466842],[-10570618.400980741,4700904.8212695019],[-10570869.061775297,4700906.2209809031],[-10570873.980534451,4700906.2379174912],[-10571129.599032845,4700907.635796315],[-10571385.249868391,4700909.0282756817],[-10571642.585436452,4700909.4214889733],[-10571899.896276031,4700909.8085317891],[-10572157.10089344,4700910.204959766],[-10572414.219311627,4700910.5929036951],[-10572671.315504067,4700910.9512801813],[-10572928.342817206,4700911.3016867219],[-10573185.297246547,4700911.662635196],[-10573442.183197064,4700912.0163850384],[-10573699.500242189,4700912.1317918077],[-10573956.685435586,4700912.2420572592],[-10574213.730067283,4700912.3552803816],[-10574470.662770174,4700912.4628478438],[-10574727.003892293,4700912.5429085391],[-10574983.512607189,4700912.6171831582],[-10575240.146566181,4700912.6929996023],[-10575378.743222501,4700912.7316752421],[-10575496.875294618,4700910.7785291458],[-10575496.727679132,4701169.8081316324],[-10575496.580468444,4701429.6149292011],[-10575496.415737687,4701689.4113963377],[-10575496.250808489,4701949.5294938991],[-10575496.216765406,4701984.4322013594],[-10575500.186361264,4702209.9279426057],[-10575500.739368459,4702241.3082982618],[-10575500.572261104,4702470.1638867734],[-10575500.421149826,4702730.7325707888],[-10575500.270834718,4702990.4569871314],[-10575746.100785689,4702991.5587251717],[-10575991.488631936,4702992.6527519859],[-10576236.946457839,4702993.7358488673],[-10576482.30466987,4702994.811874643],[-10576728.498134971,4702995.8891794486],[-10576974.652755558,4702996.9606984463],[-10577221.52499504,4702998.047127014],[-10577466.878000535,4702999.1205812907],[-10577469.925919373,4703204.5387010369],[-10577469.771341546,4703263.4827007055],[-10577469.108657077,4703514.5456206389],[-10577469.088494584,4703526.4919124516],[-10577468.372173555,4703782.4075307427],[-10577468.306228179,4703788.3038068637],[-10577465.543716196,4704033.0712740803],[-10577465.343668347,4704048.9388838904],[-10577462.389720716,4704309.9661813229],[-10577459.642416151,4704552.6300925342],[-10577459.472103927,4704568.8242591554],[-10577458.564375252,4704649.1059171874],[-10577460.858747091,4704758.5404174859],[-10577460.827851269,4704825.5273194918],[-10577460.706899621,4705079.3917000648],[-10577462.308210867,4705332.9690486863],[-10577463.930661902,4705589.6915422203],[-10577464.01241261,4705601.0357881868],[-10577465.55652843,4705848.7563350573],[-10577467.187413627,4706110.4272779981],[-10577467.260744445,4706119.7458198136],[-10577468.854334712,4706371.1258781729],[-10577470.517460918,4706633.7443649946],[-10577470.556846239,4706641.7256663553],[-10577472.173788978,4706898.3136301246],[-10577473.854554458,4707164.8261078158],[-10577476.654270079,4707426.3650027113],[-10577479.446371919,4707686.9817211432],[-10577482.105860362,4707935.3836142747],[-10577482.036038248,4707946.7424453702],[-10577480.440129362,4708205.6776352441],[-10577480.38841817,4708215.1150406403],[-10577481.981696513,4708464.6209426811],[-10577483.629580796,4708722.8151420746],[-10577485.298191085,4708981.5360648558],[-10577486.966901904,4709240.3910815036],[-10577240.781571556,4709239.7471002331],[-10576994.852933588,4709239.097584202],[-10576748.040388308,4709238.4453744637],[-10576500.719463615,4709237.7869937448],[-10576252.997081285,4709237.1129202191],[-10576004.893364294,4709236.4313879283],[-10575756.063720003,4709235.7479324415],[-10575566.890154433,4709235.2246213201],[-10575506.657323085,4709235.8980697105],[-10575410.404344205,4709236.0875754878],[-10575377.541971959,4709234.2196078217],[-10575250.30921926,4709233.7749818666],[-10574993.89577313,4709232.8717221227],[-10574737.523274155,4709231.9793981202],[-10574481.209742939,4709231.0784534086],[-10574224.681064172,4709230.1659310721],[-10573968.079901969,4709229.2440171642],[-10573711.405555619,4709228.3323966302],[-10573454.665934127,4709227.4124137433],[-10573197.501733091,4709228.0420135297],[-10572940.940325381,4709228.6646607984],[-10572683.632859481,4709229.2793374266],[-10572426.043068809,4709229.8875834886],[-10572425.712165495,4709487.9004053343],[-10572425.380161947,4709746.0997880884],[-10572425.054166373,4710004.490249468],[-10572424.728772527,4710263.0671719443],[-10572165.86392021,4710263.1510717608],[-10571905.822114097,4710263.2289339183],[-10571902.350220617,4710263.2247171197],[-10571644.645202408,4710263.3152981242],[-10571382.311760442,4710263.4002567213],[-10571382.264139015,4710269.193246861],[-10571122.931037493,4710267.4277326986],[-10570867.443158923,4710265.6813583691],[-10570864.618509822,4710265.6598938899],[-10570607.312039318,4710263.8926900625],[-10570351.007321026,4710262.1253492003],[-10570351.733354028,4710002.5744410241],[-10570352.459785189,4709742.6306587029],[-10570353.181407621,4709482.1398939062]]]},"attributes":{"objectid":6414,"field_kid":"1000149153","approxacre":10368,"field_name":"PRAIRIE CENTER","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":189310.92000000001,"maxoilwell":39,"lastoilpro":315.76999999999998,"lastoilwel":12,"lastodate":"2-2009","cumm_gas":17843,"maxgaswell":2,"lastgaspro":62,"lastgaswel":2,"lastgdate":"12-1985","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149153}},{"geometry":{"rings":[[[-10579756.408504503,4770631.6464749835],[-10579757.891487455,4770370.6102884123],[-10579495.434375817,4770370.5356730083],[-10579233.619096888,4770370.4569137814],[-10578969.972227085,4770370.3801012021],[-10578705.32801877,4770370.2972076721],[-10578707.161242757,4770110.223974728],[-10578708.992564125,4769850.2834021701],[-10578710.812872188,4769590.5840717163],[-10578712.632478978,4769331.0278589064],[-10578975.689332584,4769330.764896269],[-10579238.580797404,4769330.4948156364],[-10579501.275637811,4769330.2119222954],[-10579554.855794305,4769330.1535022948],[-10579763.80458926,4769329.7453724667],[-10580025.236488579,4769329.2438808708],[-10580285.993016992,4769328.7388968552],[-10580546.078779789,4769328.2177365636],[-10580805.50128551,4769327.6916601276],[-10580805.342358679,4769588.1889143223],[-10580805.181328589,4769849.0989460126],[-10580805.165201904,4769853.0509487977],[-10580805.007382875,4770110.4278709684],[-10580804.845550144,4770372.1626483528],[-10580804.826017009,4770377.3391055902],[-10580804.684317386,4770634.2350930339],[-10580804.580006119,4770821.5566464011],[-10580804.378919274,4770896.6765580615],[-10580804.365696073,4770900.5483266395],[-10580803.650637552,4771159.4993708134],[-10580802.924857786,4771422.7288036784],[-10580801.412483351,4771684.2913708184],[-10580799.927651076,4771940.68399214],[-10580799.885393012,4771945.3702118201],[-10580798.388938487,4772205.9993380867],[-10580796.931742886,4772459.8460745886],[-10580796.911806887,4772466.1647322923],[-10580532.936274359,4772465.891323369],[-10580268.933610884,4772465.6124769449],[-10580004.896508131,4772465.323143811],[-10579740.832875123,4772465.0270785047],[-10579742.460524376,4772203.9275248442],[-10579744.089375921,4771942.365582535],[-10579745.730242161,4771680.3221278647],[-10579747.372611033,4771417.8167459257],[-10579751.958847197,4771417.8563489281],[-10579753.440632308,4771155.4013101654],[-10579754.92101513,4770893.2012678646],[-10579756.408504503,4770631.6464749835]]]},"attributes":{"objectid":6721,"field_kid":"1000149618","approxacre":641,"field_name":"LEAVENWORTH WEST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":68197.919999999998,"maxoilwell":8,"lastoilpro":309.29000000000002,"lastoilwel":8,"lastodate":"2-2009","cumm_gas":43037,"maxgaswell":2,"lastgaspro":24,"lastgaswel":1,"lastgdate":"12-1993","avgdepth":1435,"avgdepthsl":393,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149618}},{"geometry":{"rings":[[[-10594802.381300984,4701991.8729843637],[-10595063.178298352,4701992.8147251951],[-10595066.3820136,4702255.214077224],[-10595069.60304847,4702519.0247495286],[-10595072.843805283,4702782.3919893866],[-10595076.087464973,4703045.9104500273],[-10594815.891829044,4703043.4503703602],[-10594555.869590638,4703040.9859179044],[-10594296.567874137,4703038.5060302243],[-10594037.750109572,4703036.0251103314],[-10594033.754416686,4702773.3035305403],[-10594029.777645458,4702511.8386121392],[-10594025.805879306,4702250.2659907937],[-10594021.838818142,4701989.0576468715],[-10594281.667610712,4701989.9952812446],[-10594541.864523353,4701990.9269985659],[-10594802.381300984,4701991.8729843637]]]},"attributes":{"objectid":6833,"field_kid":"1000147603","approxacre":162,"field_name":"JAYHAWK SOUTHWEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":2322.25,"maxoilwell":5,"lastoilpro":25.25,"lastoilwel":3,"lastodate":"6-1996","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":751,"avgdepthsl":-181.33333332999999,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147603}},{"geometry":{"rings":[[[-10584940.041338971,4774554.7281769551],[-10584937.250777034,4774815.4724124689],[-10584934.457912261,4775076.2122718198],[-10584931.636214362,4775336.9219832877],[-10584929.501292268,4775534.0027855365],[-10584928.754948189,4775597.6361232772],[-10584666.858458621,4775597.7606642237],[-10584405.509094087,4775597.8788593411],[-10584144.117080821,4775597.9995150669],[-10583882.8696327,4775598.1139544025],[-10583885.061254492,4775337.3324821368],[-10583887.251875015,4775076.5200882005],[-10583889.422372373,4774815.7165308176],[-10583891.593970813,4774554.9108021483],[-10584153.197682446,4774554.8732718686],[-10584415.147689633,4774554.8303026548],[-10584677.442090191,4774554.7834484475],[-10584940.041338971,4774554.7281769551]]]},"attributes":{"objectid":6834,"field_kid":"1000149601","approxacre":159,"field_name":"EASTON NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":417231.44,"maxoilwell":36,"lastoilpro":868.69000000000005,"lastoilwel":24,"lastodate":"2-2009","cumm_gas":100347,"maxgaswell":7,"lastgaspro":58,"lastgaswel":1,"lastgdate":"4-1990","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149601}},{"geometry":{"rings":[[[-10578087.717886331,4535897.1220052941],[-10578082.878946833,4535649.5522527928],[-10578071.297649125,4535649.4985860251],[-10577821.701060954,4535648.3333634883],[-10577571.529312324,4535647.1581453867],[-10577317.531270279,4535645.9588816194],[-10577060.733313298,4535644.7381048044],[-10577062.400755584,4535388.112925441],[-10577064.070394855,4535131.0032386845],[-10577064.095065234,4535125.82609942],[-10577065.734423488,4534873.5292522814],[-10577067.378476817,4534620.3200343912],[-10577067.266095586,4534615.6560804425],[-10577067.151312469,4534611.0700487131],[-10577061.454020288,4534356.3516929569],[-10577055.627815329,4534095.8403530177],[-10577049.8166332,4533835.8200765951],[-10577044.002547059,4533575.7316534994],[-10576790.804009534,4533579.8927547364],[-10576535.982408786,4533584.0745959748],[-10576533.363502674,4533584.1210054262],[-10576278.887298193,4533588.2891907087],[-10576021.492543424,4533592.4986015018],[-10576015.659447744,4533592.5882564029],[-10575760.299528534,4533596.7601122027],[-10575500.812371638,4533600.993805835],[-10575379.650694067,4533602.9735776912],[-10575243.635821646,4533603.5740894945],[-10574988.864592757,4533604.6952755954],[-10574987.696173877,4533343.5773792369],[-10574986.53347715,4533083.8648331231],[-10574985.369674949,4532823.7604884617],[-10574984.339156829,4532593.6928731585],[-10574985.564742422,4532563.8069351036],[-10574985.825575182,4532557.6033783909],[-10574996.382959012,4532303.1933214199],[-10575007.231199509,4532041.762312538],[-10575007.470714362,4532036.1745598242],[-10575018.10896421,4531779.5957891019],[-10575029.002238121,4531516.8007884212],[-10575030.380988942,4531258.8315995075],[-10575031.758242307,4531001.2764604604],[-10575033.138801312,4530743.9125409387],[-10575034.516960198,4530486.814302098],[-10575035.903223706,4530229.3132318882],[-10575037.288587738,4529971.979467324],[-10575038.652935375,4529715.3830891736],[-10575040.004392149,4529460.9905215669],[-10574786.221028695,4529463.3189800726],[-10574534.773557652,4529465.6190102575],[-10574282.006965388,4529467.9138477575],[-10574029.145563433,4529470.2051454671],[-10573776.431130584,4529472.4978360618],[-10573523.476620561,4529474.7861007424],[-10573520.740466235,4529474.8070676513],[-10573270.30415884,4529477.0675374754],[-10573016.895924948,4529479.3479619781],[-10573016.023067437,4529224.7070293622],[-10573015.163462637,4528973.6539446712],[-10573015.136193056,4528969.9908872489],[-10573014.246514589,4528715.1858874755],[-10573013.372303737,4528465.1560269305],[-10573013.348826107,4528460.2991158888],[-10573011.904514506,4528206.066823042],[-10573010.462913364,4527952.5237290654],[-10573008.995764015,4527697.1642058324],[-10573007.521796828,4527440.8307637023],[-10573260.269821329,4527439.0073382463],[-10573513.61213023,4527437.1724155275],[-10573517.736282187,4527437.1409751922],[-10573767.405658638,4527435.321822905],[-10574021.723691043,4527433.4613757376],[-10574025.84774288,4527433.4305674601],[-10574276.656527543,4527431.2242418397],[-10574531.647530591,4527428.9738366911],[-10574787.269660486,4527426.718002419],[-10575041.72754853,4527424.4668362923],[-10575295.124096595,4527420.7139497008],[-10575380.028515453,4527419.4541422073],[-10575550.190894518,4527417.446813507],[-10575805.122555254,4527414.4518101849],[-10576060.556392144,4527411.4451825023],[-10576315.73123157,4527408.4275573771],[-10576571.080771338,4527405.4017186901],[-10576826.601707749,4527402.3758828491],[-10577082.318468725,4527399.3404431324],[-10577336.019249052,4527399.2689676061],[-10577589.380739907,4527399.1925599631],[-10577842.460707663,4527399.117540908],[-10578095.252844997,4527399.0369580565],[-10578347.739231218,4527398.9386762697],[-10578599.93748666,4527398.834072263],[-10578851.866733368,4527398.7307305243],[-10579103.431561762,4527398.6227093246],[-10579350.846161246,4527401.5594073217],[-10579589.115563236,4527404.3801290775],[-10579597.951906106,4527404.4763839217],[-10579844.742188804,4527407.3792009437],[-10580081.656034656,4527410.1597164487],[-10580091.204595232,4527410.2796140863],[-10580102.101503462,4527410.408242858],[-10580336.836404702,4527409.3325926773],[-10580575.855022192,4527408.2313113129],[-10580582.237447163,4527408.1995000225],[-10580827.377890583,4527407.0736111728],[-10581072.284365354,4527405.9402632033],[-10581326.666128682,4527405.9860964483],[-10581580.837750731,4527406.0240910845],[-10581834.803836735,4527406.0495701069],[-10582088.559781507,4527406.0706234919],[-10582341.712834312,4527406.0914199967],[-10582595.488001058,4527406.1048891349],[-10582598.103803214,4527406.0971960267],[-10582849.891688997,4527406.1026881607],[-10583104.913886828,4527406.1011233963],[-10583105.717529241,4527659.8523849789],[-10583106.499464905,4527906.496471487],[-10583106.53198286,4527913.5031188531],[-10583107.31800239,4528167.03271187],[-10583108.0741734,4528410.636405969],[-10583108.085199896,4528420.5301538957],[-10583111.362469038,4528673.212783142],[-10583114.557470549,4528919.5326413764],[-10583114.645447385,4528926.1249171235],[-10583117.946649898,4529179.317775826],[-10583121.252059212,4529432.6811321983],[-10583119.168248329,4529691.7640174674],[-10583117.089535872,4529950.2129288232],[-10583115.030238526,4530208.0489348406],[-10583112.974137563,4530465.2627597796],[-10583112.902170593,4530475.3146114266],[-10583116.291305097,4530722.5313777132],[-10583119.808993991,4530979.0325918337],[-10583123.317974834,4531235.7008280717],[-10583126.823850375,4531492.2160398895],[-10583121.55576754,4531749.9239498535],[-10583116.416259373,4532001.3096990045],[-10583116.302392503,4532006.8606101079],[-10583111.083248207,4532263.0713647734],[-10583106.209105227,4532502.3689060211],[-10583106.298770497,4532507.7886843896],[-10583106.479401384,4532518.5275810696],[-10583110.52839466,4532774.5729901958],[-10583114.401657365,4533019.4138874682],[-10583114.527003929,4533028.3396708034],[-10583118.49254855,4533279.7834428102],[-10583122.422125287,4533528.9131185189],[-10583120.926539902,4533783.8025726462],[-10583119.416961854,4534040.7364549907],[-10583117.901884407,4534298.2812841702],[-10583116.379510907,4534556.9071522998],[-10583114.870935258,4534813.9791057203],[-10583113.360661926,4535071.4309448674],[-10583111.868107405,4535328.7599789221],[-10583110.375152903,4535586.1401434299],[-10582857.178999381,4535590.8073093789],[-10582603.901552325,4535595.4676471669],[-10582598.463309634,4535595.57503682],[-10582350.538607098,4535600.1378554935],[-10582097.070340674,4535604.7951633306],[-10582089.806101644,4535604.9182353364],[-10581843.996332675,4535609.9659613902],[-10581590.517560121,4535615.1638345923],[-10581583.72906749,4535615.3025946487],[-10581336.609093996,4535620.3544998923],[-10581082.296263505,4535625.5482043177],[-10581087.429545294,4535878.9691689191],[-10581092.568135984,4536132.6309682168],[-10581097.726552458,4536386.5520910993],[-10581102.888575003,4536640.6376680071],[-10581106.532365143,4536895.6697356878],[-10581110.183970548,4537151.2520927526],[-10581113.869120821,4537407.3893347736],[-10581117.562086461,4537664.0856782086],[-10580867.825436894,4537665.12680877],[-10580619.209774336,4537666.1549085937],[-10580616.550420776,4537666.16021924],[-10580371.735522352,4537667.1802266873],[-10580125.38105607,4537668.2003589142],[-10579879.928224791,4537669.1946804971],[-10579632.902187051,4537670.1903921077],[-10579387.609239284,4537671.1825635899],[-10579142.922387341,4537672.1653729742],[-10578888.059356345,4537664.8020772664],[-10578632.900185335,4537657.423853782],[-10578624.536579097,4537657.1859648153],[-10578377.461493364,4537650.0291841915],[-10578121.728563517,4537642.6157909464],[-10578116.808269443,4537389.6408659145],[-10578112.040137721,4537144.4549676199],[-10578111.922439126,4537138.8113485975],[-10578107.066767324,4536890.1017798837],[-10578102.251566028,4536643.5245333957],[-10578097.385363655,4536393.1613243632],[-10578092.56854631,4536145.31197559],[-10578087.717886331,4535897.1220052941]]]},"attributes":{"objectid":6819,"field_kid":"1000146840","approxacre":11108,"field_name":"HEPLER","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":574019.32999999996,"maxoilwell":193,"lastoilpro":539.38,"lastoilwel":143,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":547.63999999999999,"avgdepthsl":-418.36000000000001,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146840}},{"geometry":{"rings":[[[-10565190.424617196,4632471.9564078338],[-10565191.432139222,4632214.477160668],[-10565192.438060235,4631956.817430988],[-10565193.450489096,4631699.1187067544],[-10565194.463919576,4631441.3405158054],[-10565194.727082301,4631183.4171099626],[-10565194.98874387,4630925.3534791786],[-10565195.259716708,4630667.1742745517],[-10565195.530890308,4630408.8696742365],[-10565451.516156146,4630409.3803146407],[-10565706.58516115,4630409.8808693336],[-10565960.727092804,4630410.3707000064],[-10566213.95476594,4630410.8517216546],[-10566212.942123057,4630153.2111971276],[-10566211.932180064,4629896.3522952599],[-10566210.904718513,4629639.0306656761],[-10566209.876155704,4629381.6747556645],[-10566208.854801415,4629124.2466548979],[-10566207.831945566,4628866.743049833],[-10566206.814195644,4628609.2073457213],[-10566205.7943433,4628351.6364814471],[-10566205.341743607,4628095.1498602955],[-10566204.889144752,4627838.4461460141],[-10566204.453165911,4627581.5407983987],[-10566204.015585959,4627324.4402139941],[-10566203.574102269,4627067.1345800515],[-10566203.131518126,4626809.6147229606],[-10566202.686431825,4626551.8983979849],[-10566202.239544246,4626293.9709437992],[-10566459.347094156,4626296.1867223],[-10566716.60261526,4626298.3963755677],[-10566719.722931208,4626298.4309609281],[-10566973.98007733,4626300.6127929511],[-10567231.486889061,4626302.8144070841],[-10567235.608165015,4626302.8452918744],[-10567489.14477561,4626305.0014732247],[-10567746.93181153,4626307.1880292697],[-10567750.011880826,4626307.2208279911],[-10568004.850499699,4626309.3759894893],[-10568262.936581591,4626311.5532302335],[-10568519.596322756,4626311.0233186735],[-10568776.176672023,4626310.4880472161],[-10569032.688742192,4626309.9609433217],[-10569289.173580922,4626309.4259271845],[-10569288.664430249,4626053.6760019502],[-10569288.153079215,4625797.4657623377],[-10569287.631618125,4625540.9042198835],[-10569287.109458119,4625283.9432937736],[-10569287.420366077,4625026.5106641147],[-10569287.731876751,4624768.6787141794],[-10569288.054001927,4624510.4076642031],[-10569288.376429589,4624251.712985781],[-10569292.817178318,4624251.7339133592],[-10569546.191046981,4624252.9760359181],[-10569804.341653777,4624254.2341102408],[-10569807.662904501,4624254.255164789],[-10570062.846771434,4624255.4918020675],[-10570321.707401171,4624256.7390316185],[-10570321.864609657,4623998.3240573732],[-10570322.021318445,4623739.7485644789],[-10570322.01363118,4623735.5302006612],[-10570322.144288983,4623481.0139683271],[-10570322.277772587,4623222.119132637],[-10570322.280103957,4623216.5339701362],[-10570322.412056893,4622963.2781419829],[-10570322.549446296,4622704.1552205309],[-10570322.547666915,4622699.735843881],[-10570322.682532137,4622444.7655702597],[-10570322.817721818,4622185.111890153],[-10570323.14722877,4621927.0585360173],[-10570323.470300922,4621674.3453197451],[-10570323.486544717,4621669.4845175268],[-10570323.818549817,4621412.3876301162],[-10570324.143012119,4621161.9374810876],[-10570324.166671216,4621155.7728125304],[-10570324.48726023,4620899.2599282498],[-10570324.801316164,4620647.7281639669],[-10570324.807747355,4620643.1071252581],[-10570325.146654338,4620387.2648894722],[-10570325.484858882,4620131.7556448402],[-10570582.75544887,4620130.8672024691],[-10570834.273562638,4620129.9936766345],[-10570839.675332012,4620129.9684290551],[-10571096.256121747,4620129.0665944517],[-10571345.303167915,4620128.1854138989],[-10571344.278472042,4619870.9329379806],[-10571343.251775216,4619613.4081001598],[-10571342.207959868,4619355.6119410004],[-10571341.16224375,4619097.5305802366],[-10571340.118631531,4618839.1598309092],[-10571339.074319869,4618580.5139971282],[-10571338.031311141,4618321.5850658668],[-10571336.98680206,4618062.3795616506],[-10571344.265954303,4618062.3825036241],[-10571595.427290728,4618062.7645992422],[-10571854.419419864,4618063.1528254021],[-10571859.778142123,4618063.1659661951],[-10572113.95888444,4618063.5504883714],[-10572374.048387695,4618063.9383333456],[-10572631.044698536,4618064.4415757684],[-10572884.631350232,4618064.9314248208],[-10572887.751373002,4618064.944435291],[-10573144.167109637,4618065.4355630334],[-10573396.053987568,4618065.9104906525],[-10573400.293009674,4618065.9229924632],[-10573655.948863942,4618066.3942268528],[-10573908.356246226,4618066.8546183631],[-10573911.39617601,4618066.8634207314],[-10574166.740268197,4618067.3262387104],[-10574421.498580175,4618067.7822976355],[-10574678.000905342,4618070.1042904956],[-10574934.748414896,4618072.4229686549],[-10575191.237824505,4618074.7297879476],[-10575379.267942443,4618076.4150095042],[-10575447.652031263,4618077.7276400272],[-10575488.817759521,4618078.5029246677],[-10575704.060817562,4618076.6215541437],[-10575960.294911243,4618074.3763747374],[-10576216.342491364,4618072.1257141037],[-10576472.179730641,4618069.8697000062],[-10576723.891529921,4618070.1549789542],[-10576976.162669677,4618070.4342593998],[-10577228.885226302,4618070.7123879641],[-10577482.146499768,4618070.9856658559],[-10577735.934876835,4618071.2479724595],[-10577990.209210338,4618071.5050463388],[-10578244.959488822,4618071.7568876091],[-10578500.111827683,4618072.0037519839],[-10578500.414019516,4617815.2798132002],[-10578500.716400862,4617560.2295836937],[-10578500.983648185,4617304.2180284318],[-10578501.252798164,4617048.1373556284],[-10578501.550480958,4616792.0385699142],[-10578501.847565606,4616535.550785671],[-10578502.129332185,4616279.1504743416],[-10578502.413802305,4616022.6860434031],[-10578518.524446804,4616022.7395541025],[-10578759.572815174,4616023.4310494876],[-10578881.717754925,4616023.7796494011],[-10579016.735932834,4616024.1645815764],[-10579252.106300659,4616024.8418556731],[-10579273.912365716,4616024.9035957782],[-10579531.097909082,4616025.6364905098],[-10579629.011907609,4616025.9203152396],[-10579788.209670311,4616026.0047642263],[-10580045.373793012,4616026.1350133],[-10580162.768596346,4616026.1813822137],[-10580302.451316694,4616026.2448648373],[-10580559.418313814,4616026.3587971898],[-10580691.121797819,4616026.5841454454],[-10580817.170407746,4616026.7938695149],[-10581074.557884317,4616027.2186188828],[-10581215.857454697,4616027.4531771652],[-10581331.62529448,4616027.6376345083],[-10581588.339700609,4616028.0416099206],[-10581734.837422306,4616028.2743309569],[-10581732.240071457,4615706.5370144788],[-10581729.645922158,4615385.1566265905],[-10581728.690082466,4615265.1421672553],[-10581724.364887554,4615065.2646594411],[-10581724.062529249,4615051.2936813226],[-10581731.073394671,4614806.5269258702],[-10581731.101584578,4614746.3295154972],[-10581731.220339142,4614428.4122552024],[-10581731.338685431,4614111.5325672124],[-10581731.469338452,4613795.629683286],[-10581731.599182993,4613480.7307897052],[-10581735.654877966,4613224.2680924181],[-10581739.665500144,4612970.6189178433],[-10581739.721885769,4612967.851033221],[-10581743.78298723,4612711.4075999623],[-10581747.776579157,4612459.2290320657],[-10581747.845190076,4612454.977430176],[-10582000.709347196,4612452.4930008687],[-10582249.416243939,4612450.0442990744],[-10582253.014063826,4612450.0103622312],[-10582504.748227207,4612447.535121995],[-10582755.90302729,4612445.0602707211],[-10583010.455217935,4612442.5433289045],[-10583265.427690003,4612440.0161880115],[-10583520.833858799,4612437.4864946557],[-10583776.672122546,4612434.9468570072],[-10583772.932644466,4612691.5567837115],[-10583769.187557556,4612948.5028190427],[-10583765.454587968,4613205.0335116554],[-10583761.725524474,4613461.3820796926],[-10583900.454456843,4613462.0748000043],[-10584016.74048526,4613463.7834664164],[-10584271.910412878,4613467.5278823245],[-10584527.26475146,4613471.273444538],[-10584782.767059335,4613475.015309996],[-10584780.937821921,4613798.4551614244],[-10584779.111590378,4614121.608168833],[-10584777.269748064,4614443.8804201083],[-10584775.431215394,4614765.4306659047],[-10584773.593261816,4615086.3942491747],[-10584771.75828385,4615406.8463603733],[-10584769.935823085,4615726.8361018635],[-10584768.115668627,4616046.2341553587],[-10584662.54280439,4616045.4718066519],[-10584648.577914236,4616045.7859568652],[-10584513.404962093,4616044.8906791853],[-10584259.453226641,4616043.2029712154],[-10584149.801192053,4616042.4718992701],[-10584006.250248512,4616041.5082442453],[-10583753.841780066,4616039.8087926237],[-10583637.197641389,4616038.9091217723],[-10583638.398014104,4616296.6750043537],[-10583639.598787609,4616554.3988892771],[-10583640.782441732,4616812.0969661726],[-10583641.96549537,4617069.7728031278],[-10583643.157757619,4617327.7702833135],[-10583644.351020781,4617585.8149028551],[-10583645.560101885,4617843.8979943795],[-10583646.77118507,4618102.0254267436],[-10583390.374131443,4618100.0522593753],[-10583139.91357469,4618098.1194587843],[-10583133.95615395,4618098.0702942777],[-10582877.550490631,4618096.0831015734],[-10582621.142424649,4618094.0888961982],[-10582619.974871898,4618352.5804943703],[-10582618.837695416,4618604.4387532026],[-10582618.826344769,4618610.4609912084],[-10582617.673016116,4618867.7098095259],[-10582616.558085572,4619116.2994867442],[-10582616.519290945,4619124.330600352],[-10582615.359562956,4619380.3053349005],[-10582614.228609247,4619629.671196104],[-10582614.21916089,4619635.6760513727],[-10582613.070453053,4619890.4513777746],[-10582611.924652377,4620144.6158373784],[-10582353.668727424,4620146.2634269968],[-10582095.272742085,4620147.9061713172],[-10581837.266703237,4620149.5468715206],[-10581579.459592192,4620151.1788971489],[-10581321.96473876,4620152.7952324366],[-10581064.726278935,4620154.4034027988],[-10580807.731097711,4620155.9997096602],[-10580581.201502169,4620157.4011163665],[-10580550.978591396,4620158.0596272722],[-10580551.711796772,4620416.2182100611],[-10580552.444101589,4620674.3113308391],[-10580553.182614032,4620932.3309489982],[-10580553.921627508,4621190.2875185963],[-10580296.870694585,4621188.3410944333],[-10580040.264971526,4621186.3912231037],[-10579783.646634052,4621184.441735208],[-10579527.168557269,4621182.4865068132],[-10579271.148403518,4621180.7463311702],[-10579015.296542533,4621179.0011800053],[-10578760.035658352,4621177.2497741459],[-10578505.224489179,4621175.4953036588],[-10578254.876831211,4621173.7300806139],[-10578003.95451531,4621171.9551690053],[-10577752.088018345,4621170.1698066955],[-10577499.405687286,4621168.3720792877],[-10577246.216776226,4621166.5692546768],[-10576992.336874031,4621164.7550843405],[-10576737.749962421,4621162.9193641199],[-10576482.468755892,4621161.0730635347],[-10576481.438695921,4621420.1309257299],[-10576480.411844872,4621678.3819857249],[-10576479.396005426,4621936.7924745688],[-10576478.378765484,4622195.0344310626],[-10576479.695118183,4622450.1415736424],[-10576479.819303628,4622474.3100514505],[-10576481.252349913,4622627.6769085955],[-10576481.829202073,4622706.0646113856],[-10576483.659438798,4622961.879071367],[-10576485.490875704,4623217.889474513],[-10576487.317702917,4623474.5922584599],[-10576489.143630013,4623731.1665898226],[-10576490.979369231,4623987.6167970207],[-10576492.815710105,4624243.9287082488],[-10576493.928111451,4624501.8664482599],[-10576495.044014568,4624760.1601479584],[-10576496.172329498,4625018.8334404584],[-10576497.301743297,4625277.8850785466],[-10576498.40853741,4625535.9891172126],[-10576499.517531129,4625794.55124899],[-10576500.641140416,4626053.3036459731],[-10576501.768050475,4626312.5298888739],[-10576392.363856766,4626311.7459557615],[-10576245.30964065,4626311.3418281302],[-10575988.936325198,4626310.6316946251],[-10575731.575779183,4626309.9076580629],[-10575473.48549749,4626309.1757146306],[-10575471.197681256,4626569.1994772339],[-10575468.905256024,4626829.7916150512],[-10575466.609722529,4627091.1059621191],[-10575464.306975648,4627353.2042191252],[-10575461.738227708,4627614.7503785361],[-10575459.15815914,4627877.4703029804],[-10575459.104065211,4627882.3723284742],[-10575456.579983726,4628141.5700937379],[-10575454.001302535,4628406.4662711937],[-10575712.424300453,4628405.0136409225],[-10575970.993465813,4628403.5520746345],[-10576229.308139753,4628402.076469237],[-10576487.507882049,4628400.5955035705],[-10576747.671560852,4628401.1080605797],[-10577008.002230968,4628401.6129579842],[-10577011.925023861,4628401.6329720961],[-10577268.480670141,4628402.1496377401],[-10577529.134910809,4628402.6666593375],[-10577533.858621119,4628402.6751802536],[-10577789.904583754,4628403.1743622981],[-10578050.869680597,4628403.6749160308],[-10578055.194233824,4628403.6686329311],[-10578311.970132604,4628404.1550459946],[-10578573.364621351,4628404.6433433034],[-10578573.355927644,4628511.4540104559],[-10578574.027134696,4628661.6908703698],[-10578575.177906461,4628918.8751524491],[-10578576.317965353,4629176.1630133614],[-10578577.456321469,4629433.5905876812],[-10578578.586867848,4629691.1520136958],[-10578579.716612725,4629948.8147475077],[-10578580.860472979,4630206.6098195864],[-10578582.003431872,4630464.4676603731],[-10578320.960427608,4630463.5620157588],[-10578059.192793399,4630462.647055869],[-10577798.439220719,4630461.7386012198],[-10577538.141970791,4630460.8231222304],[-10577278.25008519,4630459.9107050793],[-10577018.773275083,4630458.9925405271],[-10576759.731963957,4630458.0562445726],[-10576501.126051607,4630457.114839456],[-10576243.032187896,4630462.0125017092],[-10575986.02837286,4630466.8825824978],[-10575728.152758954,4630471.7793529937],[-10575470.085325245,4630476.6744665615],[-10575379.367702002,4630478.4023771891],[-10575212.255053196,4630475.5714656627],[-10574953.881453153,4630471.1884912355],[-10574696.033561168,4630466.7968368568],[-10574438.272969661,4630462.4013540111],[-10574440.479508709,4630720.2825212311],[-10574442.682545701,4630977.8027096586],[-10574444.895395961,4631234.9737663651],[-10574447.06592772,4631487.2364034206],[-10574705.431175567,4631487.0044680992],[-10574963.537724055,4631486.7655103756],[-10575221.370555814,4631486.519657922],[-10575478.926470287,4631486.2685332494],[-10575481.70357576,4631743.3122102972],[-10575484.479280017,4632000.3111151317],[-10575487.240268096,4632257.2200418478],[-10575490.000955619,4632514.1781707341],[-10575379.470942711,4632513.9093371565],[-10575231.792457545,4632514.1575045232],[-10574973.162174882,4632514.5867809476],[-10574714.582050471,4632514.993072384],[-10574455.906515742,4632515.3942561094],[-10574198.6112817,4632515.2486512698],[-10573941.053243579,4632515.0952571575],[-10573936.286627848,4632515.0846602637],[-10573683.21798482,4632514.913131861],[-10573425.118119832,4632514.7319005216],[-10573419.191762099,4632514.7178563047],[-10573419.013823487,4632770.9456732608],[-10573418.836182499,4633027.638965671],[-10573418.645323422,4633284.8107943358],[-10573418.452959718,4633542.4765201919],[-10573161.632352872,4633541.435701821],[-10572905.611370994,4633540.3904133653],[-10572649.820655366,4633539.3428261094],[-10572394.213552045,4633538.2889811452],[-10572393.817730436,4633356.4384659464],[-10572393.549547208,4633281.5007859683],[-10572392.934211794,4633110.1428465322],[-10572392.542123249,4633028.5246252408],[-10572392.544645423,4633025.1455307128],[-10572391.404384047,4632769.2912456598],[-10572390.385110263,4632540.1628144858],[-10572390.125659505,4632513.9315085504],[-10572132.41575803,4632511.5480568036],[-10571874.507626878,4632509.1559223207],[-10571616.41608314,4632506.7655760413],[-10571358.129613537,4632504.3669301104],[-10571100.380165176,4632501.9400639404],[-10570842.793204516,4632499.5084734485],[-10570585.104025172,4632497.0886313114],[-10570327.415846663,4632494.6634264374],[-10570326.11711384,4632539.4976506289],[-10570327.137405232,4632751.8558425261],[-10570328.379117593,4633010.0507626384],[-10570329.628441833,4633267.6211867183],[-10570330.876965577,4633525.0776411192],[-10570332.113475649,4633782.4634111617],[-10570333.349185074,4634039.7669974277],[-10570334.592403596,4634296.961445584],[-10570335.835722476,4634554.0814873539],[-10570079.833735699,4634552.5464463318],[-10569824.496417476,4634551.0088506499],[-10569568.978990722,4634549.4709997736],[-10569313.597721264,4634547.9275292959],[-10569058.433002129,4634546.3671997972],[-10568803.341367334,4634544.8017616197],[-10568548.415924523,4634543.2393887546],[-10568293.644559728,4634541.6713962834],[-10568037.355932573,4634541.7156122113],[-10567781.186142905,4634541.7533143619],[-10567524.808813255,4634541.7770951716],[-10567268.328464484,4634541.7947454983],[-10567011.899374977,4634541.817887743],[-10566755.069321746,4634541.8338779183],[-10566498.43940004,4634541.8370959917],[-10566241.410416806,4634541.8329065498],[-10565980.49333859,4634541.3100490561],[-10565719.53601378,4634540.7785066357],[-10565715.690466046,4634540.7582014706],[-10565458.068498788,4634540.2493911907],[-10565196.256485246,4634539.7262787875],[-10565190.608352559,4634539.719768431],[-10564933.650953969,4634539.1665112469],[-10564670.497689139,4634538.5955046872],[-10564666.21193216,4634538.5974230291],[-10564406.767056363,4634538.0434010001],[-10564142.493695837,4634537.4738000249],[-10564142.895545457,4634279.0303391591],[-10564143.298195979,4634020.6145815337],[-10564143.718967458,4633762.2251201347],[-10564144.139238346,4633503.8628468374],[-10564144.55250087,4633245.5994013203],[-10564144.966163378,4632987.4987540087],[-10564145.373919856,4632729.1859730892],[-10564145.673414895,4632539.8485482894],[-10564145.406242279,4632470.7841717657],[-10564407.380994391,4632471.0877333786],[-10564668.957485629,4632471.3824842311],[-10564929.953204772,4632471.6741706235],[-10565190.424617196,4632471.9564078338]]]},"attributes":{"objectid":5574,"field_kid":"1000146326","approxacre":25057,"field_name":"GOODRICH-PARKER","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":607602.31000000006,"maxoilwell":227,"lastoilpro":255.24000000000001,"lastoilwel":54,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":593.81795454999997,"avgdepthsl":-349.08545455000001,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146326}},{"geometry":{"rings":[[[-10588045.319890516,4591190.16335152],[-10588047.404177899,4590932.9252197258],[-10587792.165967019,4590932.450504085],[-10587540.886896564,4590931.9772881866],[-10587537.137897188,4590931.9665028565],[-10587282.339190448,4590931.4741061563],[-10587032.735040925,4590930.9859989369],[-10587027.750724869,4590930.9725510506],[-10587029.854099872,4590675.2853944134],[-10587031.960181411,4590419.1904802816],[-10587034.05325152,4590162.6802086653],[-10587036.14922847,4589905.7520669326],[-10587038.231088847,4589648.8889307259],[-10587040.277874323,4589396.3406634117],[-10587040.329063561,4589392.5579865864],[-10587042.425232043,4589136.7588134846],[-10587044.516090274,4588881.4930249145],[-10586982.907225484,4588881.4141982077],[-10586789.520837858,4588878.0922221495],[-10586534.708002411,4588873.7093992457],[-10586280.09559666,4588869.3275938183],[-10586025.570591001,4588864.9421018427],[-10585771.893531352,4588863.8715393366],[-10585517.558817377,4588862.7951318882],[-10585514.449450998,4588862.7857421348],[-10585262.57606012,4588861.7093191035],[-10585006.956772808,4588860.6111763362],[-10585009.921092261,4588605.0124922069],[-10585012.885511715,4588349.4503848813],[-10585015.867050655,4588093.9298101291],[-10585018.847087666,4587838.457503451],[-10585021.808503618,4587582.9688744573],[-10585024.769619202,4587327.5066419365],[-10585027.748555215,4587072.0674982555],[-10585030.727491131,4586816.6635190751],[-10585018.050448705,4586816.6203712244],[-10585022.270709731,4586561.0693742046],[-10585026.493174212,4586305.4299811274],[-10585030.739566913,4586049.7219019979],[-10585034.986060513,4585793.9451419525],[-10585290.538336491,4585795.0336760078],[-10585546.90925164,4585796.1186460014],[-10585804.096703557,4585797.199543477],[-10586062.102294045,4585798.2795463642],[-10586320.836213747,4585800.1491986271],[-10586578.794944122,4585802.006906582],[-10586835.974680759,4585803.8582634116],[-10587092.377826445,4585805.6994555751],[-10587347.475674678,4585807.5248930026],[-10587601.696616886,4585809.3380053351],[-10587855.030241136,4585811.1393011138],[-10588107.468738459,4585812.9285261426],[-10588109.902184814,4585561.2007549936],[-10588112.379919531,4585304.8910212861],[-10588114.861263182,4585048.013232884],[-10588117.34741709,4584790.5745498613],[-10588372.55651273,4584792.6076647155],[-10588628.194900861,4584794.6368371015],[-10588884.270890979,4584796.6667698547],[-10589140.795996336,4584798.6923787128],[-10589293.82165898,4584799.9175617239],[-10589397.545658791,4584800.7739127716],[-10589654.825328942,4584802.8928129664],[-10589912.671649162,4584805.0090409918],[-10590171.085620599,4584807.1233594641],[-10590426.227992255,4584802.7811356094],[-10590680.971206123,4584798.4394246228],[-10590935.28642915,4584794.0951761371],[-10591189.180469112,4584789.7509322315],[-10591443.047177866,4584785.4103766931],[-10591696.550169501,4584781.0698253894],[-10591949.831006469,4584776.7254643803],[-10592171.572252298,4584772.9162690891],[-10592202.48641674,4584773.474082646],[-10592456.086488999,4584772.8033036217],[-10592710.361736022,4584772.123496417],[-10592964.938028602,4584771.4294518679],[-10593219.950922221,4584770.726253395],[-10593216.253374649,4585027.4718871554],[-10593212.555025402,4585284.3299004566],[-10593208.870991984,4585541.2827599393],[-10593205.184955567,4585798.3414049326],[-10593201.493912755,4586055.5011399873],[-10593197.800967144,4586312.7576505262],[-10593194.104316669,4586570.1100539826],[-10593190.403961323,4586827.5600103028],[-10592936.993952665,4586827.9884391297],[-10592687.389409654,4586828.4042592179],[-10592683.880083857,4586828.4038989693],[-10592431.047037249,4586828.8164331662],[-10592178.51163215,4586829.2233719127],[-10591924.241641834,4586829.0837893235],[-10591669.152912321,4586828.938363675],[-10591414.359521709,4586828.7814945392],[-10591159.475627333,4586828.6167438775],[-10591156.787486412,4587084.9530379921],[-10591154.105057728,4587340.6336840624],[-10591151.436040876,4587596.7567367814],[-10591148.765622258,4587852.9180429056],[-10591145.174552966,4588108.4609034266],[-10591141.58077774,4588364.3644403582],[-10591138.002018725,4588620.413030629],[-10591134.405127207,4588877.8778555831],[-10590879.358099585,4588876.4918298339],[-10590665.215387393,4588875.3227255652],[-10590624.617520878,4588875.4069056166],[-10590370.241446381,4588875.9788108869],[-10590116.221981006,4588876.5428303499],[-10589860.509566398,4588878.0022875769],[-10589603.97621024,4588879.4613688616],[-10589347.839119976,4588879.551240271],[-10589292.767352453,4588879.568882918],[-10589091.646362005,4588880.1089161951],[-10589089.191137059,4589136.0000830367],[-10589086.733407948,4589392.0665782504],[-10589084.266867388,4589648.3152818782],[-10589081.797222055,4589904.7306930432],[-10589078.859735182,4590161.768735351],[-10589075.911430124,4590419.5296656089],[-10589072.961128404,4590676.6298483917],[-10589070.012129977,4590933.5333161252],[-10589294.206141325,4590933.6504800236],[-10589326.262404395,4590933.6510292711],[-10589582.777283171,4590933.6593654202],[-10589839.524628611,4590933.6594332913],[-10590096.462893076,4590933.6508516166],[-10590093.420062562,4591190.8717553811],[-10590090.36140408,4591449.2941052914],[-10590087.313764026,4591707.0418116199],[-10590084.266024426,4591964.7440486327],[-10590081.244918728,4592222.0650145477],[-10590078.217801368,4592479.9801741336],[-10590075.179175638,4592737.3388966192],[-10590072.136141831,4592995.081446006],[-10590071.004699029,4593252.9539284352],[-10590069.906053308,4593503.6902636886],[-10590069.860350914,4593509.6986203091],[-10590068.756754072,4593765.9092784263],[-10590067.688162779,4594014.2687682128],[-10590067.644353233,4594021.3985979343],[-10589813.155365234,4594021.1714261351],[-10589558.167905752,4594020.936497557],[-10589302.69118529,4594020.7008091621],[-10589046.694468653,4594020.4595268546],[-10588790.172349703,4594020.2050175807],[-10588533.148755828,4594019.9435148546],[-10588275.566321203,4594019.6793445321],[-10588017.447171247,4594019.4077993697],[-10588020.794611113,4593761.4554150375],[-10588024.140950484,4593503.4325048588],[-10588027.473474752,4593245.3433992285],[-10588030.805699466,4592987.1812337656],[-10588032.883374179,4592730.4463774087],[-10588034.956237292,4592474.4751152564],[-10588037.02009533,4592217.8766258946],[-10588039.087558983,4591961.1130485833],[-10588041.161130302,4591704.2870378224],[-10588043.237506479,4591447.2756085219],[-10588045.319890516,4591190.16335152]]]},"attributes":{"objectid":5599,"field_kid":"1000146330","approxacre":5539,"field_name":"KINCAID","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":624182.72999999998,"maxoilwell":73,"lastoilpro":484.52999999999997,"lastoilwel":50,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":786.06500000000005,"avgdepthsl":-277.435,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146330}},{"geometry":{"rings":[[[-10555465.04505593,4576517.2371257525],[-10555709.824244875,4576511.5658809654],[-10555710.336410863,4576762.2389415875],[-10555710.85277017,4577014.2180164075],[-10555710.848808186,4577020.6785291573],[-10555711.376025541,4577267.5448611854],[-10555711.920193247,4577522.2163992897],[-10555711.919617059,4577530.7180061899],[-10555712.438217677,4577778.3588610971],[-10555712.977554936,4578035.8413946182],[-10555712.979000457,4578042.1629459662],[-10555713.49495439,4578294.7279944709],[-10555714.026858449,4578554.9934867555],[-10555463.756352121,4578554.8556496911],[-10555211.98550849,4578554.7116056178],[-10555203.260104775,4578554.70014745],[-10554958.74306095,4578554.5481431568],[-10554704.047030233,4578554.3808866916],[-10554692.61329034,4578554.3676816178],[-10554448.003539335,4578554.1968780011],[-10554190.493249932,4578554.0114890244],[-10554180.970522838,4578554.0107105859],[-10553931.566119825,4578553.8309436077],[-10553671.199322715,4578553.6383471144],[-10553676.226313373,4578299.3305389788],[-10553681.082228657,4578053.6819209056],[-10553681.237272779,4578046.4452812579],[-10553686.198061699,4577794.9481746573],[-10553690.943403715,4577554.3681929754],[-10553691.142218841,4577544.8546136869],[-10553696.043815412,4577296.0257976912],[-10553700.778342659,4577055.698085824],[-10553700.92757914,4577048.5640059812],[-10553705.790206285,4576802.4587259144],[-10553710.62599021,4576557.7137979763],[-10553965.556736114,4576551.852286947],[-10554207.596652605,4576546.2818885641],[-10554219.079150969,4576546.0170856575],[-10554471.201544421,4576540.205018824],[-10554706.440584566,4576534.7746618418],[-10554721.908498555,4576534.4223097991],[-10554971.064756833,4576528.6621017279],[-10555206.876159864,4576523.2053296519],[-10555218.797566468,4576522.9374746466],[-10555465.04505593,4576517.2371257525]]]},"attributes":{"objectid":6030,"field_kid":"1000146835","approxacre":619,"field_name":"FEAGINS","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":89259.639999999999,"maxoilwell":22,"lastoilpro":480.81999999999999,"lastoilwel":13,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":376,"avgdepthsl":-461,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146835}},{"geometry":{"rings":[[[-10584028.901903577,4585029.0930093359],[-10584031.269913947,4584774.2253288692],[-10583775.073978228,4584773.051450192],[-10583519.999729425,4584771.8764212141],[-10583263.999518223,4584770.6956778383],[-10583007.772546839,4584769.5093431724],[-10582751.300193977,4584768.3091555219],[-10582494.58856659,4584767.1013429826],[-10582237.639466697,4584765.891752379],[-10581980.449991029,4584764.6741555771],[-10581985.097193792,4584507.082365362],[-10581989.742994905,4584249.528887134],[-10581994.389096377,4583992.0054567307],[-10581999.032494785,4583734.5100383395],[-10582003.681400254,4583476.9494734909],[-10582008.336815819,4583219.0789995668],[-10582012.965695592,4582961.9399553882],[-10582017.586162966,4582705.1903151777],[-10582021.184768511,4582447.0635663867],[-10582024.767647497,4582190.0754747884],[-10582028.355035849,4581932.5660390006],[-10582031.943024868,4581675.0862599239],[-10582035.528610965,4581417.6540512508],[-10582039.112795195,4581160.2823695056],[-10582042.695077151,4580902.9499914767],[-10582046.276758252,4580645.6645373935],[-10581790.270857962,4580643.7168177599],[-10581534.308107158,4580641.7629995141],[-10581278.269869622,4580639.8107065177],[-10581022.221820787,4580637.8528233822],[-10580765.911370875,4580635.8737237463],[-10580510.055242309,4580633.8923350563],[-10580253.943620436,4580631.9113290403],[-10579997.80957279,4580629.9230812704],[-10580000.337492364,4580373.7423063135],[-10580002.811208593,4580123.075519871],[-10580002.882030306,4580117.6767471777],[-10580005.399235848,4579861.7697177054],[-10580007.845806774,4579613.0325055523],[-10580007.933159595,4579606.0139644332],[-10580009.660643108,4579432.3399369717],[-10580010.853714149,4579350.3815019475],[-10580014.496043269,4579100.1334917787],[-10580014.560962589,4579094.9142599273],[-10580018.264906468,4578839.5487181609],[-10580021.968348948,4578584.2888068883],[-10580278.525915321,4578585.7872782433],[-10580534.742590472,4578587.277748582],[-10580540.239099124,4578587.3118929658],[-10580790.932034291,4578588.7745706346],[-10581047.000138896,4578590.2623743899],[-10581054.926136088,4578590.3022234337],[-10581303.179070791,4578591.7388722058],[-10581559.73453483,4578593.2181630004],[-10581566.186940717,4578593.246586524],[-10581816.531175872,4578594.6753497859],[-10582073.864132445,4578596.1363450075],[-10582073.084979367,4578336.5039196201],[-10582072.305324981,4578076.9618345024],[-10582072.298574558,4578070.320976885],[-10582071.543893982,4577817.1388054024],[-10582070.769849963,4577557.152343357],[-10582070.726177713,4577548.1320479214],[-10582069.9730825,4577296.8663028087],[-10582069.190733626,4577036.3491642596],[-10582069.186787106,4577029.6297194753],[-10582068.424605342,4576775.6089464463],[-10582067.642560693,4576514.6541754548],[-10582321.95946902,4576515.9179517478],[-10582576.223817065,4576517.1746162008],[-10582830.420587523,4576518.4311540583],[-10583084.56609918,4576519.6818501046],[-10583086.64720474,4576263.614400886],[-10583088.726808434,4576007.5724543026],[-10583090.80280726,4575751.623950134],[-10583092.878805513,4575495.7505946672],[-10583095.649801483,4575239.8933298336],[-10583098.418594442,4574984.1015544953],[-10583101.185685171,4574728.3517721565],[-10583103.950873323,4574472.6576932464],[-10583107.508674905,4574216.5595331062],[-10583111.064274097,4573960.4560171552],[-10583114.604456464,4573704.2636002544],[-10583118.145540407,4573448.0197436921],[-10583373.614189012,4573449.2094358625],[-10583628.448809858,4573450.3911320576],[-10583882.651204998,4573451.5659749564],[-10584136.242098257,4573452.7309172926],[-10584138.503118243,4573196.5440876978],[-10584140.762236364,4572940.3304505879],[-10584143.025459634,4572684.0754078599],[-10584145.289083656,4572427.7962281257],[-10584399.111756761,4572428.0475197034],[-10584653.135660917,4572428.2930975128],[-10584907.347080361,4572428.5346120112],[-10585161.738106029,4572428.771174551],[-10585416.336469723,4572429.0051971357],[-10585671.13666518,4572429.2312207976],[-10585926.131884612,4572429.4456908731],[-10586181.293395007,4572429.651908271],[-10586438.761554476,4572429.7251957357],[-10586696.115282657,4572429.7898508683],[-10586953.337660177,4572429.840287799],[-10587210.421378586,4572429.883362052],[-10587467.363934914,4572429.9310072111],[-10587724.169433966,4572429.9712896822],[-10587980.824560545,4572429.9949419266],[-10588237.320604565,4572430.0119932806],[-10588234.965352248,4572686.233252841],[-10588232.611302443,4572942.3359146994],[-10588230.245640736,4573198.284928536],[-10588227.879178993,4573454.1427501813],[-10588225.523831392,4573709.8523639059],[-10588223.17038838,4573965.2974525373],[-10588220.819948161,4574220.8264163584],[-10588218.470810544,4574476.2390169604],[-10587960.650053486,4574476.7030034428],[-10587701.358908607,4574477.1625522878],[-10587443.270344235,4574477.6160008609],[-10587185.482224809,4574478.0624643164],[-10586928.009767685,4574478.5147673935],[-10586670.838656552,4574478.959831412],[-10586413.965387441,4574479.3902916322],[-10586157.391462028,4574479.8117350787],[-10586156.138688659,4574735.9343570825],[-10586154.886014078,4574992.2168310117],[-10586153.643650165,4575248.6407555509],[-10586152.398982085,4575505.2477943655],[-10586151.145001642,4575762.0538354367],[-10586149.889218125,4576018.9837113013],[-10586148.646147927,4576276.0671492768],[-10586147.401975874,4576533.22681583],[-10586148.761374099,4576792.4833802115],[-10586150.101479387,4577048.3966734661],[-10586150.107257409,4577051.6753045199],[-10586151.468859293,4577310.8124908665],[-10586152.807271561,4577565.7121666148],[-10586152.820950622,4577569.911955554],[-10586154.187358841,4577828.9637882197],[-10586155.534773761,4578084.7532999748],[-10586155.544657361,4578087.9333083592],[-10586156.910365883,4578346.8681444731],[-10586158.277677339,4578605.6824225551],[-10586161.408265876,4578617.6927403593],[-10586160.628303871,4578648.2686742898],[-10586155.970193727,4578861.8779395074],[-10586150.35229856,4579119.4453087701],[-10586144.755536273,4579376.0374565516],[-10586143.47635939,4579434.6940252809],[-10586141.295873499,4579632.5349275544],[-10586398.217349723,4579633.9672104102],[-10586655.275883261,4579635.3927594656],[-10586912.453453327,4579636.8212299738],[-10587169.771584725,4579638.2429666687],[-10587425.479866756,4579639.8571796874],[-10587680.629307384,4579641.4604699649],[-10587935.219806427,4579643.0617304277],[-10588189.255869104,4579644.6542278277],[-10588187.315647056,4579901.0007278575],[-10588185.378529191,4580157.2877608398],[-10588183.443714533,4580413.522437322],[-10588181.510202063,4580669.688871732],[-10588178.71368329,4580927.8131240262],[-10588175.916864358,4581185.9351695077],[-10588175.869479911,4581189.6149776885],[-10588173.133661142,4581444.0674603023],[-10588170.432506915,4581695.510385422],[-10588170.320924146,4581702.2082185661],[-10588170.252009766,4581706.5272310823],[-10588166.587924615,4581961.1596444566],[-10588163.738236975,4582159.147361353],[-10588163.090289017,4582220.8916764623],[-10588160.485896239,4582478.4713135054],[-10588157.895429578,4582734.8301486475],[-10587901.39369948,4582733.6836166773],[-10587644.300590804,4582732.5266673788],[-10587637.726447102,4582732.4987451918],[-10587387.293580975,4582731.3575179959],[-10587130.150214702,4582730.1789654838],[-10587121.143880073,4582730.1454648664],[-10586872.68067405,4582729.0053708712],[-10586829.380588166,4582728.8051989954],[-10586615.038143536,4582726.749693362],[-10586607.987152936,4582726.6850477112],[-10586357.152836045,4582724.2811589902],[-10586099.023448436,4582721.8029682478],[-10586097.767747093,4582979.4841006612],[-10586096.514851185,4583236.9019697895],[-10586095.278276332,4583494.0424491204],[-10586094.043706223,4583750.8891232554],[-10586094.079781583,4583934.2618057542],[-10586093.487516657,4584007.4792056251],[-10586091.412987381,4584263.7757038185],[-10586091.112479651,4584296.6660785433],[-10586089.394925088,4584519.8165908223],[-10586087.424018933,4584775.6186256511],[-10586080.64139998,4585030.4635311915],[-10586073.843259044,4585285.873492687],[-10586073.701754674,4585291.1319559356],[-10586067.967472397,4585541.815751126],[-10586062.102294045,4585798.2795463642],[-10585804.100407805,4585797.1992892222],[-10585546.90925164,4585796.1186460014],[-10585290.548147751,4585795.0329132434],[-10585034.986060513,4585793.9451419525],[-10585030.747279927,4586049.1951144012],[-10585026.493174212,4586305.4299811274],[-10585022.271310471,4586561.0628907317],[-10585018.050448705,4586816.6203712244],[-10584765.221516555,4586815.7992356829],[-10584522.800623955,4586815.0076587545],[-10584513.313240549,4586814.9741535718],[-10584262.339937028,4586814.1558037177],[-10584012.281683229,4586813.3337615971],[-10584014.654001292,4586557.9796087639],[-10584017.019004021,4586303.5329370005],[-10584019.387914902,4586048.635650197],[-10584021.756425491,4585793.737523024],[-10584024.145059187,4585538.8546988368],[-10584026.533392709,4585283.9696351904],[-10584028.901903577,4585029.0930093359]]]},"attributes":{"objectid":6198,"field_kid":"1000146303","approxacre":9560,"field_name":"DAVIS-BRONSON","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":658951.76000000001,"maxoilwell":202,"lastoilpro":887.61000000000001,"lastoilwel":110,"lastodate":"2-2009","cumm_gas":5752,"maxgaswell":6,"lastgaspro":101,"lastgaswel":6,"lastgdate":"4-1996","avgdepth":656.93195121999997,"avgdepthsl":-342.64297297000002,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146303}},{"geometry":{"rings":[[[-10565989.2200797,4614712.6812726036],[-10565984.673073905,4614396.5818089209],[-10565980.246540204,4614088.8563550552],[-10565980.146782449,4614081.7261682712],[-10565975.628490135,4613768.1645839028],[-10565971.128208658,4613455.8890351094],[-10565970.734950395,4613198.6486638673],[-10565970.341689458,4612941.7451963332],[-10565969.96364359,4612685.1703230795],[-10565969.785921775,4612564.4871783927],[-10565970.027008077,4612428.9075792916],[-10565970.471219212,4612172.1363409273],[-10565970.667366954,4612059.3994014617],[-10565970.858664842,4611915.3147889236],[-10565971.195351217,4611658.5312400088],[-10565971.532638375,4611401.7424916159],[-10565971.550942052,4611379.3869978162],[-10565971.571248118,4611295.7487244522],[-10565971.581278071,4611146.4467329513],[-10565971.584663015,4611099.7541062878],[-10565971.541124085,4610889.9970796369],[-10565971.489056261,4610633.5543155698],[-10565971.435888378,4610376.9696135689],[-10565971.391835447,4610119.8564013774],[-10565971.348886311,4609862.4420244312],[-10565971.28641695,4609604.7342772335],[-10565971.224350479,4609346.737003901],[-10565715.174257254,4609347.740459119],[-10565459.27854332,4609348.7380534252],[-10565203.338978432,4609349.7313158093],[-10564947.414130634,4609350.7180803036],[-10564691.623438682,4609351.6932505798],[-10564435.908935202,4609352.6635792349],[-10564180.257905489,4609353.6224411121],[-10563924.682463557,4609354.5750598963],[-10563924.008037837,4609097.6127823293],[-10563923.332513975,4608840.2897386756],[-10563922.66189857,4608582.6486340789],[-10563921.992387237,4608324.6861800244],[-10563921.328886146,4608066.3471126715],[-10563920.664186802,4607807.6457276931],[-10563919.98727621,4607548.6062554289],[-10563919.309968105,4607289.2266831081],[-10563662.492552066,4607289.2829298554],[-10563409.492869217,4607289.3336943276],[-10563406.136071358,4607289.3286033245],[-10563150.181257015,4607289.3787346305],[-10562899.315151731,4607289.4213439412],[-10562894.639822686,4607289.4291201662],[-10562883.493279468,4607289.4156318493],[-10562638.169903254,4607290.2925844323],[-10562388.794421628,4607291.1766754389],[-10562383.201426953,4607291.1894207094],[-10562129.779146036,4607292.0861275373],[-10562127.340814589,4607292.0939009218],[-10561877.866125351,4607292.0875936225],[-10561875.11765657,4607034.628795377],[-10561872.369187338,4606777.2468622262],[-10561869.614313334,4606519.5819619326],[-10561866.85864006,4606261.7497666357],[-10561609.926216746,4606262.2703692643],[-10561358.13266016,4606262.7755516106],[-10561353.819051733,4606262.7745398432],[-10561098.509412602,4606263.2872427413],[-10560844.013217978,4606263.7926841704],[-10560585.196902741,4606264.8200907428],[-10560325.020007707,4606265.8468626272],[-10560065.897236623,4606266.8630610369],[-10559807.026758483,4606267.8718715226],[-10559807.850300221,4606010.244091806],[-10559808.674240239,4605752.8640974648],[-10559809.501686083,4605495.2866212698],[-10559810.329833176,4605237.6610667882],[-10559809.892101262,4604981.0966855669],[-10559809.452171471,4604724.015020947],[-10559809.031168103,4604466.4409440598],[-10559808.609768767,4604208.3695253376],[-10559808.187569136,4603950.236051322],[-10559807.7644717,4603691.7472690707],[-10559807.349587003,4603432.906133825],[-10559806.934305096,4603173.7083427878],[-10559551.31431382,4603172.2400564607],[-10559295.790834714,4603170.7647671625],[-10559040.26985874,4603169.2738166908],[-10558784.769306606,4603167.7785374187],[-10558784.311184386,4602910.9260028414],[-10558783.853959339,4602654.5133992974],[-10558783.385217337,4602398.5098822163],[-10558782.915570507,4602142.9354099687],[-10558782.474653121,4601887.803191239],[-10558782.033431696,4601633.091422921],[-10558781.602017801,4601378.8157327157],[-10558781.169699019,4601124.9764702674],[-10559036.950030984,4601124.7898012968],[-10559292.731964849,4601124.5970216179],[-10559548.564457413,4601124.4001679532],[-10559804.336579975,4601124.1952942163],[-10559803.524601694,4601071.9202255737],[-10559804.631592415,4600868.4490894601],[-10559806.02508037,4600612.6151409838],[-10559806.360907899,4600552.0256106351],[-10559806.279175388,4600443.6123294281],[-10559805.888394281,4600356.6024485491],[-10559805.430966759,4600254.8449168988],[-10559805.858933568,4600100.4886678727],[-10560059.864185045,4600099.2414467987],[-10560314.412666902,4600097.9823851977],[-10560568.797759153,4600096.7163230553],[-10560823.246525293,4600095.4418592313],[-10561077.221741881,4600094.1653605448],[-10561330.76245423,4600092.885681197],[-10561583.914014941,4600091.6075308435],[-10561836.681329753,4600090.3239083532],[-10561836.652254755,4600083.5283816131],[-10562093.019130837,4600084.0181876896],[-10562349.345660189,4600084.5016294103],[-10562605.53192693,4600084.9717060672],[-10562861.63890175,4600085.4342728825],[-10563117.688209716,4600085.8931485442],[-10563373.574028047,4600086.346933268],[-10563629.292752499,4600086.8019917011],[-10563884.828865144,4600087.2492861198],[-10563884.842238024,4600092.3206371581],[-10563885.590779891,4600345.2518289816],[-10563886.355292937,4600603.827300516],[-10563886.367873985,4600607.8176246658],[-10563887.116097001,4600862.9712882955],[-10563887.875894604,4601122.7563994573],[-10563887.82522073,4601219.7049713284],[-10563888.341767401,4601380.614226887],[-10563889.149189556,4601632.181514658],[-10563889.145439018,4601637.6749001751],[-10563889.960229754,4601894.0087663857],[-10563890.748255409,4602142.5044077076],[-10563890.767217914,4602149.5831780313],[-10563891.581620365,4602404.4939518338],[-10563892.375651632,4602653.1750441901],[-10563892.375505621,4602658.6288658055],[-10563893.178707825,4602912.0450328067],[-10563893.980516322,4603164.5321767591],[-10564149.503103225,4603165.0246000104],[-10564404.947699672,4603165.5116756968],[-10564660.320512829,4603165.9978603953],[-10564915.635358801,4603166.4764055172],[-10565170.629532695,4603166.9422185766],[-10565425.444298411,4603167.4026843635],[-10565680.090268234,4603167.8634054046],[-10565934.574850807,4603168.3173784679],[-10565939.642822608,4603426.6696231253],[-10565944.712696621,4603685.064245251],[-10565949.798188837,4603943.4937350051],[-10565954.886183849,4604201.9788521808],[-10565959.95756078,4604460.3601627117],[-10565965.028537959,4604718.6973860748],[-10565970.103119791,4604977.0207017884],[-10565975.17720175,4605235.3014536947],[-10566219.029611565,4605234.4814123726],[-10566452.505774679,4605233.6914484724],[-10566462.574063815,4605233.6612442462],[-10566705.835787866,4605232.8311427962],[-10566935.387394629,4605232.0420783078],[-10566948.811279614,4605231.9940372482],[-10567191.494932575,4605231.1485266685],[-10567423.822962774,4605230.3337302767],[-10567433.891251909,4605230.3026345354],[-10567675.992929138,4605229.4553419957],[-10567917.811177304,4605228.6042292537],[-10567918.093363427,4605485.680546103],[-10567918.376754079,4605742.3704815507],[-10567918.668357408,4605998.6728605554],[-10567918.960063919,4606254.5991175752],[-10567919.248670934,4606510.016630088],[-10567919.535881385,4606764.8060095534],[-10567919.836907096,4607019.7016747678],[-10567920.134730261,4607274.4589332966],[-10568179.751186408,4607275.6235088194],[-10568439.524324611,4607276.7817154061],[-10568442.719634872,4607276.7968697725],[-10568699.449339217,4607277.9437436247],[-10568959.511913683,4607279.0976195838],[-10568963.347066887,4607279.1178684225],[-10569219.337813476,4607280.2413056502],[-10569479.141387492,4607281.3746741675],[-10569481.697956068,4607281.3871543435],[-10569738.927441191,4607282.5133930938],[-10569998.729513625,4607283.6429408547],[-10569998.186104352,4607540.5327268401],[-10569997.641492564,4607797.5695479168],[-10569997.112795968,4608055.035205218],[-10569996.583896663,4608312.8255220996],[-10570250.13683546,4608314.8920247732],[-10570503.371604966,4608316.9470630046],[-10570756.278894408,4608318.9859232008],[-10571008.841984304,4608321.0168860015],[-10571261.419891518,4608323.0491235349],[-10571514.312464291,4608325.0790684903],[-10571767.363220982,4608327.0956376204],[-10572020.662266165,4608329.1082580779],[-10572278.496686501,4608330.0406927159],[-10572536.519425631,4608330.9682864547],[-10572794.738092449,4608331.8823764045],[-10573053.174912702,4608332.7912432346],[-10573311.111951951,4608333.789287352],[-10573569.065210152,4608334.7798154401],[-10573827.052007373,4608335.7684328584],[-10574085.077349478,4608336.7485150574],[-10574343.081657259,4608339.111090824],[-10574600.708727155,4608341.4641132709],[-10574857.953653477,4608343.8056714851],[-10575114.783197626,4608346.1374215903],[-10575370.221719667,4608349.4315189822],[-10575625.03008977,4608352.710520125],[-10575879.206794489,4608355.975565752],[-10576132.757482138,4608359.2263497515],[-10576131.720924435,4608159.1660839999],[-10576131.487469502,4608101.4433002714],[-10576130.446421158,4607843.3742062533],[-10576129.392461026,4607584.8854634725],[-10576128.338901812,4607326.333010749],[-10576252.296195693,4607325.5599237615],[-10576381.516906876,4607326.4283699179],[-10576408.790045898,4607326.612695138],[-10576635.042402301,4607327.592340054],[-10576642.711386586,4607327.6260255016],[-10576889.005899843,4607328.6922326135],[-10577143.388677638,4607329.7882998455],[-10577153.734528065,4607329.8364821607],[-10577399.014679417,4607330.8899604362],[-10577654.612248657,4607331.9802842448],[-10577661.443173047,4607332.0044237524],[-10577910.305527605,4607333.0543022025],[-10578165.835819812,4607334.1279395418],[-10578209.17767328,4607333.1638871729],[-10578365.59042784,4607334.5548609979],[-10578567.031557692,4607336.3431073772],[-10578769.93316026,4607338.1496835602],[-10578974.408064855,4607339.9661812522],[-10579180.838309094,4607341.7905587824],[-10579383.663023539,4607343.579557444],[-10579387.297686692,4607343.6072932705],[-10579593.84486478,4607345.4278486334],[-10579800.426482297,4607347.2415252058],[-10579804.204720657,4607090.8780412413],[-10579807.990973391,4606833.8449411886],[-10579808.110560721,4606827.0904143583],[-10579811.83059331,4606576.0284027327],[-10579815.662109695,4606317.4694982963],[-10579815.806038832,4606308.8493365459],[-10579819.509949686,4606058.2804937661],[-10579823.350587163,4605798.3517764714],[-10579823.459460149,4605791.8777459217],[-10579827.204745403,4605537.7440256868],[-10579831.057507493,4605276.4338591369],[-10579830.81734552,4605019.845254546],[-10579830.577974027,4604764.6600718508],[-10579830.354425136,4604508.8797354586],[-10579830.130174918,4604253.1747598825],[-10579829.901819576,4603997.5318959299],[-10579829.673964359,4603741.9529215852],[-10579829.441403268,4603486.4441988124],[-10579829.208841734,4603230.9993556449],[-10580082.506979577,4603229.9314047331],[-10580336.02216622,4603228.8553028936],[-10580589.731975976,4603227.7699043276],[-10580843.672350025,4603226.6761000641],[-10581097.764898578,4603225.569688811],[-10581352.043160023,4603224.4564002445],[-10581606.523853472,4603223.3414548254],[-10581861.211283892,4603222.2203958966],[-10581860.617652828,4603478.0149918189],[-10581860.024319097,4603734.2141146986],[-10581860.009272497,4603738.0641899128],[-10581859.439191693,4603990.8250531508],[-10581858.861369653,4604247.8409613864],[-10581858.84230883,4604252.9527050806],[-10582112.238733778,4604252.4203464668],[-10582366.023203393,4604251.8809805661],[-10582619.920202037,4604251.3305347618],[-10582874.043159639,4604250.7737198165],[-10583128.638959005,4604250.2177921999],[-10583383.620300174,4604249.6546026412],[-10583639.019019619,4604249.0844055368],[-10583894.795071462,4604248.5065645296],[-10584144.464615898,4604249.3482877463],[-10584394.767485913,4604250.1887319684],[-10584645.676250156,4604251.0207661334],[-10584897.215736998,4604251.8505025581],[-10584894.171937732,4604507.2055736752],[-10584891.135651536,4604762.0168080442],[-10584888.132108752,4605016.102176276],[-10584885.12936818,4605270.0449211625],[-10584892.318003653,4605270.0541540356],[-10584932.176265726,4605270.1654903293],[-10585143.039123094,4605271.9556505764],[-10585389.024015047,4605274.0381642887],[-10585393.855950292,4605274.086262174],[-10585644.749865854,4605276.1989159817],[-10585895.705051579,4605278.3045648504],[-10585893.123652855,4605534.7127951141],[-10585890.541553348,4605791.1392428828],[-10585890.49274924,4605797.1937301895],[-10585887.967262158,4606047.6649148092],[-10585887.487733848,4606095.2721920609],[-10585885.327995837,4606304.2987349564],[-10585885.219291205,4606314.3626242997],[-10585882.654177736,4606562.4852501219],[-10585879.979252983,4606821.3693717876],[-10585879.917522265,4606828.9083994171],[-10585877.292909859,4607080.9399432931],[-10585877.02820448,4607106.3406077158],[-10585877.132154513,4607341.1819619033],[-10585626.682502335,4607337.650173448],[-10585381.149281088,4607334.1820317479],[-10585375.35894913,4607334.1006878065],[-10585124.12249564,4607330.539100958],[-10584880.774276825,4607327.084825594],[-10584878.564810734,4607585.5173570579],[-10584876.359153163,4607843.4398018215],[-10584874.144689621,4608100.8577271048],[-10584871.934635241,4608357.7732608328],[-10585124.976642324,4608360.4487279756],[-10585376.935308613,4608363.1058608694],[-10585375.864055362,4608619.0776310647],[-10585374.795209017,4608874.5363383349],[-10585373.740282763,4609129.4841104243],[-10585372.685761057,4609383.9268978294],[-10585623.022755787,4609385.6676959796],[-10585877.840081522,4609387.433041105],[-10585874.100065721,4609642.8650497366],[-10585870.336810844,4609899.8894411288],[-10585866.559745722,4610156.2398307221],[-10585862.782279711,4610412.6719004652],[-10585858.998505864,4610669.2062992938],[-10585855.213429799,4610925.859982687],[-10585851.446174195,4611182.5327993091],[-10585847.676815996,4611439.2562269131],[-10585843.658675585,4611695.6709006839],[-10585841.59165974,4611827.5711765988],[-10585837.5997981,4611952.1479201484],[-10585829.426600745,4612208.5200859196],[-10585821.251601132,4612464.967323144],[-10585820.92724623,4612475.4710565666],[-10585818.570892354,4612721.4885623753],[-10585816.109631564,4612978.4434054615],[-10585813.665093089,4613235.0197397163],[-10585811.220654741,4613491.613679057],[-10586065.51470146,4613492.460463156],[-10586319.759591896,4613493.3024043217],[-10586573.983358115,4613494.1446006205],[-10586828.178892016,4613494.980934103],[-10586825.796396501,4613814.6295510037],[-10586823.4123965,4614134.6483055335],[-10586821.0263918,4614454.9921077536],[-10586818.638181852,4614775.7005053274],[-10586564.497143129,4614774.1566341138],[-10586310.524897618,4614772.6081721522],[-10586056.093025876,4614771.0553809637],[-10585801.410667362,4614769.4944341229],[-10585801.375773342,4614776.2985210652],[-10585544.33031866,4614773.5870119007],[-10585287.664298285,4614770.8716750387],[-10585031.367800849,4614768.1541677583],[-10584775.431215394,4614765.4306659047],[-10584777.269147523,4614443.8619368756],[-10584779.111590378,4614121.608168833],[-10584780.937720599,4613798.6084989421],[-10584782.767059335,4613475.015309996],[-10584526.960903604,4613471.269751342],[-10584271.910412878,4613467.5278823245],[-10584016.73197552,4613463.7832115879],[-10583900.454456843,4613462.0748000043],[-10583761.725524474,4613461.3820796926],[-10583765.451883549,4613205.2031546719],[-10583769.187557556,4612948.5028190427],[-10583772.928938301,4612691.8036523443],[-10583776.672122546,4612434.9468570072],[-10583780.400886983,4612178.5408558035],[-10583784.128449608,4611922.2170600388],[-10583787.85230756,4611665.9758458138],[-10583791.5741628,4611409.8152953768],[-10583540.091164105,4611412.4060791368],[-10583288.09157397,4611414.9955945471],[-10583279.096472828,4611415.0814461261],[-10583035.549062261,4611417.5816754811],[-10582782.449012147,4611420.1754087862],[-10582768.015282609,4611420.3289813334],[-10582526.997769553,4611422.7942705965],[-10582271.009011619,4611425.4046005663],[-10582256.656675423,4611425.5417335117],[-10582012.678572241,4611428.0210713977],[-10581750.212897306,4611430.6810388425],[-10581492.63802406,4611433.2074085269],[-10581244.414460022,4611435.6360723833],[-10581235.058645802,4611435.7277897103],[-10580977.444127364,4611438.2540339986],[-10580732.417925138,4611440.6502996488],[-10580719.824202957,4611440.7658791803],[-10580465.675754188,4611443.240607609],[-10580219.701867003,4611445.6305125132],[-10580211.026331786,4611445.7240072861],[-10579956.705786219,4611448.1904558204],[-10579703.425732361,4611450.6400735956],[-10579697.981339311,4611686.9934386406],[-10579697.529368702,4611707.5649164766],[-10579691.876482066,4611964.7688834323],[-10579691.767024964,4611969.0390185723],[-10579686.240713434,4612222.2263815925],[-10579683.103150995,4612366.0371451396],[-10579680.92951446,4612479.9896800071],[-10579485.302119179,4612479.395328192],[-10579291.486998975,4612478.8036345104],[-10579097.88021734,4612478.2073506434],[-10578905.003471622,4612477.6082556136],[-10578713.227984019,4612477.3953120457],[-10578521.890598064,4612477.1798151378],[-10578332.594149061,4612476.9622585233],[-10578145.133602228,4612476.7428991608],[-10577890.881583242,4612475.6639491851],[-10577636.529149294,4612474.5767162386],[-10577382.417290736,4612473.493559177],[-10577128.444291182,4612472.4037735313],[-10576874.173450572,4612471.3091479586],[-10576620.478168992,4612470.2090364182],[-10576365.817982577,4612469.1009055078],[-10576110.716290627,4612467.985259735],[-10576110.199466942,4612724.5264429525],[-10576109.683742203,4612981.4019481866],[-10576109.651358711,4612987.9022919396],[-10576108.366999684,4613238.3761428352],[-10576107.042742232,4613496.2509986339],[-10575852.702957405,4613493.3131207451],[-10575598.356865281,4613490.3687431104],[-10575379.13959094,4613487.8154332014],[-10575343.169699347,4613487.6513541816],[-10575087.434967432,4613486.4826538721],[-10575086.632976407,4613804.1170971375],[-10575085.828779556,4614122.2111623026],[-10575085.038208192,4614438.9493267341],[-10575084.250545485,4614754.9469129648],[-10574827.440926315,4614753.9244110659],[-10574570.355987312,4614752.8959177351],[-10574312.518574096,4614751.8472825279],[-10574054.624795502,4614750.7911265381],[-10574054.641843159,4614746.9389749598],[-10573800.729591705,4614745.8518501287],[-10573545.710153798,4614744.7524863249],[-10573290.345214577,4614743.6379528465],[-10573034.380478479,4614742.5152603881],[-10572777.806134053,4614741.3933321564],[-10572520.531175625,4614740.2594205551],[-10572262.56731681,4614739.1146729058],[-10572003.923968541,4614737.9595990991],[-10572003.797453672,4614747.0480073625],[-10571746.878915511,4614745.0936706699],[-10571489.885090025,4614743.1321960511],[-10571232.52974466,4614741.1566994544],[-10570974.896776874,4614739.1717700846],[-10570969.988529624,4615057.3351245662],[-10570965.098763008,4615374.3656522986],[-10570960.209602583,4615690.5346985077],[-10570955.348084748,4616004.9010541765],[-10570810.020251326,4616005.2761685345],[-10570700.243719362,4616005.5591605203],[-10570442.662076132,4616006.2186656594],[-10570294.455198115,4616006.6019351874],[-10570182.840634838,4616006.1188379889],[-10569919.951735223,4616004.9756288771],[-10569788.487111142,4616004.5576495687],[-10569661.944104496,4616004.1653030142],[-10569407.849619588,4616003.3718116367],[-10569281.102776056,4616002.9774249606],[-10569156.721680855,4616002.5850816304],[-10568908.861938771,4616001.7983565032],[-10568772.079937248,4616001.3525765566],[-10568658.88974257,4616000.9939071666],[-10568409.754718786,4616000.1962160515],[-10568262.176775349,4615999.7107707616],[-10568161.468180498,4615999.4231317407],[-10567913.999992525,4615998.7130286181],[-10567757.199836949,4615997.8407656588],[-10567669.720711976,4615997.3504375527],[-10567425.96914432,4615995.9832577389],[-10567250.019041983,4615994.98079943],[-10567182.703440996,4615994.599632577],[-10566939.937618189,4615993.2225102475],[-10566741.519113878,4615992.0885768114],[-10566700.600978939,4615991.8558472721],[-10566459.304062249,4615990.4763050349],[-10566231.419026097,4615989.1705993712],[-10566216.437021341,4615989.0897486443],[-10566036.037048666,4615988.1153318509],[-10565970.900181733,4615986.918361959],[-10565976.235339545,4615666.8633286105],[-10565981.455036899,4615353.7362937573],[-10565981.549069071,4615347.9182795873],[-10565986.856388856,4615029.8015131103],[-10565990.577090953,4614806.8184448117],[-10565989.350161562,4614721.1787971072],[-10565989.2200797,4614712.6812726036]]]},"attributes":{"objectid":6305,"field_kid":"1000146319","approxacre":28494,"field_name":"CENTERVILLE","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":846242.64000000001,"maxoilwell":208,"lastoilpro":2001.1099999999999,"lastoilwel":123,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":547.89032257999997,"avgdepthsl":-406.91881719999998,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146319}},{"geometry":{"rings":[[[-10559515.294060474,4568324.9427084345],[-10559767.918244496,4568324.5243524639],[-10559769.199271016,4568580.7099111285],[-10559770.48439336,4568837.9158056546],[-10559771.778532583,4569094.3989584334],[-10559773.073273871,4569350.7338664681],[-10559519.031051235,4569350.1926292488],[-10559264.278005697,4569349.6431482295],[-10559008.964311145,4569349.0819954611],[-10558752.977737624,4569348.5125985779],[-10558753.028856801,4569092.5269034598],[-10558753.079166526,4568837.5116594862],[-10558753.117467873,4568581.8775383327],[-10558753.155569822,4568326.1554245325],[-10559007.859861938,4568325.758244887],[-10559257.352219826,4568325.3635174502],[-10559261.930320283,4568325.3545982139],[-10559515.294060474,4568324.9427084345]]]},"attributes":{"objectid":6373,"field_kid":"1038204544","approxacre":158,"field_name":"Wunderly","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1223337600000,"field_type":"GAS","field_kidn":1038204544}},{"geometry":{"rings":[[[-10560470.146386219,4540715.8214795282],[-10560732.359184872,4540718.1016610321],[-10560726.276690267,4540975.4674768765],[-10560720.208707443,4541232.2355063949],[-10560714.165248916,4541488.5444351612],[-10560708.132598486,4541744.3448626883],[-10560447.81041502,4541743.3227978731],[-10560188.451145364,4541742.2999754883],[-10559930.083122252,4541741.2703196974],[-10559672.698636804,4541740.2387671405],[-10559676.877213983,4541483.2573443977],[-10559681.065598346,4541225.7363407137],[-10559685.245869011,4540967.6498487154],[-10559689.435746524,4540709.0094280979],[-10559948.692726368,4540711.2761857715],[-10560208.933644259,4540713.5450976249],[-10560470.146386219,4540715.8214795282]]]},"attributes":{"objectid":6526,"field_kid":"1033975101","approxacre":163,"field_name":"Hiattville","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":400,"maxgaswell":1,"lastgaspro":24,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1033975101}},{"geometry":{"rings":[[[-10551382.074212581,4577556.6246210616],[-10551637.826248271,4577558.2019617399],[-10551636.234573111,4577807.135030292],[-10551634.665855549,4578052.6129472461],[-10551634.627883796,4578055.7119358862],[-10551633.034212662,4578303.9464985467],[-10551631.442446949,4578551.8266260661],[-10551376.105479948,4578551.0040317718],[-10551124.902800294,4578550.1892651124],[-10551120.998178924,4578550.1786400564],[-10550866.14957758,4578549.3421936911],[-10550615.973186485,4578548.5134416856],[-10550611.55146632,4578548.5037118467],[-10550612.737273894,4578299.8677683286],[-10550613.926488651,4578050.8761556121],[-10550615.120712264,4577801.5487143872],[-10550616.315439636,4577551.8732752008],[-10550871.328619625,4577553.4600236462],[-10551126.572967367,4577555.0414347053],[-10551382.074212581,4577556.6246210616]]]},"attributes":{"objectid":6851,"field_kid":"1000146831","approxacre":154,"field_name":"COGNAC","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1239235200000,"field_type":"OIL","field_kidn":1000146831}},{"geometry":{"rings":[[[-10614549.941573774,4499143.5646978095],[-10614550.294178674,4498889.8399681784],[-10614298.285141669,4498891.1510300469],[-10614047.07351226,4498892.4513871865],[-10613908.861053625,4498893.1535294438],[-10613796.975945167,4498893.4049638249],[-10613547.81824108,4498893.9559123591],[-10613547.243916335,4498639.1469140677],[-10613546.672819523,4498385.8020584946],[-10613546.096809741,4498132.0334796999],[-10613545.52230477,4497878.4669169867],[-10613544.951201281,4497624.7740051942],[-10613544.381515348,4497372.0489342427],[-10613543.808214759,4497118.7118467102],[-10613543.2369339,4496866.4308880437],[-10613796.046449117,4496862.2787335282],[-10614049.426315062,4496858.110329398],[-10614055.297201352,4496858.0205413774],[-10614171.727800716,4496856.1021342324],[-10614303.406485131,4496855.1065164795],[-10614558.054334018,4496853.174153287],[-10614565.959938597,4496853.1098512448],[-10614565.41244542,4496600.9518691292],[-10614564.866461644,4496349.2865487048],[-10614564.320351325,4496096.0016271332],[-10614563.772223927,4495841.8182094721],[-10614817.690305984,4495840.2440719586],[-10615071.264096085,4495838.6679138225],[-10615324.421812527,4495837.096539475],[-10615577.215114057,4495835.5216319496],[-10615826.712122645,4495831.576535129],[-10616076.599076698,4495827.6182123888],[-10616326.859557601,4495823.6529647652],[-10616577.502175132,4495819.6775157275],[-10616828.622147568,4495816.3531170543],[-10617080.122654587,4495813.0171302399],[-10617332.040638423,4495809.6771172294],[-10617584.382706471,4495806.3240043577],[-10617584.231940415,4496058.8154813526],[-10617584.085516308,4496306.8979333267],[-10617584.073161434,4496311.0438293843],[-10617583.935203569,4496563.0920860115],[-10617583.797840584,4496814.7379097575],[-10617582.978453945,4497070.1101914933],[-10617582.158465279,4497325.3767599296],[-10617581.335969239,4497580.3148847185],[-10617580.514170123,4497834.9701717189],[-10617579.707185917,4498089.4765936937],[-10617578.900396038,4498343.5587098943],[-10617578.081690418,4498597.4766729409],[-10617577.264072068,4498850.4045199733],[-10617327.100193571,4498856.3884280743],[-10617124.656601457,4498861.2273131255],[-10617077.222939111,4498862.1006818293],[-10616826.568887062,4498866.766621409],[-10616575.474735685,4498871.4341962859],[-10616323.985135758,4498876.1005076291],[-10616072.045825588,4498880.7693365877],[-10615819.725983845,4498885.4367761258],[-10615566.99317367,4498890.1062295204],[-10615565.036010057,4499145.4845202928],[-10615563.071552157,4499401.7318322603],[-10615561.1012774,4499657.2858357988],[-10615559.132101746,4499912.6676690904],[-10615305.345264493,4499911.6632524077],[-10615052.352229601,4499910.6540551977],[-10614800.201352229,4499909.6494075647],[-10614548.873910941,4499908.6408623075],[-10614549.23029159,4499653.1502950797],[-10614549.587881969,4499398.1763958521],[-10614549.941573774,4499143.5646978095]]]},"attributes":{"objectid":6506,"field_kid":"1000150014","approxacre":1896,"field_name":"LADORE NORTH","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150014}},{"geometry":{"rings":[[[-10636658.123722054,4492770.2589561008],[-10636912.459268495,4492768.7853097618],[-10636912.528752005,4493023.9990888052],[-10636912.601144915,4493280.4191587744],[-10636912.66542892,4493536.888453383],[-10636912.731016632,4493793.8026159992],[-10636912.803314334,4494051.2020003079],[-10636912.875616161,4494309.4145099176],[-10636912.938610479,4494568.2127583427],[-10636913.00160813,4494827.6693720762],[-10636901.450019065,4494827.5836961316],[-10636656.31187658,4494825.9130366687],[-10636399.010256873,4494824.1543076672],[-10636390.321586987,4494824.0929490216],[-10636141.088139262,4494822.3808358945],[-10635882.551530523,4494820.5984178884],[-10635629.860091886,4494818.4196851021],[-10635378.933938019,4494816.2506534578],[-10635126.987336535,4494814.0704078898],[-10634874.941323079,4494811.8843659442],[-10634874.325339148,4494555.1716848044],[-10634873.711660814,4494299.027769533],[-10634873.098987054,4494043.5347323325],[-10634872.487417901,4493788.6767756166],[-10634872.79248222,4493534.3200437976],[-10634873.095747355,4493280.4883139292],[-10634873.398313466,4493026.9824824063],[-10634873.701284844,4492774.3669506386],[-10635127.554094158,4492774.076327431],[-10635381.76851017,4492773.7801606925],[-10635387.298429657,4492773.7664259477],[-10635636.358852874,4492774.2110689441],[-10635891.350747265,4492774.660119215],[-10635906.302563265,4492774.5719221998],[-10636147.543882674,4492773.196045869],[-10636403.139345985,4492771.7329811072],[-10636420.876394488,4492771.6281527188],[-10636658.123722054,4492770.2589561008]]]},"attributes":{"objectid":6530,"field_kid":"1000149344","approxacre":644,"field_name":"MOWBRAY","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":6378.4799999999996,"maxoilwell":1,"lastoilpro":126.02,"lastoilwel":1,"lastodate":"9-2005","cumm_gas":427133,"maxgaswell":1,"lastgaspro":3444,"lastgaswel":1,"lastgdate":"3-1996","avgdepth":4942.0749999999998,"avgdepthsl":2807.3000000000002,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149344}},{"geometry":{"rings":[[[-10601275.606247764,4555049.7701896289],[-10601528.835042782,4555049.5174909113],[-10601527.766095694,4555304.6808711495],[-10601526.69514294,4555560.2220077319],[-10601525.620582551,4555816.1551246336],[-10601524.543515727,4556072.4870955711],[-10601523.5665635,4556328.8667079015],[-10601522.592519045,4556584.7661390053],[-10601521.634290319,4556840.9407319007],[-10601520.67706266,4557097.1322852476],[-10601519.450428955,4557352.9665795583],[-10601518.221790623,4557609.065150762],[-10601516.976630995,4557865.4270043345],[-10601515.730567932,4558122.0610342994],[-10601261.181882914,4558121.4283276191],[-10601006.544696331,4558120.7875074279],[-10600751.822712401,4558120.1441519549],[-10600496.962770101,4558119.4948383505],[-10600243.272265635,4558119.3961188747],[-10599989.051652525,4558119.2905550404],[-10599984.519248027,4558119.2983028349],[-10599734.288816774,4558119.1875284892],[-10599478.993569821,4558119.0670082131],[-10599472.951732177,4558119.0646185121],[-10599471.299810356,4558376.2095433027],[-10599469.650594914,4558632.9998742538],[-10599468.001382342,4558889.48287699],[-10599466.352472734,4559145.6843941435],[-10599465.500681546,4559401.5473451866],[-10599464.650495524,4559657.0505326763],[-10599463.801113481,4559912.2224601936],[-10599462.953837272,4560167.0241748495],[-10599207.852311935,4560168.299648311],[-10598952.263326926,4560169.5719535286],[-10598697.09252218,4560170.835000921],[-10598442.049464203,4560172.0905667059],[-10598187.678595684,4560171.3903165441],[-10597932.801045438,4560170.682459902],[-10597677.96023752,4560169.9588795453],[-10597422.996888936,4560169.2299738759],[-10597168.501277441,4560168.4972625887],[-10596913.987545187,4560167.7588452268],[-10596659.955866493,4560167.0133253084],[-10596406.249961875,4560166.2645074492],[-10596151.417568548,4560164.9859094946],[-10595896.560546989,4560163.6997035453],[-10595641.609918019,4560162.4041145649],[-10595386.592912877,4560161.10104453],[-10595388.410596302,4559904.4687770344],[-10595390.225674711,4559648.0717154983],[-10595392.028336953,4559391.8966559051],[-10595393.829795877,4559135.9464978734],[-10595395.514222525,4558879.769734608],[-10595397.198247662,4558623.7184627065],[-10595398.895186566,4558367.7943209121],[-10595400.590622699,4558111.9956516763],[-10595402.418019531,4557855.1808358273],[-10595404.24541638,4557598.3726179823],[-10595406.056290617,4557341.9795734352],[-10595407.864359174,4557085.870215293],[-10595409.263657793,4556829.8305485742],[-10595410.661050949,4556574.1647893758],[-10595412.075360106,4556318.8892615335],[-10595413.485861491,4556064.0017814534],[-10595413.964793758,4555809.0524871396],[-10595414.444229193,4555553.8217277043],[-10595414.904946154,4555298.2593332389],[-10595415.365966279,4555042.3894087905],[-10595669.074108444,4555042.506918625],[-10595922.930621047,4555042.6177107599],[-10596176.896759605,4555042.7207713975],[-10596430.972223757,4555042.8182551106],[-10596430.982970662,4555038.9672380351],[-10596687.678546097,4555038.7886729101],[-10596944.367614113,4555038.6033905558],[-10597201.067995086,4555038.4224173632],[-10597457.752758194,4555038.2343467493],[-10597714.377846209,4555038.7754154839],[-10597971.007940022,4555039.3098936891],[-10598227.633428689,4555039.8286560699],[-10598484.265324771,4555040.339813998],[-10598737.168531997,4555041.6319590406],[-10598990.31521886,4555042.9180199364],[-10599243.705885971,4555044.1940677026],[-10599497.3593549,4555045.4647916984],[-10599751.256503662,4555046.7333604982],[-10600005.398433533,4555047.9986334266],[-10600259.80226424,4555049.2530059889],[-10600514.469197121,4555050.500533876],[-10600768.396093655,4555050.2629152304],[-10601022.128867339,4555050.017439235],[-10601275.606247764,4555049.7701896289]]]},"attributes":{"objectid":6600,"field_kid":"1000146316","approxacre":4133,"field_name":"SEIBERT NORTH","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1233532800000,"field_type":"O&G","field_kidn":1000146316}},{"geometry":{"rings":[[[-10593051.464154223,4443700.6307036178],[-10593054.106065426,4443447.3061433472],[-10593056.744476436,4443194.2329205833],[-10593059.38909843,4442941.4100142224],[-10593062.029919887,4442688.838534561],[-10593315.988129381,4442690.0365397399],[-10593569.568101779,4442691.2277671136],[-10593822.770537818,4442692.4078279901],[-10594075.61175641,4442693.5799828535],[-10594073.704010129,4442946.6896452997],[-10594071.795266353,4443200.051136503],[-10594069.891031405,4443453.6618413301],[-10594067.983596416,4443707.524912742],[-10594077.297851223,4443707.5850213347],[-10594329.949579092,4443709.2803320633],[-10594573.885843219,4443710.9122845614],[-10594581.078548346,4443710.9591880469],[-10594830.683757808,4443712.6198336007],[-10595078.648072265,4443714.2638968984],[-10595078.937897673,4443975.7966142427],[-10595079.227626791,4444237.6248612748],[-10595079.47677828,4444497.1566180894],[-10595079.725309784,4444755.2534520067],[-10595080.000751557,4445011.802255867],[-10595080.273668813,4445266.7413343629],[-10595080.532856284,4445520.6451447038],[-10595080.791326398,4445773.3191988049],[-10594826.313200304,4445775.242034303],[-10594570.375490313,4445777.1698615439],[-10594565.419872368,4445777.208531349],[-10594312.964280346,4445779.1009242823],[-10594054.099193027,4445781.0338431709],[-10593793.454953114,4445782.9756364366],[-10593531.254517836,4445784.9225451834],[-10593267.457340432,4445786.8759484049],[-10593002.077236829,4445788.8345920676],[-10593008.167965302,4445531.3722592648],[-10593014.179449288,4445277.2066449905],[-10593014.287813528,4445272.8561176471],[-10593020.436181234,4445013.3154670019],[-10593026.446971333,4444759.5196003066],[-10593026.598851783,4444752.7330748579],[-10593032.785437774,4444491.2157447841],[-10593038.885575423,4444233.316307039],[-10593039.003546843,4444228.6815278968],[-10593045.222243646,4443965.1550789177],[-10593051.464154223,4443700.6307036178]]]},"attributes":{"objectid":6605,"field_kid":"1000149385","approxacre":823,"field_name":"CHETOPA","status":"Abandoned","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":18486.380000000001,"maxoilwell":33,"lastoilpro":59.159999999999997,"lastoilwel":33,"lastodate":"1-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":868.79999999999995,"avgdepthsl":0.40000000000000002,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149385}},{"geometry":{"rings":[[[-10640126.924540617,4517269.3277014643],[-10639882.575425787,4517266.7045326317],[-10639881.654028373,4517010.493806323],[-10639880.774650643,4516766.1757439068],[-10639880.734435387,4516754.6849726783],[-10639879.821852649,4516499.2730774786],[-10639878.959212556,4516258.058392087],[-10639878.908271201,4516244.263394908],[-10640123.092899956,4516246.0890328744],[-10640367.174713289,4516247.9091159599],[-10640611.152009308,4516249.7274322212],[-10640855.026389789,4516251.539435978],[-10641098.829292111,4516253.6894622827],[-10641342.621682581,4516255.8334282376],[-10641586.398155196,4516257.9815616589],[-10641830.156106977,4516260.1232559588],[-10641828.89443418,4516003.89547903],[-10641827.632662391,4515747.8592027798],[-10641826.379801651,4515492.0029233713],[-10641825.127542702,4515236.3386219377],[-10641824.257219013,4514981.7770751836],[-10641823.386995245,4514727.1905353917],[-10641822.51757222,4514472.5859478768],[-10641821.648048947,4514217.9668486994],[-10641820.778529374,4513963.9626777731],[-10641819.908811009,4513710.2001038324],[-10641819.044399941,4513456.6673693033],[-10641818.181091413,4513203.3539801529],[-10641818.369258726,4512949.366970134],[-10641818.552448215,4512699.9527252875],[-10641818.559830042,4512695.600705117],[-10641818.74479633,4512442.0473431787],[-10641818.924392754,4512194.4489907017],[-10641818.932967467,4512188.7067424636],[-10641819.119637847,4511935.5234782817],[-10641819.298343537,4511689.6258426476],[-10641819.306709938,4511682.5539566716],[-10641819.502492873,4511429.7664830871],[-10641819.69737599,4511177.1804802855],[-10641819.799950687,4510923.8071208559],[-10641819.90292304,4510669.9798858194],[-10641819.901784923,4510663.9205718609],[-10641819.992077094,4510415.6993129542],[-10641820.08473222,4510160.9558442151],[-10642074.743324686,4510161.0083652167],[-10642329.306309817,4510161.0541984262],[-10642583.752663981,4510161.0882961452],[-10642838.093399575,4510161.1148227584],[-10643092.445546914,4510160.9669471979],[-10643346.910620958,4510160.8140231669],[-10643601.355972826,4510160.6539061004],[-10643855.765984993,4510160.486848494],[-10643855.611781331,4509907.6071095467],[-10643855.456776533,4509654.6948609259],[-10643855.318682004,4509400.3494369192],[-10643855.179880777,4509145.0358008444],[-10644109.031083468,4509147.2110870862],[-10644362.860962169,4509149.3781720567],[-10644616.663710369,4509151.5397056323],[-10644870.443532772,4509153.6927855751],[-10644955.255218668,4509154.4066080898],[-10645124.190015489,4509155.471354045],[-10645377.953315958,4509157.0668307077],[-10645631.580063092,4509158.6490592044],[-10645885.113405352,4509160.2257364755],[-10645886.719884178,4509040.0628405316],[-10645886.139126442,4508906.0728785209],[-10645885.037833873,4508651.8276389418],[-10645883.930232454,4508397.1406469671],[-10645882.821528591,4508142.1622054698],[-10646134.615846092,4508142.7373983525],[-10646387.159804935,4508143.3085494507],[-10646639.659614123,4508143.8643077509],[-10646892.368758211,4508144.4146394199],[-10647145.977112388,4508145.2029262418],[-10647400.115861798,4508145.9851537524],[-10647655.175444718,4508146.7730537569],[-10647910.037205521,4508147.5541415149],[-10647910.111609632,4507893.3419834794],[-10647910.187013783,4507638.8196945181],[-10647910.26952491,4507384.0117726466],[-10647910.351434354,4507128.9177340036],[-10648163.208286617,4507130.6450422164],[-10648410.576977819,4507132.328349581],[-10648415.836281797,4507132.3604925955],[-10648668.238623543,4507134.0763226356],[-10648912.899374599,4507135.7350430973],[-10648920.413009264,4507135.7911445815],[-10649171.584268717,4507137.4851554502],[-10649417.318224236,4507139.1371837649],[-10649422.558606954,4507139.1669298373],[-10649673.325612301,4507140.844668204],[-10649923.872270154,4507142.5139549961],[-10650182.532334544,4507143.838909056],[-10650440.216503296,4507145.1515045296],[-10650696.941294979,4507146.4577970067],[-10650952.704006545,4507147.7529924344],[-10651208.029627312,4507149.0373403607],[-10651462.563459132,4507150.3119780999],[-10651624.437073365,4507151.109841994],[-10651716.333431946,4507151.0913165305],[-10651968.874422731,4507151.0383854033],[-10652216.522815444,4507148.9005643269],[-10652465.140296131,4507146.7478520889],[-10652714.302488398,4507144.5754568866],[-10652964.137135657,4507142.3915784322],[-10652967.492185136,4507395.2984579448],[-10652970.847234348,4507648.2095477683],[-10652974.19277256,4507901.100497785],[-10652977.538911287,4508154.030607339],[-10652981.46650354,4508407.4022476152],[-10652985.408413827,4508661.6198540414],[-10652989.368646653,4508916.6889140485],[-10652993.341827264,4509172.6111621009],[-10652746.043095084,4509173.2217118302],[-10652498.902740613,4509173.8253205381],[-10652251.645655109,4509174.423630246],[-10652005.117087154,4509175.0141122788],[-10652005.891569812,4509429.6784806838],[-10652006.665150687,4509684.2214617915],[-10652007.437028917,4509938.6463278905],[-10652008.208105534,4510192.9593802746],[-10652008.986789966,4510447.1579606542],[-10652009.764272347,4510701.2447111104],[-10652010.53054145,4510955.2224001773],[-10652011.295708558,4511209.0786515689],[-10652255.823728083,4511209.0676429737],[-10652502.002600236,4511209.0524599385],[-10652748.250249553,4511209.0343737276],[-10652995.104179233,4511209.0094687575],[-10653241.164117796,4511208.975102786],[-10653487.907523349,4511208.9348010588],[-10653734.541105652,4511208.8951310171],[-10653983.382265363,4511208.8503998509],[-10653980.730695313,4511463.39022284],[-10653978.144062143,4511711.8471519146],[-10653978.100551849,4511718.3624577848],[-10653978.538253197,4511973.6720771808],[-10653978.962288542,4512220.4224793939],[-10653978.972252024,4512229.2649749937],[-10653979.419666592,4512484.9808680965],[-10653979.856033899,4512734.8087300723],[-10653979.877495592,4512741.1676461585],[-10653980.312900359,4512997.518100935],[-10653980.750213573,4513254.9420042289],[-10653981.196934231,4513511.8463380318],[-10653981.640042996,4513767.4317189725],[-10653982.077643111,4514022.6074983748],[-10653982.512035115,4514277.0248310631],[-10653736.660740534,4514277.0018473305],[-10653489.782093024,4514276.9716734001],[-10653244.301914923,4514276.9495712975],[-10652999.405091433,4514276.9217848936],[-10653000.177771607,4514532.2190460013],[-10653000.949246721,4514786.8980947984],[-10653001.728426892,4515040.9788344046],[-10653002.504499849,4515294.436222448],[-10653247.899472218,4515293.3197523383],[-10653492.836430589,4515292.198739606],[-10653737.275430193,4515291.082906276],[-10653981.22818413,4515289.9630355062],[-10653980.326567711,4515542.8618400786],[-10653979.424853859,4515796.2182737859],[-10653979.413164126,4515800.1725935442],[-10653978.529049354,4516050.0380519098],[-10653977.629943883,4516304.3262591148],[-10653977.600650731,4516311.0449399101],[-10653976.72403645,4516559.5801914241],[-10653975.82363607,4516814.9859460266],[-10653975.800235663,4516819.35786606],[-10653974.917831883,4517070.7782865549],[-10653974.021936739,4517326.2258165041],[-10653728.147528285,4517326.5296007833],[-10653481.81710807,4517326.8263157653],[-10653478.015942633,4517326.838838378],[-10653264.585040757,4517327.1079710079],[-10653235.025769489,4517326.9299481986],[-10652987.766496394,4517325.4438201804],[-10652982.621322533,4517325.4174552886],[-10652740.265852448,4517323.9598405296],[-10652492.139506262,4517322.4609632744],[-10652487.882929577,4517322.4396448201],[-10652243.361829143,4517320.9584276527],[-10651993.897681594,4517319.4393531028],[-10651737.539703051,4517318.761479496],[-10651482.307187445,4517318.0815793099],[-10651227.144750386,4517317.387408969],[-10650972.420004448,4517316.6878061928],[-10650971.358020646,4517570.017690694],[-10650970.293835573,4517823.5541279651],[-10650969.219239937,4518077.2829886014],[-10650968.1451462,4518331.2406593161],[-10650967.989584519,4518585.4277834306],[-10650967.832722433,4518839.7989146784],[-10650967.685772466,4519094.3418151168],[-10650967.539424649,4519349.1391017782],[-10650714.703400493,4519347.6675918438],[-10650461.809911802,4519346.1895145411],[-10650208.865365818,4519344.7121955967],[-10650035.004264632,4519343.69395738],[-10649955.877572438,4519343.4266100023],[-10649954.890180942,4519597.6596675692],[-10649953.894492777,4519854.0177953253],[-10649952.905904116,4520108.9620416407],[-10649951.918315196,4520363.6803292744],[-10649698.162660738,4520361.9049970349],[-10649444.096057303,4520360.1224666368],[-10649189.776870361,4520358.3292008489],[-10648935.124909949,4520356.5281054266],[-10648680.163109316,4520355.9752909765],[-10648424.936111052,4520355.4161620382],[-10648169.392657612,4520354.8442766545],[-10647913.558678124,4520354.2654453386],[-10647915.748214403,4520100.4879546417],[-10647917.9408524,4519846.4201667095],[-10647920.135192638,4519592.4108423758],[-10647922.331234399,4519338.3416284155],[-10647668.02385466,4519336.1312373271],[-10647412.344935752,4519333.9032975379],[-10647157.755038878,4519331.6782575101],[-10646903.428437423,4519329.4504378932],[-10646650.16422813,4519327.2291810634],[-10646395.996504884,4519324.9946674583],[-10646142.361579489,4519322.7593937153],[-10645888.782616848,4519320.518941679],[-10645887.172941051,4519574.7570703244],[-10645885.562365279,4519829.1701318314],[-10645883.945781551,4520083.387530447],[-10645882.328997461,4520337.5858448362],[-10645880.725027375,4520591.7257877225],[-10645880.428276805,4520638.6447793329],[-10645880.090244627,4520845.8371624779],[-10645879.688923402,4521099.8800515691],[-10645879.285999838,4521353.8390390016],[-10646132.582737176,4521355.8031675676],[-10646386.023435997,4521357.7604739591],[-10646639.50858462,4521359.7075477606],[-10646893.078127896,4521361.6484313477],[-10646891.867092185,4521615.298972114],[-10646890.654856537,4521869.1881258907],[-10646889.450130677,4522123.308961424],[-10646888.243804434,4522377.6698343968],[-10646634.930149065,4522375.2798499651],[-10646381.877586648,4522372.8879696531],[-10646128.627802841,4522370.4858572166],[-10645875.333569108,4522368.0767967794],[-10645875.315773554,4522372.1329053352],[-10645874.865482185,4522490.7549404446],[-10645873.749946723,4522626.3869924936],[-10645871.696345158,4522876.0908712018],[-10645871.667936262,4522879.9091355186],[-10645869.57901773,4523133.382590238],[-10645867.50780661,4523384.7897156291],[-10645866.045686532,4523637.46280115],[-10645864.569165669,4523892.6943639703],[-10645864.542353779,4523895.718313925],[-10645863.092847684,4524148.3720334601],[-10645861.619339757,4524405.2008460155],[-10645606.562649438,4524405.1268174686],[-10645351.193508489,4524405.0458403016],[-10645095.490593046,4524404.969161314],[-10644839.382022392,4524404.8855341598],[-10644583.062820779,4524405.6945671635],[-10644326.468110003,4524406.4976623161],[-10644069.59889113,4524407.2874903176],[-10643812.465776119,4524408.0711276969],[-10643812.394932101,4524413.9381151395],[-10643556.526026528,4524413.2159518069],[-10643300.69716586,4524412.4888600167],[-10643044.922365813,4524411.7563342303],[-10642789.197421674,4524411.019385403],[-10642533.550665244,4524410.2796561746],[-10642278.033654353,4524409.5341134584],[-10642022.384194795,4524408.7798521332],[-10641766.691786984,4524408.0169981308],[-10641764.195484335,4524654.7601940269],[-10641761.61773866,4524909.470992648],[-10641761.535296388,4524917.7436546925],[-10641759.032094385,4525165.8747471431],[-10641756.408728931,4525425.7650363706],[-10641754.499554617,4525683.9750807546],[-10641752.691809546,4525928.2630265364],[-10641752.615585489,4525938.3866579849],[-10641750.7466213,4526190.8422413357],[-10641748.957182294,4526432.7537370631],[-10641748.90377068,4526440.7116251327],[-10641747.78203286,4526592.3703225218],[-10641746.647972403,4526693.1680992572],[-10641743.877157241,4526939.199923736],[-10641743.804411484,4526945.1077680383],[-10641740.973661989,4527196.5638347063],[-10641738.148015304,4527447.5434695398],[-10641736.513532087,4527702.9669066137],[-10641734.878148565,4527958.5099796299],[-10641734.850644274,4527962.887191141],[-10641733.247170834,4528214.1979801124],[-10641731.613991428,4528470.0208055228],[-10641731.583692821,4528475.8510107752],[-10641729.978410009,4528725.9611464012],[-10641728.336121848,4528982.034561486],[-10641728.318226172,4528986.0539198034],[-10641726.702244086,4529238.2697592648],[-10641725.061459059,4529494.5903887656],[-10641497.369997302,4529495.7357794419],[-10641269.340756541,4529496.8768732352],[-10641043.404764291,4529498.000257113],[-10640818.753413342,4529499.1132678101],[-10640592.747342456,4529500.2322271876],[-10640366.737867733,4529501.347646663],[-10640141.584753789,4529502.4530742709],[-10639917.003681615,4529503.5487642139],[-10639668.35038594,4529502.2498766985],[-10639418.119019566,4529500.9351932602],[-10639167.821178574,4529499.6159588974],[-10638916.956201188,4529498.2874981258],[-10638666.19544071,4529496.9554970497],[-10638415.138748137,4529495.6159118628],[-10638163.784321418,4529494.2631796841],[-10637912.132961495,4529492.9043805553],[-10637661.277800856,4529492.5188272363],[-10637410.140523646,4529492.1279652715],[-10637405.501919152,4529492.1276080394],[-10637158.719528111,4529491.7376103997],[-10636907.017517179,4529491.3317061402],[-10636901.210401535,4529491.3174472852],[-10636652.625387913,4529490.9211368235],[-10636399.9303628,4529490.5119501911],[-10636396.165338384,4529490.4998309212],[-10636148.92062849,4529490.0898598293],[-10635899.602692382,4529489.670542893],[-10635651.633272748,4529489.811046374],[-10635406.057939207,4529489.9421827355],[-10635401.756913539,4529489.9526967723],[-10635149.936773296,4529490.0734956553],[-10634903.040057054,4529490.1854211194],[-10634896.182763278,4529490.1972116046],[-10634899.958868019,4529241.5830625752],[-10634903.745680582,4528992.2903788779],[-10634907.552211156,4528742.3322302029],[-10634911.368248252,4528491.7031019405],[-10634915.198297674,4528240.5255371341],[-10634919.032950427,4527989.0512588993],[-10634922.875307262,4527736.8396316627],[-10634926.723868031,4527484.1382088223],[-10635182.333481317,4527486.3481592685],[-10635424.555272421,4527488.4385966714],[-10635432.299862469,4527488.5117472261],[-10635680.431985401,4527490.6537294388],[-10635929.970586451,4527492.8016463267],[-10636182.37348181,4527491.7810905753],[-10636434.188918008,4527490.7554815561],[-10636684.525494954,4527489.7386017386],[-10636932.97785777,4527488.7219839739],[-10637183.5742261,4527487.6848782878],[-10637429.051150396,4527486.6628397489],[-10637430.857029466,4527234.2436297378],[-10637432.666409573,4526981.3558924785],[-10637434.486701887,4526728.4661873123],[-10637436.302992608,4526476.0534149846],[-10637444.645653188,4526476.0237980736],[-10637442.53984094,4526223.2488452708],[-10637440.431123786,4525970.2139647929],[-10637438.312193403,4525716.8980694748],[-10637436.190958748,4525463.316471613],[-10637429.950056221,4525463.3287615767],[-10637180.204832662,4525463.8087340333],[-10636931.552134927,4525464.2820028979],[-10636681.05176401,4525464.753132523],[-10636430.181477997,4525465.2192087844],[-10636179.998162717,4525465.6707479283],[-10635930.157431778,4525466.1131859925],[-10635930.945257194,4525212.7196643017],[-10635931.733879594,4524958.6948563866],[-10635932.528204797,4524704.0909993509],[-10635933.323327217,4524448.8952459078],[-10635934.136359001,4524191.9603738226],[-10635934.949892035,4523935.1418788461],[-10635934.951076729,4523932.4369823327],[-10635935.742602566,4523678.4693202795],[-10635936.541620977,4523421.9321996551],[-10635932.631364038,4523166.8368876763],[-10635928.77278587,4522915.1301705167],[-10635928.728516614,4522911.9473062512],[-10635924.828874044,4522657.2719054548],[-10635920.932936829,4522402.8023308702],[-10635917.026486626,4522148.1507035643],[-10635913.121838795,4521893.5647834316],[-10635909.222296868,4521639.0187934255],[-10635905.324056692,4521384.5305432016],[-10635651.609242545,4521381.3464359976],[-10635398.291073458,4521378.1625804426],[-10635144.154986478,4521374.9659708235],[-10634889.614645796,4521371.7587526087],[-10634886.335971849,4521113.1462345412],[-10634883.065611219,4520855.1897985954],[-10634879.806567455,4520597.9197131973],[-10634876.555436715,4520341.3316327799],[-10634873.317724895,4520085.3790230639],[-10634870.088226181,4519830.0672687218],[-10634866.862635886,4519575.4194372762],[-10634863.643556906,4519321.431312032],[-10635117.297593594,4519321.9632227384],[-10635364.477164933,4519322.4733171007],[-10635370.139118465,4519322.4842755226],[-10635622.738571677,4519323.0035613514],[-10635873.348392196,4519323.5122481296],[-10636123.986451257,4519325.135079273],[-10636376.727269925,4519326.766362004],[-10636382.725601088,4519326.8062426979],[-10636629.753608897,4519328.3852655282],[-10636883.671648467,4519330.0035330616],[-10636890.541157238,4519330.0479561426],[-10637136.978602277,4519331.6171308337],[-10637391.089558253,4519333.2280721813],[-10637396.751411777,4519333.2573449956],[-10637610.561943868,4519334.6277621994],[-10637645.980388479,4519334.698809959],[-10637901.633167813,4519335.2074706499],[-10637900.088238971,4519156.476085051],[-10637899.158761812,4519085.6256533787],[-10637895.83127304,4518831.8916206453],[-10637895.634957924,4518816.4181175847],[-10637892.466118731,4518574.3702892],[-10637889.046279194,4518312.9646925805],[-10637888.873706194,4518300.0166911436],[-10637885.666405808,4518055.0458169924],[-10637882.276815731,4517796.1929633012],[-10637882.146810479,4517786.506845437],[-10637878.864494342,4517536.4032962602],[-10637875.442956859,4517275.6854725871],[-10638124.513447111,4517274.5949401259],[-10638374.146768911,4517273.4963226896],[-10638377.413834939,4517273.4726903122],[-10638624.322599415,4517272.3826749148],[-10638875.049648458,4517271.2668774566],[-10638879.246357745,4517271.2517008493],[-10639126.181551728,4517270.1345350426],[-10639377.813015496,4517268.9875413841],[-10639380.960347265,4517268.9813364567],[-10639629.945041072,4517267.8546885783],[-10639882.575425787,4517266.7045326317],[-10639884.191206075,4517523.5235258583],[-10639885.754077546,4517772.2463597544],[-10639885.802074956,4517779.3841145067],[-10639887.404328389,4518034.304919376],[-10639888.930123067,4518277.2773849098],[-10639889.003772931,4518288.2942071967],[-10639890.5710485,4518536.9019809747],[-10639892.150950594,4518787.5439058086],[-10639893.73867387,4519040.2261905447],[-10639895.338823382,4519294.9323108084],[-10640131.846734429,4519297.848203416],[-10640364.247736616,4519300.7070286712],[-10640368.937899962,4519300.7662410019],[-10640606.621530347,4519303.6924861902],[-10640838.620080844,4519306.5436106939],[-10640844.913042894,4519306.6282019699],[-10641083.741057433,4519309.5602529161],[-10641318.414209295,4519312.4357419265],[-10641323.163539041,4519312.496343391],[-10641563.146048993,4519315.4219483882],[-10641803.773082176,4519318.3484349996],[-10641807.696834998,4519063.1816923171],[-10641811.620387886,4518808.0656313933],[-10641815.552550813,4518553.0123728486],[-10641819.482211214,4518298.0076408787],[-10641573.393245101,4518294.9947195956],[-10641328.593325529,4518291.9911380233],[-10641085.23362219,4518289.0073777111],[-10640843.265880879,4518286.0347246518],[-10640844.425033059,4518031.6989221657],[-10640845.562788229,4517781.8029970322],[-10640845.573181253,4517778.7419189997],[-10640846.717233751,4517527.2518877089],[-10640847.85588805,4517277.0573587678],[-10640615.337750345,4517274.5686127823],[-10640371.181952501,4517271.948345907],[-10640362.435637135,4517271.8496417012],[-10640126.924540617,4517269.3277014643]]]},"attributes":{"objectid":6788,"field_kid":"1000152615","approxacre":32893,"field_name":"ALTOONA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1003287.15,"maxoilwell":111,"lastoilpro":367.57999999999998,"lastoilwel":46,"lastodate":"2-2009","cumm_gas":2250878,"maxgaswell":34,"lastgaspro":5245,"lastgaswel":14,"lastgdate":"2-2009","avgdepth":783.14705881999998,"avgdepthsl":-115.76960784000001,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000152615}},{"geometry":{"rings":[[[-10601614.718957445,4759986.9823541036],[-10601617.331621069,4759728.2859755224],[-10601619.830368217,4759480.7613382721],[-10601619.931771128,4759470.3421800518],[-10601622.521209707,4759213.1828465573],[-10601625.101338426,4758956.8204565775],[-10601889.132865397,4758954.5843477389],[-10602152.566911204,4758952.3481148733],[-10602415.143980078,4758950.1083986666],[-10602676.949769704,4758947.8689479185],[-10602938.125641201,4758945.6318300655],[-10603198.633651311,4758943.3945888486],[-10603209.280986376,4758943.3008826282],[-10603458.415201474,4758940.2390433913],[-10603717.458404725,4758937.0507025551],[-10603717.487336032,4759196.5856875945],[-10603717.516970377,4759457.5829080511],[-10603717.524392705,4759466.6222806843],[-10603717.555215681,4759719.338022355],[-10603717.586454535,4759982.0927676074],[-10603717.592379032,4759993.6567183556],[-10603981.188507168,4759992.0433396595],[-10604244.07182304,4759990.4266024223],[-10604506.267154954,4759988.8155581523],[-10604767.772600718,4759987.2001207527],[-10604769.311891705,4760248.9882020811],[-10604770.848378628,4760510.2049154649],[-10604772.382461997,4760770.8775028149],[-10604773.915643508,4761030.996481468],[-10604769.553673178,4761031.0566362534],[-10604510.925572613,4761033.6494372692],[-10604247.233201243,4761036.2857140256],[-10604243.927834824,4761036.2981440937],[-10603982.834624944,4761038.9005268207],[-10603717.733347777,4761041.5344827985],[-10603718.156230135,4761302.5031905919],[-10603718.579714179,4761564.1139221545],[-10603719.009704944,4761825.2587375501],[-10603719.439995931,4762086.3137087924],[-10603719.869385537,4762347.1249155402],[-10603720.299175601,4762607.9287767857],[-10603720.721858304,4762869.1996028293],[-10603721.142537231,4763129.4878150178],[-10603456.935502263,4763128.3465852262],[-10603412.808307463,4763128.1553243147],[-10603298.790554708,4763128.4094316345],[-10603209.070096031,4763129.3451118926],[-10603193.001070933,4763129.5053548552],[-10603186.488143601,4763129.5733072162],[-10603163.438557921,4763129.8272461668],[-10602929.240472168,4763127.6412819522],[-10602729.31887636,4763125.7709566848],[-10602665.596506333,4763125.6098315967],[-10602657.443608625,4763125.5833703065],[-10602402.205531063,4763124.9841445973],[-10602138.997364325,4763124.3601381052],[-10602132.91182431,4763124.3625076246],[-10601875.985621667,4763123.7471251674],[-10601613.186821867,4763123.1114749517],[-10601612.063223405,4762862.0850112978],[-10601610.938923875,4762600.7684718436],[-10601609.820130702,4762339.4521152461],[-10601608.702338658,4762078.0461826585],[-10601607.578439826,4761816.7212700145],[-10601606.452838834,4761555.1449960833],[-10601605.324034035,4761293.3667826662],[-10601604.194828603,4761031.375523706],[-10601606.837722784,4760768.7222109539],[-10601609.365099272,4760517.7755489154],[-10601609.474210707,4760507.1100074127],[-10601612.101689372,4760246.5265473258],[-10601614.578514518,4760001.1073888941],[-10601614.718957445,4759986.9823541036]]]},"attributes":{"objectid":6695,"field_kid":"1000149123","approxacre":1449,"field_name":"LUNSFORD","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":602767,"maxgaswell":6,"lastgaspro":564,"lastgaswel":4,"lastgdate":"11-1997","avgdepth":1060.28571429,"avgdepthsl":-22.285714290000001,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149123}},{"geometry":{"rings":[[[-10643969.580955757,4634724.039013763],[-10644227.996609887,4634723.5986118512],[-10644228.840188077,4634981.8598820744],[-10644229.686268264,4635240.4425007505],[-10644230.52724289,4635498.9788768804],[-10644231.369218545,4635757.5926556485],[-10644232.220504984,4636016.1902100295],[-10644233.070489997,4636274.8110113721],[-10644233.908961846,4636533.481632676],[-10644234.748334654,4636792.2153636757],[-10644231.163865125,4637050.7188977487],[-10644227.575890323,4637309.5094915181],[-10644227.498383313,4637315.6620686306],[-10644223.97810298,4637568.6109299045],[-10644222.10505916,4637703.2570752371],[-10644219.429029817,4637827.9680449367],[-10643958.237627927,4637827.3623687718],[-10643696.661687698,4637826.7488998529],[-10643436.927347295,4637826.1317228992],[-10643178.301170481,4637825.5105835944],[-10642920.902892807,4637825.1748623475],[-10642664.892197272,4637824.8339006305],[-10642408.884204874,4637824.4898726661],[-10642153.184564114,4637824.1393283717],[-10642154.30775171,4637708.2739269026],[-10642155.092046402,4637565.7774939174],[-10642156.51477523,4637307.5907992786],[-10642157.940506797,4637049.5561072091],[-10642159.365036223,4636791.6975507215],[-10642157.943422733,4636533.4195707487],[-10642156.527112944,4636275.865489807],[-10642155.144108202,4636027.7325196434],[-10642155.111706572,4636017.6837708969],[-10642154.290978817,4635759.312722831],[-10642154.560593527,4635501.0111456783],[-10642154.831611114,4635242.3433500938],[-10642155.107835764,4634983.3513856558],[-10642155.382959308,4634724.3152461918],[-10642415.332560973,4634724.0269596735],[-10642459.800129907,4634723.9769299068],[-10642674.922550753,4634724.3578762952],[-10642934.185667632,4634724.8318436882],[-10643193.135027073,4634725.2998087667],[-10643202.967030184,4634725.3034928478],[-10643452.119529407,4634724.9001494637],[-10643710.955862952,4634724.4731576592],[-10643969.580955757,4634724.039013763]]]},"attributes":{"objectid":6839,"field_kid":"1000147028","approxacre":964,"field_name":"HOLD THE MAYO","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":784,"maxgaswell":1,"lastgaspro":180,"lastgaswel":1,"lastgdate":"10-1990","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000147028}},{"geometry":{"rings":[[[-10572522.697624527,4487621.1189167574],[-10572775.266904024,4487620.8192960927],[-10572774.378352074,4487875.4059074037],[-10572774.033584464,4487974.4941702839],[-10572774.098498346,4488130.1161905378],[-10572774.233909111,4488384.3577502305],[-10572774.369628167,4488638.9748365842],[-10572773.052559806,4488892.3600566322],[-10572771.732900677,4489146.3251884812],[-10572770.412234569,4489400.0307071293],[-10572769.092870213,4489653.7601089515],[-10572514.248374602,4489653.005852324],[-10572259.936487904,4489652.2455601962],[-10572006.099043695,4489651.4837657036],[-10571752.753261637,4489650.7187058581],[-10571499.947110066,4489650.5861806404],[-10571247.617803622,4489650.4491302669],[-10570995.832118506,4489650.3011325235],[-10570744.45590145,4489650.1468450278],[-10570744.45629392,4489654.5095261959],[-10570491.659146149,4489654.0754751069],[-10570238.788414145,4489653.6348731732],[-10569985.855310572,4489653.1802895106],[-10569732.763425406,4489652.7212945437],[-10569479.7466262,4489652.2655757088],[-10569226.818428252,4489651.8055762332],[-10568973.722738566,4489651.332600629],[-10568720.558270127,4489650.8516888171],[-10568720.550262015,4489641.2543728072],[-10568720.058164563,4489398.3756268481],[-10568719.545628583,4489145.1214975445],[-10568719.534141552,4489136.7330813818],[-10568719.042501289,4488891.7715833019],[-10568718.529618794,4488636.3007979896],[-10568719.851017559,4488380.0829100488],[-10568721.15476636,4488127.2637610268],[-10568722.480898913,4487872.4387175729],[-10568723.807528595,4487617.4597981246],[-10568976.784079669,4487617.4498160398],[-10569229.726391459,4487617.4325295649],[-10569482.533948932,4487617.4016404534],[-10569735.25050226,4487617.3647051146],[-10569988.072703371,4487618.6176355584],[-10570241.233891966,4487619.865661473],[-10570494.263329752,4487621.0984478304],[-10570747.296872213,4487622.3250639355],[-10571001.626068207,4487622.250507528],[-10571255.782666784,4487622.1700292695],[-10571509.729225062,4487622.079095073],[-10571763.519404458,4487621.9818615448],[-10572017.019648492,4487621.6993847359],[-10572270.123038754,4487621.409974345],[-10572522.697624527,4487621.1189167574]]]},"attributes":{"objectid":6469,"field_kid":"1000147522","approxacre":1271,"field_name":"MONMOUTH","status":"Abandoned","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":38598,"maxgaswell":3,"lastgaspro":113,"lastgaswel":3,"lastgdate":"12-1987","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000147522}},{"geometry":{"rings":[[[-10594381.610284308,4752933.1771683665],[-10594381.877823332,4752676.0551954946],[-10594121.367793156,4752675.2081112722],[-10593861.110250663,4752674.3539177896],[-10593600.210376607,4752673.4922364391],[-10593338.965810044,4752672.6203507148],[-10593339.320899943,4752411.7902072007],[-10593339.675785627,4752151.5459167575],[-10593340.04578964,4751891.1434740676],[-10593340.415092289,4751630.8268233202],[-10593340.777585704,4751370.7314864015],[-10593341.139178233,4751110.6195989139],[-10593341.498767214,4750850.6960593183],[-10593341.86056073,4750590.4814366885],[-10593528.029171022,4750591.8290360412],[-10593602.580975523,4750591.7383614657],[-10593728.349609142,4750591.5825709617],[-10593863.516044937,4750591.5101400549],[-10593867.122151768,4750591.5117827486],[-10594124.649539657,4750591.3797118645],[-10594385.984764168,4750591.2398509011],[-10594390.72626408,4750591.2370896321],[-10594647.476767194,4750591.1051558498],[-10594909.141967498,4750590.9642580179],[-10594912.667082114,4750590.9615091449],[-10595170.998886231,4750590.808759992],[-10595433.029803175,4750590.6448629899],[-10595693.402554015,4750587.1086626248],[-10595953.81975536,4750583.5643241359],[-10596214.264888503,4750579.9958284097],[-10596474.733648418,4750576.4198407335],[-10596473.455196712,4750835.4844759963],[-10596472.169528058,4751095.8802631209],[-10596470.88184841,4751357.6014913023],[-10596469.589454655,4751620.655628263],[-10596468.35441738,4751885.0581530463],[-10596467.113464637,4752150.7913417183],[-10596465.872202974,4752417.8320414228],[-10596464.62442516,4752686.2030979367],[-10596204.553199975,4752684.5043540169],[-10595944.483977199,4752682.7988912407],[-10595684.393530371,4752681.0872267112],[-10595424.30398472,4752679.3667758992],[-10595424.004523441,4752938.2360015372],[-10595423.70455577,4753197.9859231804],[-10595423.697514491,4753202.9910525484],[-10595423.385861084,4753458.5951578524],[-10595423.06796146,4753720.0876792185],[-10595162.57803951,4753717.5150431255],[-10594902.161601439,4753714.9362040721],[-10594641.53121973,4753712.3644754272],[-10594380.770689959,4753709.7837028541],[-10594381.056767674,4753450.0419363426],[-10594381.341538014,4753191.1785842553],[-10594381.610284308,4752933.1771683665]]]},"attributes":{"objectid":5936,"field_kid":"1000149593","approxacre":1117,"field_name":"BANKERS LIFE","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":744265.01000000001,"maxoilwell":47,"lastoilpro":1639.8299999999999,"lastoilwel":47,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":1467.22222222,"avgdepthsl":353.55555556000002,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149593}},{"geometry":{"rings":[[[-10594386.597559409,4756849.1527908891],[-10594385.351683812,4756590.4714458473],[-10594384.103710322,4756331.1390555687],[-10594382.837222563,4756070.8108097585],[-10594381.565434776,4755809.6071215048],[-10594380.915459827,4755547.7696233438],[-10594380.264589043,4755285.173517161],[-10594379.605914848,4755021.7772454191],[-10594378.946845597,4754757.5927608535],[-10594639.818716655,4754761.927488165],[-10594900.599183854,4754766.2534299428],[-10595161.269926338,4754770.5681307679],[-10595421.847362798,4754774.8737875698],[-10595422.138736278,4754512.7493424062],[-10595422.430509875,4754250.6809483347],[-10595422.435949057,4754245.7167833988],[-10595422.737700596,4753988.6830746401],[-10595423.046692898,4753726.7606265657],[-10595423.06796146,4753720.0876792185],[-10595423.379111852,4753464.8473056341],[-10595423.697514491,4753202.9910525484],[-10595423.70455577,4753197.9859231804],[-10595424.001600714,4752941.1552941082],[-10595424.30398472,4752679.3667758992],[-10595684.384820458,4752681.08658073],[-10595944.483977199,4752682.7988912407],[-10596204.562810915,4752684.5046123499],[-10596464.62442516,4752686.2030979367],[-10596465.872202974,4752417.8320414228],[-10596467.113464637,4752150.7913417183],[-10596468.35411698,4751885.0668097492],[-10596469.589454655,4751620.655628263],[-10596470.882248938,4751357.5902510947],[-10596472.169528058,4751095.8802631209],[-10596473.453995358,4750835.4827965265],[-10596474.733648418,4750576.4198407335],[-10596475.385798614,4750315.5581899816],[-10596476.039751349,4750054.623706622],[-10596476.69690825,4749793.6123916842],[-10596477.356668601,4749532.5290305186],[-10596477.977184433,4749271.4202597719],[-10596478.597900601,4749010.2977060303],[-10596479.226827435,4748748.9767943611],[-10596479.858257998,4748487.5227664299],[-10596740.418467518,4748484.2715591453],[-10597001.00540735,4748481.0140236737],[-10597261.632793108,4748477.7523556128],[-10597522.293817043,4748474.4838426607],[-10597781.696268072,4748477.3920725053],[-10598035.89749727,4748480.2352596642],[-10598040.535878573,4748480.2685354641],[-10598298.812047787,4748483.123564397],[-10598549.911946381,4748485.893163437],[-10598556.532784855,4748485.9528968735],[-10598557.04090631,4748747.0438161846],[-10598557.548627803,4749008.0672176722],[-10598558.060754765,4749269.0300713871],[-10598558.573683141,4749529.9253973393],[-10598816.842067985,4749533.0447680634],[-10599074.545609856,4749536.150711474],[-10599331.683808068,4749539.2597618764],[-10599588.268676413,4749542.3546097856],[-10599588.298782231,4749546.9108535275],[-10599589.933135794,4749804.2414661031],[-10599591.59559343,4750066.0638103439],[-10599591.617900025,4750069.0743785342],[-10599593.265060579,4750327.6601567725],[-10599594.934126034,4750589.4748943895],[-10599850.095312646,4750590.3701498602],[-10600099.599957459,4750591.2400130602],[-10600104.784762146,4750591.2502952619],[-10600359.02199677,4750592.1171389986],[-10600605.887035755,4750592.9516317975],[-10600612.834547805,4750592.9804990878],[-10600611.777619315,4750857.245039219],[-10600610.725002654,4751120.3830749821],[-10600609.673186541,4751383.5790062668],[-10600608.62267426,4751646.3907103566],[-10600607.141275827,4751908.4497987926],[-10600605.655970059,4752170.9721866082],[-10600604.167365404,4752432.6978393197],[-10600602.679764243,4752694.0346262418],[-10600602.412750874,4752955.7831409816],[-10600602.146338975,4753217.4081922537],[-10600601.867914245,4753478.8993034661],[-10600601.589890944,4753740.2374675991],[-10600345.243567087,4753740.9601042448],[-10600088.41459341,4753741.6771889525],[-10599831.850621754,4753742.3673915481],[-10599575.301967539,4753743.0520372046],[-10599315.834392909,4753742.9824066702],[-10599056.522195306,4753742.9077346735],[-10598797.360068783,4753742.8149692118],[-10598538.353018953,4753742.7171622906],[-10598279.50294794,4753742.6211629892],[-10598020.810156124,4753742.5210268022],[-10597762.26563333,4753742.4029264031],[-10597503.896810742,4753742.2774582319],[-10597503.643032789,4754004.3316327864],[-10597503.387253528,4754266.2407650724],[-10597503.141986901,4754528.0520157581],[-10597502.896521129,4754789.7008857988],[-10597502.253914448,4755049.5618518312],[-10597501.612708103,4755309.6205432778],[-10597500.96739592,4755569.8605606118],[-10597500.32368429,4755830.2992380848],[-10597239.675226001,4755828.1054034252],[-10596979.367355905,4755825.9070419762],[-10596719.409584705,4755823.7238004003],[-10596459.788797589,4755821.5361613221],[-10596459.816525379,4756081.9172083167],[-10596459.84294779,4756342.8991950974],[-10596459.864966348,4756603.7113615824],[-10596459.885382274,4756864.6529507395],[-10596464.099784011,4756864.7144406699],[-10596464.239734946,4757125.8628967823],[-10596464.379487969,4757386.6657142835],[-10596464.503230793,4757647.1452689758],[-10596464.626574419,4757907.299933088],[-10596205.642740287,4757905.3031019084],[-10595950.279332101,4757903.3256288571],[-10595947.238166437,4757903.3049732801],[-10595689.582346018,4757901.3157587843],[-10595432.161093073,4757899.3208545949],[-10595171.236948719,4757898.699599403],[-10594909.653753383,4757898.0689132735],[-10594906.491149336,4757898.0445097387],[-10594646.90362828,4757897.4414707031],[-10594383.170783348,4757896.8202433819],[-10594384.015428895,4757635.3868079651],[-10594384.861946017,4757373.6037916178],[-10594385.728600357,4757111.532785981],[-10594386.597559409,4756849.1527908891]]]},"attributes":{"objectid":6101,"field_kid":"1000149124","approxacre":4303,"field_name":"MCLOUTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":419171.65999999997,"maxoilwell":47,"lastoilpro":139.03999999999999,"lastoilwel":3,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":1464.1704545499999,"avgdepthsl":372.77651515000002,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149124}},{"geometry":{"rings":[[[-10587030.442082226,4772719.7900558934],[-10587032.343235377,4772464.0989857074],[-10586772.483601801,4772464.5227542082],[-10586512.774840478,4772464.9401784446],[-10586253.185515502,4772465.3599328091],[-10585993.731545059,4772465.7723071855],[-10585734.216905296,4772466.1934853764],[-10585474.404425403,4772466.6097441493],[-10585215.1945336,4772466.9989431007],[-10584956.295797095,4772467.3794671278],[-10584958.059086073,4772205.3866946073],[-10584959.824177328,4771943.1449302407],[-10584961.606588606,4771680.6408592463],[-10584963.39060194,4771417.8777384497],[-10584964.583037449,4771156.7107503107],[-10584965.760751177,4770898.9548833501],[-10584965.789088024,4770895.817591778],[-10584967.001144918,4770635.2333208695],[-10584968.190368671,4770379.5302834194],[-10584968.227817956,4770374.9655504636],[-10584969.4250565,4770115.2592812739],[-10584970.603067379,4769859.4804061875],[-10584970.605975838,4769855.8930078084],[-10584971.81062158,4769596.9399614558],[-10584973.01476625,4769338.2735301685],[-10584975.585772848,4769078.2527177446],[-10584978.159382712,4768817.8819389855],[-10584980.731090581,4768557.251942656],[-10584983.304600706,4768296.3350541405],[-10585245.568005553,4768295.8684005141],[-10585507.009572446,4768295.3973498875],[-10585767.628200147,4768294.9221610948],[-10586027.425890936,4768294.4410223402],[-10586286.46131175,4768293.9588511279],[-10586544.797834925,4768293.4725412615],[-10586802.574218836,4768292.9674684033],[-10587059.249145681,4768292.4579996364],[-10587060.258812314,4768552.2422842421],[-10587061.247160733,4768806.5482891742],[-10587061.275187161,4768811.6037269756],[-10587061.662311919,4768918.1086298898],[-10587061.733725844,4769070.5661112694],[-10587061.855380444,4769329.1756110406],[-10587327.868605506,4769331.2944930391],[-10587585.394543435,4769333.3393716486],[-10587593.063797053,4769333.4027657527],[-10587857.422033494,4769335.4980995422],[-10588110.840183174,4769337.5018358054],[-10588120.945417233,4769337.5667750286],[-10588381.277358448,4769339.6176010994],[-10588638.6806571,4769341.6381517742],[-10588642.699444136,4769341.655870067],[-10588905.174331641,4769343.7184690032],[-10589168.793725658,4769345.784300874],[-10589170.250987187,4769086.3372055972],[-10589171.721665677,4768824.5868883058],[-10589171.764518254,4768819.7791498732],[-10589173.232990261,4768563.0635178545],[-10589174.734103536,4768300.932482603],[-10589174.752428489,4768295.6345137358],[-10589176.192667758,4768039.2873539785],[-10589177.661543835,4767777.3829639321],[-10589177.690979881,4767774.1645934796],[-10589179.16656114,4767515.3460193882],[-10589180.66326916,4767252.8855079114],[-10589179.416444805,4766992.7977584088],[-10589178.16932041,4766732.4618220767],[-10589176.913586717,4766471.5724848351],[-10589175.65565097,4766210.2313588466],[-10589174.369283034,4765948.7127739592],[-10589173.078110302,4765686.4358236408],[-10589171.818774827,4765423.0786756631],[-10589170.560440661,4765159.6549315732],[-10589293.751567533,4765161.9546378814],[-10589293.718837449,4765152.2175563145],[-10589427.118608583,4765155.903834234],[-10589684.008747488,4765162.9994615093],[-10589688.306950558,4765163.0655474756],[-10589941.227864852,4765166.0363642853],[-10590198.824613247,4765169.0541193178],[-10590204.299658803,4765169.1194224721],[-10590456.675151424,4765172.0449648267],[-10590528.894734604,4765172.8803162472],[-10590714.919439932,4765173.2517368039],[-10590718.936222022,4765173.2672390966],[-10590973.444949659,4765173.7954637567],[-10591232.216640264,4765174.3263814328],[-10591491.953431901,4765174.7082544733],[-10591751.714851661,4765175.0837881453],[-10592011.389572548,4765175.4709661305],[-10592271.049776914,4765175.8505112333],[-10592530.161255362,4765176.2021146445],[-10592666.435008092,4765176.3844119636],[-10592789.536935246,4765176.4384439271],[-10593048.702375352,4765176.4970137579],[-10593309.13596208,4765176.5489783557],[-10593309.722057926,4764919.1322108628],[-10593310.308554193,4764661.5367685007],[-10593310.91287078,4764403.6066509793],[-10593311.518388717,4764145.4126446955],[-10593311.82234963,4764010.6722850529],[-10593312.390911177,4763886.7965632668],[-10593313.580495175,4763628.1202438623],[-10593314.801114518,4763369.0178870298],[-10593316.017829239,4763110.5419017496],[-10593399.391409578,4763107.8898299234],[-10593576.169108598,4763108.2043690318],[-10593836.551551316,4763108.6637281859],[-10594097.358277939,4763109.1256715814],[-10594358.570867442,4763109.580756926],[-10594620.492265318,4763110.0315691223],[-10594883.226289958,4763110.4768139897],[-10595145.695913108,4763110.900459649],[-10595408.209186068,4763111.3178964416],[-10595405.51106799,4763370.1734718271],[-10595402.803338902,4763629.8107939409],[-10595400.16238511,4763886.6314356504],[-10595397.537849462,4764141.8180632358],[-10595397.495302033,4764146.7061176626],[-10595394.87597142,4764398.8786665108],[-10595392.209087398,4764655.6833431339],[-10595392.168541964,4764659.3073321413],[-10595389.537197383,4764912.2271575043],[-10595386.873216128,4765168.5539476909],[-10595646.361123884,4765168.9915824644],[-10595901.28802876,4765169.4148824988],[-10595905.669827247,4765169.4403446149],[-10596164.766588887,4765169.8885906078],[-10596417.852093279,4765170.3206987986],[-10596423.69615983,4765170.3144558659],[-10596682.457839295,4765170.7593402984],[-10596936.485418422,4765171.1893734606],[-10596941.010480328,4765171.1791273477],[-10597199.366296865,4765171.5877894079],[-10597457.473529859,4765171.9880436445],[-10597719.060834127,4765174.7184497891],[-10597980.862082673,4765177.4445868982],[-10598242.896297192,4765180.1577867297],[-10598505.164879289,4765182.8646473829],[-10598763.394154163,4765186.0429752963],[-10598767.009878803,4765186.0857781153],[-10599028.82844829,4765189.1308313226],[-10599290.32845461,4765192.1478137001],[-10599552.420336364,4765195.1649238989],[-10599811.189025892,4765196.4933179887],[-10600069.32699603,4765197.8098136466],[-10600077.25874413,4765197.830857249],[-10600327.753995964,4765199.1114300629],[-10600586.153764965,4765200.4267609641],[-10600596.620204547,4765200.4907430001],[-10600844.442807768,4765201.7463624422],[-10601102.716132727,4765203.0484988559],[-10601110.647480378,4765203.0682487441],[-10601360.941302823,4765204.3163515665],[-10601619.096993776,4765205.5975308744],[-10601619.044951027,4765466.0498903869],[-10601618.994210128,4765726.8130355757],[-10601618.941065786,4765987.0128612723],[-10601618.888221461,4766246.9548112433],[-10601618.841583796,4766506.5567014506],[-10601618.794645758,4766766.1454885211],[-10601618.742603431,4767027.0051977858],[-10601618.691162797,4767288.7038535913],[-10601616.967211261,4767548.4642229741],[-10601615.246062551,4767808.0398994833],[-10601613.525915174,4768067.895071133],[-10601611.805367313,4768327.8506483017],[-10601610.089724829,4768587.7522418732],[-10601608.361169873,4768849.6426513866],[-10601606.631512806,4769110.9531885553],[-10601604.899753548,4769372.5622439897],[-10601604.278462207,4769634.6050945548],[-10601603.659973055,4769895.8670220971],[-10601603.036377152,4770156.4186397158],[-10601602.415283149,4770416.2248133654],[-10601602.400571395,4770420.3823807631],[-10601601.182992933,4770677.3540329859],[-10601599.943494722,4770938.7679575272],[-10601598.709301949,4771199.7581147486],[-10601597.475709526,4771460.564353778],[-10601596.943618536,4771721.8538926719],[-10601596.412328135,4771982.9213282345],[-10601595.875230748,4772243.732593691],[-10601595.339534644,4772504.3281931086],[-10601594.802136049,4772764.5158427125],[-10601594.264637135,4773024.5784163112],[-10601593.724735344,4773284.5731342351],[-10601593.184733186,4773544.4061162323],[-10601337.529554933,4773542.4151774468],[-10601080.853711151,4773540.4109038906],[-10600824.905198181,4773538.39355285],[-10600599.557934329,4773536.6115724705],[-10600569.094242379,4773536.2858237559],[-10600379.097651331,4773534.2976734368],[-10600313.235732242,4773533.981541127],[-10600057.415867463,4773532.75028178],[-10599801.698319616,4773531.4880765155],[-10599546.088494886,4773530.2188796001],[-10599281.417823413,4773530.4270873042],[-10599016.269906873,4773530.629598177],[-10598752.877995787,4773530.8317188416],[-10598490.509153094,4773531.0247746799],[-10598229.200921675,4773531.2166640777],[-10597968.547137655,4773531.3996185008],[-10597709.585386025,4773531.5622424847],[-10597451.722188994,4773531.7168374453],[-10597198.016140765,4773533.9471603725],[-10596945.577840198,4773536.1593543878],[-10596690.928814659,4773538.3788014334],[-10596435.253016291,4773540.5990262367],[-10596179.116992142,4773542.8250780469],[-10596082.509760294,4773543.6633116389],[-10595922.070728177,4773544.7941079531],[-10595664.463423256,4773546.6078887628],[-10595406.184651319,4773548.4220584752],[-10595147.779334383,4773548.4133742405],[-10594901.223250091,4773548.3983339071],[-10594889.893811071,4773548.380994224],[-10594710.93362603,4773548.3719741656],[-10594632.562821142,4773548.8385750847],[-10594390.592073703,4773550.2774880631],[-10594375.849136245,4773550.3471638467],[-10594119.615199124,4773551.8688296648],[-10593875.251618668,4773553.3157724701],[-10593863.92037759,4773553.377028577],[-10593608.820835788,4773554.904908048],[-10593354.303859193,4773556.4211333329],[-10593091.310602985,4773550.5923501905],[-10592827.11457363,4773544.7308142884],[-10592814.494260402,4773544.4624098968],[-10592561.701855224,4773538.8476612093],[-10592511.824492119,4773537.738306988],[-10592295.104984362,4773535.0906095998],[-10592278.62466277,4773534.8923886465],[-10592027.293926984,4773531.8363402784],[-10591758.279695785,4773528.5582494764],[-10591744.885398662,4773528.385663176],[-10591487.769956905,4773525.2593156211],[-10591216.624492271,4773521.9549462292],[-10590958.223081859,4773519.9152146932],[-10590708.218761601,4773517.9341310998],[-10590699.938905509,4773517.8538605906],[-10590442.622634728,4773515.8253948996],[-10590195.83669037,4773513.873831897],[-10590185.931978611,4773513.7776368186],[-10589929.99888785,4773511.7265124731],[-10589681.87131162,4773509.7311879536],[-10589674.686005572,4773509.6878187405],[-10589420.086438119,4773507.6325516654],[-10589293.83925659,4773506.6105499063],[-10589166.279771782,4773511.5817299075],[-10589150.548003826,4773513.2393680988],[-10588899.376851229,4773511.9780776203],[-10588631.574204581,4773510.6250017239],[-10588363.971486403,4773509.2471952606],[-10588096.160230186,4773507.8608438391],[-10588041.144799326,4773507.5858798297],[-10587828.48653106,4773506.6031973585],[-10587560.937574483,4773505.3612185298],[-10587292.913175028,4773504.1237725383],[-10587024.619568238,4773502.8771341732],[-10587026.552764591,4773241.6066336296],[-10587028.457824461,4772984.1459759111],[-10587028.500377011,4772980.5603073919],[-10587030.442082226,4772719.7900558934]]]},"attributes":{"objectid":6175,"field_kid":"1000149122","approxacre":18367,"field_name":"EASTON","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":511052.98999999999,"maxoilwell":41,"lastoilpro":640.42999999999995,"lastoilwel":26,"lastodate":"2-2009","cumm_gas":226088,"maxgaswell":6,"lastgaspro":35,"lastgaswel":1,"lastgdate":"12-1992","avgdepth":1474.5555555599999,"avgdepthsl":435.69444443999998,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149122}},{"geometry":{"rings":[[[-10565249.710287157,4759973.5621019704],[-10565253.973970773,4759711.4299923759],[-10565258.227842189,4759449.9202979421],[-10565262.49633267,4759187.3227649722],[-10565266.767526804,4758924.5544253448],[-10565527.235699484,4758920.3592214407],[-10565780.563531328,4758916.2724032365],[-10565789.326221999,4758916.1874131942],[-10565876.499611285,4758915.5332648009],[-10566053.092753911,4758912.8147581359],[-10566318.379520746,4758908.7262016311],[-10566324.684453327,4758649.2303376375],[-10566331.023628362,4758388.263024657],[-10566337.384531526,4758125.8541120365],[-10566343.661832467,4757866.8904789919],[-10566343.719007909,4757862.0068152137],[-10566344.44808639,4757601.3607366001],[-10566344.593361026,4757549.4455048759],[-10566346.330880472,4757345.3780352976],[-10566346.359838741,4757341.2682818584],[-10566348.55433559,4757081.7378545338],[-10566350.74602635,4756822.7327290038],[-10566351.076496122,4756563.4987474363],[-10566351.408969613,4756304.0461295443],[-10566351.753457956,4756044.4197443938],[-10566352.098347953,4755784.6140474565],[-10566609.046562916,4755783.1917977715],[-10566866.427371604,4755781.7589470493],[-10567124.227458857,4755780.3126517637],[-10567382.459038582,4755778.8579527717],[-10567640.858710721,4755777.3302244386],[-10567899.143752377,4755775.7928027632],[-10568157.307956362,4755774.2619737908],[-10568415.341511576,4755772.7237781305],[-10568414.483298091,4756031.6656887606],[-10568413.634918334,4756287.2709229793],[-10568413.644508542,4756290.3656810327],[-10568412.792905983,4756548.8511405457],[-10568411.94020367,4756807.1365287732],[-10568673.339194654,4756810.1737459581],[-10568933.494166622,4756813.1906757224],[-10568936.331402179,4756813.2123780996],[-10569197.198886206,4756816.2423613761],[-10569457.195276497,4756819.2554162443],[-10569718.550415862,4756822.280099378],[-10569979.841882249,4756825.2953474699],[-10570241.350395931,4756828.284483551],[-10570502.2493141,4756831.2583703063],[-10570501.008794717,4757093.7083070036],[-10570499.769581115,4757355.5984666338],[-10570499.291696571,4757457.5232812585],[-10570498.76704929,4757549.5116988458],[-10570498.00601339,4757616.8976674713],[-10570495.065510029,4757877.640803989],[-10570494.94093987,4757888.9133517686],[-10570493.076493049,4758137.8435548451],[-10570491.130626867,4758397.4554611454],[-10570489.203883953,4758656.5232803104],[-10570487.281347476,4758914.9780573742],[-10570485.365413083,4759175.6590920491],[-10570483.448977886,4759436.4788845833],[-10570483.417133767,4759439.6129798517],[-10570481.539850784,4759697.4384802161],[-10570479.638632473,4759958.5353037557],[-10570217.664279178,4759957.5914195506],[-10569955.950122481,4759956.6413273644],[-10569694.562538056,4759955.6845096434],[-10569433.438654216,4759954.7209666921],[-10569172.377239378,4759954.6731708394],[-10568911.265567258,4759954.6196857644],[-10568650.570269866,4759954.5409838185],[-10568390.352216553,4759954.4560727086],[-10568390.27007678,4759974.5699509159],[-10568389.909013579,4760215.0547515852],[-10568389.519772952,4760475.30740391],[-10568389.108307766,4760735.2380562043],[-10568388.696943479,4760994.8407348068],[-10568128.767442493,4760995.8044808051],[-10567867.652189901,4760996.7660346376],[-10567860.188782196,4760996.7770655481],[-10567605.330562245,4760997.7005670322],[-10567341.821180664,4760998.6493308758],[-10567344.669197798,4760738.5524094803],[-10567347.520819951,4760478.1107291281],[-10567350.392165435,4760217.3570317375],[-10567353.267616425,4759956.2984533655],[-10567090.597366882,4759956.5413464764],[-10566825.552610382,4759956.7805019133],[-10566820.402238825,4759956.7950106775],[-10566558.243172048,4759957.046952635],[-10566288.468122927,4759957.2980285781],[-10566288.268781967,4759963.845977352],[-10566285.897144036,4760219.0593147613],[-10566283.467326837,4760480.5240316773],[-10566281.049824422,4760741.6948726131],[-10566278.635726914,4761002.4406845914],[-10566018.126758296,4761007.0143975122],[-10565756.02357259,4761011.6097173244],[-10565494.949260006,4761016.175678391],[-10565234.019912904,4761020.7334937258],[-10565237.939201547,4760759.3647852615],[-10565241.861694459,4760497.7862567725],[-10565245.783988105,4760235.8315026192],[-10565249.710287157,4759973.5621019704]]]},"attributes":{"objectid":6302,"field_kid":"1000149614","approxacre":2704,"field_name":"LAMBORN","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":3635143,"maxgaswell":33,"lastgaspro":907,"lastgaswel":24,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149614}},{"geometry":{"rings":[[[-10611493.692853989,4527632.5874877293],[-10611492.595661061,4527373.8038210217],[-10611238.225141613,4527371.7960417299],[-10610983.51714135,4527369.780802506],[-10610729.36486741,4527367.764429233],[-10610475.467780925,4527365.7455295669],[-10610221.155025473,4527363.718790249],[-10609968.412139842,4527361.6976227686],[-10609715.705094263,4527359.6647000061],[-10609462.524414325,4527357.621914776],[-10609467.215930952,4527099.0094961971],[-10609471.922055861,4526839.616655238],[-10609472.188596467,4526825.21846152],[-10609476.423787756,4526592.5570092816],[-10609476.512042329,4526579.5076574264],[-10609478.283442669,4526318.6758392192],[-10609478.413173728,4526299.2986792112],[-10609220.679711601,4526298.429775279],[-10608967.132470356,4526297.5679773511],[-10608962.634698033,4526297.5616275202],[-10608708.054091139,4526296.6827597646],[-10608455.693988297,4526295.8063083123],[-10608200.581080843,4526294.9213700499],[-10607946.5735198,4526294.0347960768],[-10607693.476885976,4526293.15201989],[-10607441.353649734,4526292.2659640172],[-10607442.878811754,4526036.6010535136],[-10607444.352416934,4525789.6835608333],[-10607444.383684076,4525783.795411882],[-10607445.868267281,4525533.8997633941],[-10607447.333062779,4525286.9866934344],[-10607224.461514613,4525299.1034749122],[-10607194.230432294,4525300.5556098996],[-10607076.923281126,4525306.1848456068],[-10606949.312712425,4525312.147653277],[-10606939.233949544,4525312.6137951948],[-10606797.164577821,4525319.035135665],[-10606684.81050168,4525323.5766702164],[-10606658.072855737,4525324.6562672378],[-10606522.779913729,4525329.8445794145],[-10606430.078064527,4525330.977296955],[-10606392.894729108,4525331.4279568233],[-10606175.379623394,4525334.7368085263],[-10605919.903807309,4525338.6175146485],[-10605806.497011468,4525340.3369947094],[-10605665.475560213,4525341.407447408],[-10605598.210094759,4525341.9164097318],[-10605411.468670078,4525342.6493595382],[-10605157.62123896,4525342.1553216577],[-10604908.666626666,4525341.6667525321],[-10604904.247942561,4525341.6595177511],[-10604651.346278045,4525341.1609367505],[-10604403.68302214,4525340.6659312472],[-10604398.928759379,4525340.6480781967],[-10604147.002895316,4525340.1431849729],[-10603899.909882426,4525339.6419907613],[-10603895.551165977,4525339.6370312292],[-10603644.575473301,4525339.1129348669],[-10603394.074916426,4525338.583533844],[-10603396.052239634,4525081.7864079978],[-10603398.029463671,4524825.0517026205],[-10603400.003685141,4524568.3717043912],[-10603401.977106515,4524311.7432500068],[-10603403.939419188,4524055.4097129218],[-10603405.900731899,4523799.1575211519],[-10603407.875055477,4523542.5883882977],[-10603409.849176755,4523285.8408224508],[-10603209.865791524,4523284.3412129618],[-10603156.038526136,4523284.5621069884],[-10602901.90551501,4523285.6003747694],[-10602897.902921997,4523285.6055196449],[-10602647.550248608,4523286.6215830287],[-10602393.007967629,4523287.6474651266],[-10602387.461002531,4523287.6625782959],[-10602137.599392429,4523288.6656322349],[-10601882.130147591,4523289.6840518778],[-10601878.524510263,4523289.7029730091],[-10601626.628165143,4523290.7015871201],[-10601371.052898431,4523291.7072446998],[-10601119.227356018,4523294.4366728086],[-10600867.509236703,4523297.158142929],[-10600615.632635472,4523299.8802448483],[-10600363.685753437,4523302.5956507353],[-10600111.720550193,4523305.3022130085],[-10599859.703987872,4523308.002711189],[-10599607.619347222,4523310.6922172504],[-10599355.484348658,4523313.3766700551],[-10599359.592415646,4523058.2934790542],[-10599363.708686402,4522802.7683524955],[-10599367.825952509,4522546.7885616552],[-10599371.952022959,4522290.3564140778],[-10599376.099612679,4522033.5002432391],[-10599380.254605256,4521776.2023929739],[-10599384.410593424,4521518.4697177671],[-10599388.574084671,4521260.3043973474],[-10599390.015387455,4521004.9899423728],[-10599391.456988286,4520749.4990560934],[-10599139.643759742,4520749.5921049295],[-10598887.456802305,4520749.6792126969],[-10598634.935860315,4520749.6571726585],[-10598382.078332052,4520749.6289392672],[-10598384.26770127,4520493.9289126461],[-10598386.457771091,4520238.2227592841],[-10598388.648140123,4519982.4354482302],[-10598390.835508678,4519726.9008284872],[-10598393.040496834,4519471.3266023183],[-10598395.246286433,4519215.8061125064],[-10598386.929644819,4519215.8245876404],[-10598135.314165564,4519216.1447732411],[-10597890.632040886,4519216.4503840031],[-10597884.374361426,4519216.4581458736],[-10597634.125650065,4519216.761295435],[-10597384.551712794,4519217.058263531],[-10597131.956627391,4519218.8351276526],[-10596878.136236152,4519220.613494697],[-10596625.322900126,4519222.3793693166],[-10596372.747837339,4519224.1377952602],[-10596120.460204206,4519225.8899098281],[-10595868.429866122,4519227.6339443875],[-10595616.657323545,4519229.3596681133],[-10595365.142276278,4519231.0783222681],[-10595105.850858597,4519245.3003555769],[-10594845.483606851,4519259.5751964841],[-10594582.364399057,4519273.9911153959],[-10594321.975020999,4519288.2521092677],[-10594317.053577766,4519288.5209631212],[-10594282.058650386,4519290.4321113098],[-10594051.993393395,4519290.6055252934],[-10593792.135254532,4519290.7943998417],[-10593788.531720066,4519290.7899394305],[-10593526.684398901,4519290.9733609334],[-10593266.568363961,4519291.1475811126],[-10593019.238699486,4519291.3528873473],[-10592768.325523509,4519291.5537334522],[-10592762.225625081,4519291.5641498324],[-10592513.439689644,4519291.7579461923],[-10592253.210124696,4519291.9543954348],[-10592263.217573185,4519030.4532551682],[-10592273.228924669,4518768.8577403566],[-10592283.259697801,4518507.2377008861],[-10592293.29337265,4518245.5121833635],[-10592041.193853572,4518246.1000777362],[-10591788.697879579,4518246.6827896265],[-10591535.807753222,4518247.2527413778],[-10591282.559515931,4518247.8168796143],[-10591282.772886069,4518241.5608692961],[-10591291.788492883,4517987.1139756553],[-10591301.018973608,4517726.6091502225],[-10591301.187908171,4517721.6452559689],[-10591310.234138871,4517466.30819734],[-10591319.448105019,4517206.2236037767],[-10591321.191043936,4516949.8148053363],[-10591322.923086787,4516694.7928665932],[-10591324.669340868,4516439.3562754858],[-10591326.412994057,4516184.1045916602],[-10591328.14954024,4515928.9590109056],[-10591329.886487523,4515673.8772271024],[-10591331.623239566,4515419.2228662632],[-10591333.359194174,4515164.8696394432],[-10591585.73976616,4515161.7686670534],[-10591831.23944585,4515158.7460117079],[-10591837.418432808,4515158.6592279123],[-10592088.42092382,4515155.5582408533],[-10592330.466241149,4515152.5643300777],[-10592338.743434889,4515152.4697460607],[-10592588.341214588,4515149.3855361911],[-10592830.998733914,4515146.3820412671],[-10592837.257111963,4515146.2974050809],[-10593085.446475821,4515143.2073722547],[-10593332.840026746,4515140.1201083204],[-10593586.619927814,4515139.0538023114],[-10593840.793880757,4515137.9777800813],[-10593844.673531082,4515137.9721496459],[-10594095.336056164,4515136.9098435715],[-10594350.251359317,4515135.822342515],[-10594355.438909762,4515135.8008209458],[-10594605.566120522,4515134.7219689181],[-10594861.254009604,4515133.6130151739],[-10594865.094514994,4515133.6048591034],[-10595117.310621705,4515132.5102532981],[-10595373.761585925,4515131.3899473241],[-10595625.316386096,4515134.5816309135],[-10595876.912333485,4515137.7678861227],[-10596128.516890779,4515140.949975091],[-10596380.142872633,4515144.12436279],[-10596631.936747203,4515147.3021617727],[-10596884.006137867,4515150.4765555626],[-10597135.612797529,4515153.6285958746],[-10597387.000305802,4515156.7741943123],[-10597386.739051675,4515413.6228521178],[-10597386.486090766,4515660.9818054484],[-10597386.485591706,4515669.2709885966],[-10597386.234820129,4515923.7267230982],[-10597385.991033962,4516168.1764920522],[-10597641.390421653,4516168.3965250589],[-10597896.240278862,4516168.6094799852],[-10598150.510470916,4516168.8072752161],[-10598404.191687243,4516168.9984969441],[-10598657.323873824,4516169.1957726199],[-10598909.88630672,4516169.3854648815],[-10599161.861766068,4516169.5596185718],[-10599413.285091972,4516169.7289670063],[-10599415.379009496,4516422.0203261366],[-10599417.413170641,4516667.2005140213],[-10599417.457508184,4516674.2201563008],[-10599419.570845418,4516926.3066054443],[-10599421.683480417,4517178.279538746],[-10599675.530275647,4517176.5228826692],[-10599922.882720891,4517174.8044119217],[-10599928.982217904,4517174.7706424221],[-10600182.067739552,4517173.0022344869],[-10600426.577223292,4517171.2895397274],[-10600434.775327479,4517171.2249830626],[-10600687.028093657,4517169.4540409558],[-10600932.013823483,4517167.7273362465],[-10600938.904528001,4517167.678675225],[-10601190.360179489,4517165.8972436655],[-10601441.410465851,4517164.1118932581],[-10601694.654363951,4517161.9450751841],[-10601948.216426887,4517159.7691697683],[-10601968.060389996,4517159.5951425489],[-10602202.158425573,4517157.5883450406],[-10602369.867405703,4517156.1472397009],[-10602456.425320294,4517157.2763566058],[-10602482.111792393,4517157.6129541351],[-10602712.032397814,4517160.586753048],[-10602823.791327339,4517162.0293522747],[-10602967.437122375,4517162.2282179436],[-10602985.690062759,4517162.2560947137],[-10603210.066873051,4517162.5454718117],[-10603222.526947612,4517162.3209395828],[-10603477.170686135,4517157.7053314606],[-10603730.034957347,4517156.5186121305],[-10603974.357078196,4517155.3662844403],[-10603983.385778319,4517155.3260889715],[-10604237.228254797,4517154.1243524514],[-10604477.005140843,4517152.983472608],[-10604491.539160458,4517152.9073408674],[-10604744.897489941,4517151.6824909262],[-10604987.100616969,4517150.5045088809],[-10604997.792696357,4517150.4601624347],[-10605250.253712345,4517149.2360621151],[-10605502.26261761,4517148.0067802323],[-10605501.186968679,4517403.1035314705],[-10605500.110321397,4517658.4272518586],[-10605500.018099187,4517681.8855617335],[-10605499.02877159,4517913.9976593172],[-10605497.985637397,4518158.9328674693],[-10605497.906779012,4518169.8060574653],[-10605497.699676955,4518197.416269023],[-10605495.910903759,4518425.9743318455],[-10605493.90542022,4518682.3435065206],[-10605493.769177094,4518699.876500411],[-10605491.902642375,4518938.9187748907],[-10605489.897664228,4519195.6623868588],[-10605742.706856012,4519194.4111024141],[-10605996.926240351,4519193.1456849407],[-10606003.817522561,4519193.1142975129],[-10606251.333637059,4519191.8709229445],[-10606506.33140048,4519190.5827783197],[-10606512.489955138,4519190.5460794391],[-10606759.646257197,4519188.7587055732],[-10607012.779909324,4519186.9218749804],[-10607020.049618596,4519186.8624512805],[-10607265.701021627,4519185.0840326408],[-10607518.417302867,4519183.2506097564],[-10607770.787764,4519187.5230284818],[-10608023.06311715,4519191.7879953636],[-10608275.251371345,4519196.0431106659],[-10608527.355029408,4519200.2893848456],[-10608534.182140913,4519200.4133523684],[-10608779.566508764,4519204.5370503785],[-10609031.765172996,4519208.7694338495],[-10609037.384920724,4519208.8728026962],[-10609283.962935764,4519213.0052285716],[-10609536.156493111,4519217.2247308558],[-10609529.436565438,4518961.5770330196],[-10609522.767114885,4518707.8164317738],[-10609516.119901214,4518455.1904424485],[-10609510.056391764,4518224.6830110252],[-10609509.596542021,4518203.9513176344],[-10609509.495780883,4518199.6918250984],[-10609503.912744315,4517953.9643387562],[-10609498.245570282,4517704.4812827613],[-10609498.155724578,4517700.5033614626],[-10609492.62246866,4517457.0980938496],[-10609487.032521034,4517211.2651730543],[-10609736.599282691,4517211.6506150281],[-10609979.634164484,4517212.0185665209],[-10609987.256476179,4517212.0278592948],[-10610239.151067527,4517212.3970335601],[-10610492.17313257,4517212.7596521396],[-10610496.013671625,4517212.7657510396],[-10610514.542105077,4517212.7899249475],[-10610746.614991942,4517212.2273293948],[-10611002.731342187,4517211.6015749779],[-10611013.779624181,4517211.5814776029],[-10611260.224247705,4517210.9740661839],[-10611519.767269289,4517210.3277616138],[-10611772.905656749,4517209.8397513619],[-10612017.548846586,4517209.3599930285],[-10612025.230825497,4517209.3508493397],[-10612277.403722106,4517208.8470447548],[-10612529.209103512,4517208.33881687],[-10612529.708124641,4517463.2552413577],[-10612530.209852064,4517718.4942262461],[-10612530.703474874,4517974.1805699989],[-10612531.197902424,4518230.2462334661],[-10612531.699649511,4518487.4049464045],[-10612532.205020109,4518746.438205542],[-10612532.211790329,4518752.4423674801],[-10612532.712012166,4519007.3674954148],[-10612533.229335109,4519270.1531717004],[-10612527.387938404,4519270.162465428],[-10612527.36304711,4519523.1465845723],[-10612527.339278484,4519768.5956138372],[-10612527.347349778,4519774.5615847474],[-10612527.31962236,4520024.3987632617],[-10612527.291077547,4520272.6611651974],[-10612527.263987809,4520526.0558249196],[-10612527.237598019,4520779.3757771309],[-10612527.216212921,4521032.6097733909],[-10612527.194826864,4521285.757175874],[-10612531.195142779,4521285.7676948654],[-10612531.029180225,4521537.6669868883],[-10612530.862028858,4521790.7729227925],[-10612530.686288103,4522045.8325095056],[-10612530.509263489,4522302.5841082353],[-10612779.944223896,4522306.4629412908],[-10613029.9634433,4522310.3443066971],[-10613280.543995917,4522314.2362902043],[-10613531.694591479,4522318.1313113347],[-10613531.304095581,4522577.6321007563],[-10613530.927426104,4522828.3839783985],[-10613530.915973779,4522834.3300875165],[-10613530.533731369,4523088.3573559001],[-10613530.155663811,4523339.4563259268],[-10613532.512734326,4523585.8373239702],[-10613534.909090335,4523836.2909351978],[-10613537.336012714,4524089.9059874536],[-10613539.68395862,4524334.9793360624],[-10613539.816530243,4524346.9599609859],[-10613545.069316939,4524598.3291870933],[-10613545.254616497,4524607.2146697529],[-10613544.326231154,4524839.0809690999],[-10613544.283084996,4524849.1445809174],[-10613543.295528091,4525100.1666789735],[-10613542.465139771,4525311.0633463319],[-10613544.029697584,4525349.6514736721],[-10613539.704136234,4525606.6055809325],[-10613535.37007001,4525863.9796679243],[-10613531.077136248,4526119.9430250861],[-10613526.863242825,4526371.0751341917],[-10613526.794206113,4526375.1130990572],[-10613276.547166958,4526371.8283935562],[-10613026.013904549,4526368.533701675],[-10612775.326868279,4526365.2320577158],[-10612524.441107461,4526361.9238405386],[-10612520.183972562,4526617.8328738017],[-10612515.942746071,4526872.7857828904],[-10612511.716026369,4527126.7797170691],[-10612507.505015038,4527379.8362215841],[-10612759.583543906,4527381.3262353549],[-10613011.008235304,4527382.8049949566],[-10613261.766374972,4527384.2802109662],[-10613511.875182271,4527385.7458160929],[-10613515.826150453,4527642.2132116575],[-10613519.722320398,4527895.1539897826],[-10613519.764398877,4527898.2004767852],[-10613523.712052435,4528153.7016350161],[-10613527.59018049,4528404.6280907486],[-10613527.659199879,4528408.7102034679],[-10613531.584216759,4528663.2179287784],[-10613535.456337458,4528914.1869662786],[-10613535.496814111,4528917.2341297632],[-10613283.257706467,4528917.1243067067],[-10613030.366063228,4528917.0065151919],[-10612776.830592791,4528916.7428281754],[-10612522.627169365,4528916.4704140471],[-10612267.774817424,4528916.4792864323],[-10612012.253811736,4528916.4801902734],[-10611756.040028261,4528916.7700922498],[-10611499.165199671,4528917.0537956925],[-10611498.077051621,4528661.4353287164],[-10611496.985592935,4528405.1863578307],[-10611495.888020316,4528148.2949200422],[-10611494.789139129,4527890.7551213969],[-10611493.692853989,4527632.5874877293]]]},"attributes":{"objectid":5600,"field_kid":"1000150006","approxacre":21153,"field_name":"ERIE","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1743611.3899999999,"maxoilwell":231,"lastoilpro":653.83000000000004,"lastoilwel":100,"lastodate":"2-2009","cumm_gas":84529,"maxgaswell":12,"lastgaspro":8,"lastgaswel":1,"lastgdate":"8-2004","avgdepth":644,"avgdepthsl":-236,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150006}},{"geometry":{"rings":[[[-10579081.504094075,4497075.6248847721],[-10579081.753227629,4496819.548124183],[-10578829.130412357,4496817.6220615469],[-10578575.924528556,4496815.6859067986],[-10578575.171414448,4496559.4109179983],[-10578574.417895768,4496302.9554077964],[-10578573.472655922,4496046.4411285985],[-10578572.527016206,4495789.9590772465],[-10578320.046372849,4495787.9194060378],[-10578067.152956178,4495785.8692684565],[-10578066.443789963,4495529.2453850927],[-10578065.734221738,4495272.556699221],[-10578065.011036409,4495015.8058615783],[-10578064.286247745,4494758.992750816],[-10578316.380238777,4494761.1355455071],[-10578568.180593083,4494763.2686329288],[-10578819.653171422,4494765.3868460106],[-10579070.812190214,4494767.4961075326],[-10579070.691580769,4494510.6012505302],[-10579070.570981218,4494254.1602501217],[-10579070.438377712,4493998.1692926707],[-10579070.305283573,4493742.6342673227],[-10579070.19601167,4493486.8757672887],[-10579070.085535161,4493230.9774680808],[-10579069.965945043,4492974.9417735031],[-10579069.84695247,4492718.7700795131],[-10578878.309700456,4492717.2301550815],[-10578878.385359621,4492462.2652532533],[-10578878.461728228,4492207.697711071],[-10578878.534398688,4491953.4119774457],[-10578878.607576571,4491699.4426750466],[-10578878.678807765,4491515.9481875123],[-10578878.286603611,4491445.5185563397],[-10578876.873486057,4491191.9186281115],[-10578875.467880275,4490938.4667841708],[-10578874.065893888,4490685.7100711046],[-10578873.280926613,4490641.8745091055],[-10578872.618818397,4490431.2626294661],[-10578871.819791451,4490177.0870022327],[-10578871.008048806,4489922.8656289987],[-10578870.196907759,4489668.690709237],[-10578869.412694935,4489414.4017823823],[-10578868.629078956,4489159.944573991],[-10578867.82154857,4488906.0810431],[-10578867.612860976,4488840.4782078676],[-10578867.677990304,4488652.7333277129],[-10579115.03681992,4488651.8046662482],[-10579239.14572682,4488651.3375719031],[-10579362.27711767,4488651.0559692523],[-10579609.692220025,4488650.5024800766],[-10579857.21114119,4488649.9420659896],[-10580104.967934659,4488649.3700694749],[-10580352.895723941,4488648.7925344743],[-10580600.958968233,4488648.2063119588],[-10580849.173285568,4488647.6173213003],[-10581102.96638602,4488646.5936817275],[-10581357.12810868,4488645.5623660255],[-10581611.642135018,4488644.5310561778],[-10581866.504960869,4488643.4923217511],[-10581865.950680256,4488898.0736532677],[-10581865.396805085,4489152.8859618939],[-10581864.826816339,4489407.9249820327],[-10581864.25483118,4489663.2353171064],[-10581864.353221817,4489918.8933260161],[-10581864.450619942,4490174.946005201],[-10581864.540718654,4490431.4078689078],[-10581864.630624549,4490688.2090378255],[-10581864.673924239,4490942.6395007949],[-10581864.718932414,4491197.3697585445],[-10581864.742021961,4491452.3984469073],[-10581864.765518459,4491707.7254621023],[-10581864.795226557,4491963.2603736315],[-10581864.824836684,4492218.8978761965],[-10581864.84652943,4492474.1675512223],[-10581864.86914699,4492730.5131893968],[-10582104.392300362,4492732.2819374716],[-10582105.160399158,4492989.720933944],[-10582105.927189492,4493246.8518852759],[-10582106.690171544,4493503.8122314569],[-10582107.453048503,4493760.553954158],[-10582108.212616783,4494017.0814475259],[-10582108.971979389,4494273.3692427939],[-10582109.747455454,4494529.4373582294],[-10582110.522826241,4494785.2783428915],[-10581858.758445172,4494784.6130415443],[-10581613.404511841,4494783.9576739632],[-10581607.715090258,4494783.9348987751],[-10581357.431506172,4494783.255886374],[-10581107.909394804,4494782.5734841479],[-10581106.458811749,4495038.8162872996],[-10581105.008126389,4495294.9678051425],[-10581103.545525026,4495551.0216038283],[-10581102.082520248,4495806.9499511104],[-10581100.62772199,4496062.7554846574],[-10581099.173722785,4496318.4847007515],[-10581099.1601908,4496322.2538984884],[-10581097.708708646,4496574.1178064533],[-10581096.235584872,4496829.7431466551],[-10581094.98051326,4497085.476051026],[-10581093.752155004,4497335.9244111944],[-10581093.721239164,4497341.3218176961],[-10581092.455860598,4497597.289026117],[-10581091.191185419,4497853.3803324299],[-10581089.926007595,4498109.3859950928],[-10581088.660129575,4498365.426264585],[-10581087.394252004,4498621.4945885362],[-10581086.127874421,4498877.5953812357],[-10581086.865648435,4499131.6324791415],[-10581087.603628648,4499385.9439983442],[-10581088.359217873,4499639.7565167006],[-10581089.112398844,4499893.3266834989],[-10581089.866375446,4500146.6635588408],[-10581090.617743624,4500399.7608218873],[-10581091.368405851,4500652.6308115311],[-10581092.117460908,4500905.2661984731],[-10581089.989778064,4501160.6221869169],[-10581087.864295293,4501415.8760783644],[-10581085.744416207,4501671.0146255698],[-10581083.625435755,4501926.0530779874],[-10581081.505615583,4502179.3504758012],[-10581079.369017655,4502434.5285273716],[-10581077.243729781,4502689.5837800065],[-10581075.11374904,4502945.2122268695],[-10581073.698302258,4503201.5132990228],[-10581072.287040001,4503456.9069221085],[-10581072.26828045,4503459.7049400629],[-10581070.874855859,4503711.3675537221],[-10581069.470760984,4503964.9323323201],[-10581069.41705898,4503972.1383420592],[-10581068.129968431,4504210.8156429594],[-10581068.035081772,4504220.8474115999],[-10581065.863926064,4504448.1740137078],[-10581065.914426856,4504477.207653557],[-10581065.922580862,4504483.7407412231],[-10581066.242888737,4504733.9653383233],[-10581066.57325986,4504991.0475492291],[-10580818.411865445,4504988.940820341],[-10580568.381027073,4504986.8140058666],[-10580564.704310561,4504986.7825381244],[-10580318.085785268,4504984.6734387921],[-10580066.988423496,4504982.5194887584],[-10580062.560545569,4504982.482711087],[-10579818.24225804,4504980.3808399439],[-10579567.059798526,4504978.2154111452],[-10579560.140162805,4504978.1471851682],[-10579313.477386484,4504976.0165178301],[-10579057.442962505,4504973.7971510356],[-10579064.644691475,4504718.5764313424],[-10579071.737580124,4504467.1993821142],[-10579071.823200401,4504463.6675331313],[-10579079.016432071,4504209.0377677074],[-10579086.048904438,4503960.0894383471],[-10579086.042077487,4503954.6888773479],[-10579085.91718795,4503698.7035878664],[-10579085.798713664,4503452.1495937686],[-10579085.7889347,4503444.5446563382],[-10579085.672134578,4503192.2050138861],[-10579085.554975567,4502941.7535111681],[-10579084.190723097,4502688.4230155842],[-10579082.819230992,4502433.6769413697],[-10579082.798571967,4502427.5417276025],[-10579081.46392582,4502177.501773024],[-10579080.088165767,4501919.907324099],[-10579080.055124959,4501915.2417025408],[-10579078.719354998,4501664.1904480206],[-10579077.358250661,4501408.3692232501],[-10579077.322432902,4501404.8929999452],[-10579075.952392608,4501152.4439086448],[-10579074.565153513,4500896.4153953446],[-10579075.19779921,4500643.5246750265],[-10579075.828064214,4500391.6394826202],[-10579076.455698716,4500138.5150796678],[-10579077.083522514,4499884.9028273551],[-10579077.723750116,4499630.8250756217],[-10579078.366369693,4499376.2662256612],[-10579079.022593612,4499121.2041252498],[-10579079.680708738,4498865.6524253869],[-10579079.941459278,4498609.6966226269],[-10579080.202014826,4498353.9841715852],[-10579080.466080002,4498098.5325756725],[-10579080.729049372,4497843.3338745749],[-10579080.990903817,4497587.5236273296],[-10579081.253056316,4497331.6161330426],[-10579081.504094075,4497075.6248847721]]]},"attributes":{"objectid":5616,"field_kid":"1000147519","approxacre":6237,"field_name":"MCCUNE","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":92397.029999999999,"maxoilwell":38,"lastoilpro":207.16,"lastoilwel":36,"lastodate":"12-2008","cumm_gas":25376,"maxgaswell":5,"lastgaspro":627,"lastgaswel":1,"lastgdate":"10-1986","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000147519}},{"geometry":{"rings":[[[-10601352.249896739,4507934.9966510171],[-10601350.33200914,4507709.6685444508],[-10601348.14900469,4507453.3858612683],[-10601347.990937764,4507436.6366564501],[-10601345.933719708,4507195.2172765322],[-10601343.715988383,4506935.1622992055],[-10601330.817369493,4506690.7535628434],[-10601318.711806376,4506461.3810962625],[-10601317.96161399,4506446.9566883836],[-10601305.119788537,4506203.7649466349],[-10601295.654407544,4506024.5269184597],[-10601294.967547327,4505986.6314544156],[-10601294.504629884,4505961.1554990886],[-10601290.034433288,4505719.232437823],[-10601285.909663843,4505496.0304745305],[-10601285.565348051,4505477.748883483],[-10601281.123403238,4505236.6707488289],[-10601276.689677544,4504996.0149075752],[-10601532.288950428,4504995.8668460101],[-10601768.163006015,4504995.7237592852],[-10601784.892387919,4504995.7059957953],[-10602034.499790277,4504995.5537998499],[-10602273.715577357,4504995.4015599703],[-10602281.189947413,4504995.3913392434],[-10602525.330280697,4504995.2217733534],[-10602771.279187568,4504995.0454257717],[-10603019.059193974,4504994.8670900082],[-10603182.071505019,4504994.7461457597],[-10603209.578859381,4504995.3418264464],[-10603268.647535436,4504994.5605371026],[-10603519.90280016,4504994.9167624759],[-10603770.400004879,4504995.2660408597],[-10603790.924082445,4504995.2908964222],[-10604021.054788183,4504995.6143121552],[-10604261.988446023,4504995.9479551502],[-10604270.928483818,4504995.8866403904],[-10604303.007761648,4504995.6962035494],[-10604529.329609031,4504994.2953074854],[-10604789.772449747,4504992.6777646095],[-10604810.025016084,4504992.552894678],[-10605053.506423086,4504991.0384422662],[-10605319.771466993,4504989.3741774997],[-10605576.191254778,4504988.1342322091],[-10605825.776892658,4504986.9208151922],[-10605831.629429685,4504986.8952837624],[-10606086.077882269,4504985.6449708641],[-10606333.085697172,4504984.4249626249],[-10606339.533809684,4504984.3994387332],[-10606341.638168201,4505237.9565484086],[-10606343.748944795,4505492.0604303796],[-10606345.860632807,4505746.6918244343],[-10606347.976135576,4506001.853039789],[-10606350.101860562,4506257.553828883],[-10606352.232001236,4506513.7967543053],[-10606354.361752581,4506770.6022931607],[-10606356.496420609,4507027.9711177805],[-10606351.474931302,4507027.9446875211],[-10606099.185993919,4507026.8142908243],[-10605840.876735147,4507025.6501342123],[-10605837.218390206,4507025.6283889432],[-10605581.568143606,4507024.4732230827],[-10605321.262121566,4507023.2893607887],[-10605325.485226469,4507285.6171868248],[-10605329.318965323,4507523.9321970306],[-10605329.675344273,4507545.7325786296],[-10605333.826167645,4507803.6250256784],[-10605337.472034782,4508030.1824132847],[-10605337.947006788,4508059.2778355833],[-10605094.818335937,4508046.095032664],[-10604851.798684536,4508032.9103548201],[-10604607.595187286,4508019.6591862151],[-10604362.653349014,4508006.3620985439],[-10604116.952446029,4507993.0101335905],[-10603870.429306848,4507979.6080852654],[-10603623.954518508,4507966.212615232],[-10603377.260477409,4507952.7983598784],[-10603123.721274478,4507953.9353129407],[-10602870.354050681,4507955.0635449355],[-10602617.024269575,4507956.1819363609],[-10602363.762466237,4507957.2935158089],[-10602110.752965868,4507958.9974702224],[-10601857.882424621,4507960.6934784409],[-10601605.129918557,4507962.3831803361],[-10601352.516271496,4507964.0645575169],[-10601352.249896739,4507934.9966510171]]]},"attributes":{"objectid":6053,"field_kid":"1000150010","approxacre":2162,"field_name":"HERTHA","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":808,"avgdepthsl":-134,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150010}},{"geometry":{"rings":[[[-10619332.037428005,4504986.2919900473],[-10619590.313790869,4504989.5195077406],[-10619587.633574333,4505244.4482696559],[-10619584.95155778,4505499.4734215029],[-10619583.139443733,4505671.3225397803],[-10619582.973007217,4505752.0235358551],[-10619582.462550415,4505999.1377762677],[-10619582.462300096,4506002.9703708971],[-10619326.994503871,4506001.413656665],[-10619072.533448311,4505999.8567030123],[-10618817.922221845,4505998.2848623227],[-10618563.555171581,4505996.7073482983],[-10618563.728999408,4505742.828686446],[-10618563.903315835,4505488.0773506155],[-10618564.07191734,4505232.7104727449],[-10618564.240409268,4504976.6540568061],[-10618819.330961723,4504979.8592056911],[-10619075.380000276,4504983.0685300343],[-10619077.948413789,4504983.111195988],[-10619332.037428005,4504986.2919900473]]]},"attributes":{"objectid":6301,"field_kid":"1000150008","approxacre":160,"field_name":"GALESBURG NORTHWEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":5070,"maxoilwell":1,"lastoilpro":67,"lastoilwel":1,"lastodate":"3-1995","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150008}},{"geometry":{"rings":[[[-10634626.878278639,4501957.4672789508],[-10634878.855224239,4501955.9244697224],[-10634876.807210488,4502212.0109449672],[-10634874.765399277,4502467.2565054214],[-10634872.729690634,4502721.68933779],[-10634870.698882852,4502975.2415357251],[-10634618.266373284,4502978.4706786806],[-10634365.327395096,4502981.699572918],[-10634113.214845242,4502984.9034956582],[-10633861.477316793,4502988.0972035406],[-10633863.750248592,4502732.8257630486],[-10633866.031885836,4502476.7510724077],[-10633866.099315723,4502468.5135641182],[-10633868.303006653,4502219.8219933202],[-10633870.587538013,4501962.0549811376],[-10634122.744986149,4501960.5328499069],[-10634374.839763964,4501959.0052971486],[-10634626.878278639,4501957.4672789508]]]},"attributes":{"objectid":6304,"field_kid":"1000149910","approxacre":159,"field_name":"NEODESHA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":2632231.7200000002,"maxoilwell":368,"lastoilpro":3159.9899999999998,"lastoilwel":263,"lastodate":"2-2009","cumm_gas":12759529,"maxgaswell":183,"lastgaspro":47133,"lastgaswel":182,"lastgdate":"2-2009","avgdepth":896.21113075999995,"avgdepthsl":25.030377649999998,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149910}},{"geometry":{"rings":[[[-10589605.929480568,4700935.3290614905],[-10589865.849544669,4700930.7051235223],[-10589865.510379039,4701185.6432250468],[-10589865.168212719,4701442.2163292728],[-10589865.153608434,4701449.7055194834],[-10589864.838862926,4701699.9088890506],[-10589864.512919191,4701958.8935272051],[-10589605.203520782,4701960.6450063353],[-10589346.153018128,4701962.3873555707],[-10589087.241674546,4701964.1151760323],[-10588828.47930125,4701965.8360531125],[-10588828.601240385,4702223.6608591126],[-10588828.723582774,4702482.9384062383],[-10588828.833312513,4702743.1308380421],[-10588828.942243395,4703004.3998507094],[-10588570.939606331,4703003.6320089297],[-10588312.878001854,4703002.8581243213],[-10588055.827551199,4703002.0828170916],[-10587799.435251519,4703001.3018469466],[-10587798.588609545,4702742.2306453604],[-10587797.776430689,4702493.9203779604],[-10587797.740768921,4702484.4445882253],[-10587796.895233616,4702227.9237777377],[-10587796.09127331,4701983.8522252524],[-10587796.073027631,4701972.6763461716],[-10587795.243615957,4701718.6267304448],[-10587794.445860911,4701473.8497760938],[-10587794.404996071,4701465.6698061153],[-10587793.575689079,4701213.7910928968],[-10587792.750288807,4700962.9816403314],[-10588051.098455664,4700959.1912488118],[-10588309.67047864,4700955.3916013725],[-10588568.462152926,4700951.5820552791],[-10588827.477282878,4700947.7650530636],[-10589086.7194726,4700943.9350668453],[-10589294.37496361,4700940.8636980997],[-10589346.21725441,4700939.9427160108],[-10589605.929480568,4700935.3290614905]]]},"attributes":{"objectid":5697,"field_kid":"1000147605","approxacre":470,"field_name":"LITTLE WAKARUSA","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":63008.769999999997,"maxoilwell":24,"lastoilpro":1119.3099999999999,"lastoilwel":24,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147605}},{"geometry":{"rings":[[[-10571395.955441166,4692850.835002467],[-10571394.990739403,4692592.1378019601],[-10571136.71791992,4692590.2259653499],[-10570877.530347679,4692588.3014169727],[-10570618.780579301,4692586.3916382734],[-10570360.028207863,4692584.476336414],[-10570360.0859583,4692322.9640127532],[-10570360.14220771,4692061.5795284826],[-10570360.209272793,4691800.757256276],[-10570360.27664048,4691540.3305710014],[-10570618.796649491,4691541.7061694656],[-10570876.838408055,4691543.0709816152],[-10571134.430048503,4691544.4189708093],[-10571391.549145097,4691545.7582286429],[-10571391.554075735,4691550.0874334071],[-10571651.374576977,4691550.7281130711],[-10571910.381942419,4691551.3601913713],[-10572168.570765872,4691551.9895764049],[-10572425.946853979,4691552.6098463237],[-10572428.501888309,4691813.0958099235],[-10572431.052716218,4692073.3184511038],[-10572433.588825505,4692333.2615655577],[-10572436.120227654,4692592.9188379217],[-10572431.568089252,4692592.9160347823],[-10572433.055279044,4692850.709149207],[-10572434.540564038,4693108.0570124984],[-10572436.020439986,4693364.9236223977],[-10572437.498811455,4693621.3216603333],[-10572178.186018376,4693622.0393157778],[-10571918.710538063,4693622.751576758],[-10571658.903476167,4693623.4562602984],[-10571398.834012289,4693624.1542652696],[-10571397.87792859,4693366.8439114615],[-10571396.919139031,4693109.0649031922],[-10571395.955441166,4692850.835002467]]]},"attributes":{"objectid":5937,"field_kid":"1000149132","approxacre":479,"field_name":"BEAR & BULL","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":276999.96999999997,"maxoilwell":61,"lastoilpro":472.63,"lastoilwel":35,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":932.17999999999995,"avgdepthsl":-72.819999999999993,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149132}},{"geometry":{"rings":[[[-10626711.524624469,4513323.7213080525],[-10626710.531024739,4513063.3904734636],[-10626458.073155519,4513062.336924945],[-10626198.822304888,4513061.2484612409],[-10626194.252837902,4513061.2274561869],[-10625938.857346512,4513060.1389090195],[-10625678.173074601,4513059.0225322898],[-10625421.893204579,4513060.8161966056],[-10625178.719053071,4513062.5135670388],[-10625167.457019409,4513062.6002885038],[-10624914.902862256,4513064.352339346],[-10624679.302874925,4513065.9789797021],[-10624664.221422723,4513066.0880016014],[-10624415.524827572,4513067.8062666673],[-10624180.045777297,4513069.4264716823],[-10624168.72417631,4513069.5118040545],[-10623923.858613102,4513071.1921173707],[-10623680.926335948,4513072.8528869292],[-10623426.786893234,4513075.331129346],[-10623172.280035326,4513077.8059604466],[-10623163.114972891,4513077.8980071479],[-10622917.301844716,4513080.2749807006],[-10622661.891065214,4513082.7390741529],[-10622649.618389113,4513082.8520407369],[-10622405.766979493,4513085.2087148335],[-10622149.423445929,4513087.6794901574],[-10622140.635409772,4513087.7629574826],[-10621892.858962772,4513090.1445836443],[-10621636.064820193,4513092.6057624044],[-10621632.288510567,4512836.6961633945],[-10621628.506991202,4512580.3859951729],[-10621628.420747623,4512574.878803079],[-10621624.705144953,4512323.6678397926],[-10621620.902593987,4512066.540843837],[-10621620.815834016,4512059.1458174158],[-10621617.900244113,4511809.0010076538],[-10621614.893785844,4511551.0617309688],[-10621614.830166994,4511545.4568871045],[-10621611.889325837,4511292.6928792186],[-10621608.878855079,4511033.9004156869],[-10621864.399690401,4511033.0062267631],[-10622119.287009155,4511032.1063513234],[-10622373.551523447,4511031.1990226079],[-10622627.183021737,4511030.2865122193],[-10622880.693583267,4511029.3659234364],[-10623133.791778393,4511028.4411652265],[-10623386.472901814,4511027.5124899494],[-10623638.738855673,4511026.5788879814],[-10623889.006779814,4511029.5107029798],[-10624141.172050023,4511032.4599571181],[-10624150.269241499,4511032.5643106084],[-10624395.291430447,4511035.4189524893],[-10624651.276921585,4511038.3957652654],[-10624667.849870237,4511038.5924636004],[-10624909.084773879,4511041.380803261],[-10625168.840929801,4511044.3779803533],[-10625175.308446389,4511044.4580713082],[-10625430.447879212,4511047.4069835655],[-10625693.938959645,4511050.4464844437],[-10625703.091247698,4510799.7139074672],[-10625712.250943145,4510548.7139842566],[-10625712.465643693,4510543.019202143],[-10625721.428058062,4510297.5480704326],[-10625730.609176515,4510046.1133294068],[-10625982.681874851,4510046.0460923081],[-10626235.588616794,4510045.9712936748],[-10626487.863343628,4510045.8899253067],[-10626738.035591666,4510045.8048718628],[-10626988.766972303,4510045.7169227274],[-10627237.673388135,4510045.6252918839],[-10627484.736117918,4510045.5222812491],[-10627729.95315944,4510045.4139481243],[-10627731.684470402,4510296.5292318035],[-10627733.369583024,4510541.0747516602],[-10627733.412676556,4510547.4929112038],[-10627735.132571956,4510798.2974032806],[-10627736.85206553,4511048.9395416314],[-10627738.052076388,4511300.315520267],[-10627739.236949153,4511548.7105933856],[-10627739.25609339,4511551.9494519336],[-10627740.457409162,4511803.8693750268],[-10627741.641076729,4512051.7657124149],[-10627741.66893803,4512056.0374449426],[-10627741.830559883,4512090.3177696103],[-10627742.25526176,4512308.5051708063],[-10627742.739850031,4512558.0618104376],[-10627742.740773393,4512561.2618513871],[-10627743.229190288,4512814.3159661414],[-10627743.719511259,4513067.6599628953],[-10627997.231491527,4513071.5684789261],[-10628251.373183409,4513075.4807896689],[-10628506.108345903,4513079.395632416],[-10628761.480728483,4513083.3133863555],[-10629017.009587448,4513087.2171312198],[-10629272.974939512,4513091.1201243475],[-10629529.383592475,4513095.0381446481],[-10629786.228237955,4513098.9557918981],[-10629785.512206456,4513356.7792102685],[-10629784.7954737,4513614.5243990431],[-10629784.787888024,4513618.0426255828],[-10629784.074235421,4513872.1966546178],[-10629783.352396056,4514129.8016526978],[-10629527.349463534,4514126.0782574313],[-10629271.795438062,4514122.3556251461],[-10629016.663889799,4514118.6372903716],[-10628761.960525155,4514114.9175722227],[-10628507.935631933,4514111.9107567249],[-10628254.851702144,4514108.9083702257],[-10628001.695990881,4514105.9093918735],[-10627748.792764679,4514102.9052406298],[-10627490.258091561,4514102.7111981781],[-10627231.440898996,4514102.511093],[-10626972.915336089,4514102.3109909249],[-10626714.482477913,4514102.1033152398],[-10626713.502403352,4513843.074983947],[-10626712.519822711,4513583.6181755103],[-10626711.524624469,4513323.7213080525]]]},"attributes":{"objectid":5973,"field_kid":"1000150024","approxacre":2709,"field_name":"THAYER NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":164.49000000000001,"maxoilwell":2,"lastoilpro":164.49000000000001,"lastoilwel":2,"lastodate":"5-2008","cumm_gas":31413,"maxgaswell":1,"lastgaspro":172,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150024}},{"geometry":{"rings":[[[-10606144.506588772,4510090.0175730037],[-10606395.262356255,4510095.190964872],[-10606399.453528261,4510351.4518449912],[-10606403.65672197,4510608.4459160911],[-10606407.885156121,4510866.493919001],[-10606412.116193691,4511124.6299354136],[-10606161.566815173,4511119.1896982733],[-10606015.126328025,4511116.0076630199],[-10605918.437319385,4511112.9268011153],[-10605911.125245288,4511112.6861629309],[-10605661.251999695,4511104.6941424683],[-10605509.367433324,4511099.83424058],[-10605410.338994136,4511098.120815428],[-10605407.832258686,4510840.8408017661],[-10605407.387907106,4510795.2840569476],[-10605403.577060658,4510584.8733983077],[-10605403.050911592,4510555.5097433636],[-10605399.905064836,4510382.2583703669],[-10605398.652609682,4510329.3023204161],[-10605392.625919905,4510074.4720469797],[-10605642.6623754,4510079.6513562305],[-10605889.722562147,4510084.7647571284],[-10605893.815794144,4510084.8393881889],[-10606144.506588772,4510090.0175730037]]]},"attributes":{"objectid":5677,"field_kid":"1000150019","approxacre":158,"field_name":"OGESSE CREEK","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150019}},{"geometry":{"rings":[[[-10576063.67406344,4523573.0243906127],[-10576064.988116078,4523317.0475981664],[-10576052.504191196,4523317.1158462977],[-10576053.125392394,4523065.0440922724],[-10576053.743102608,4522814.1474160086],[-10576054.386625698,4522561.7572639892],[-10576055.029641546,4522308.7772363313],[-10575802.942698628,4522310.6436284911],[-10575551.340912249,4522312.4997921037],[-10575300.193184713,4522314.3459991654],[-10575049.511924719,4522316.1835150877],[-10575049.53110205,4522321.1968880147],[-10574795.188715078,4522321.8329507858],[-10574540.378990147,4522322.4635758651],[-10574285.554948526,4522323.0839670161],[-10574030.551800642,4522323.6989235794],[-10573775.146389686,4522324.3081904417],[-10573519.654979588,4522324.9100021906],[-10573263.69613147,4522325.5109246634],[-10573007.411107834,4522326.1056528762],[-10573007.441198969,4522321.9293106999],[-10573008.536236933,4522070.1925095608],[-10573009.655542156,4521812.6532029705],[-10573009.672421804,4521808.8349842271],[-10573010.791049024,4521553.5061721019],[-10573011.932445813,4521292.7635379042],[-10572757.856212879,4521290.5458199009],[-10572502.755601609,4521288.3140674196],[-10572248.447902733,4521286.0650162259],[-10572006.133102784,4521283.9162815195],[-10571994.249230508,4521283.9025041685],[-10571740.208359031,4521283.6208357615],[-10571486.515387777,4521283.3317175796],[-10571232.66333341,4521283.0290799411],[-10570978.822291695,4521282.7197467284],[-10570979.340080423,4521027.2788563427],[-10570979.840827286,4520779.7728461381],[-10570979.841352535,4520772.0952166207],[-10570980.355041254,4520517.1624927698],[-10570980.845117878,4520273.9659815375],[-10570980.863726456,4520262.4718237054],[-10570981.382850163,4520010.4943392426],[-10570981.885829182,4519766.058338644],[-10570981.885753736,4519758.3813269734],[-10570982.387254044,4519506.1132185077],[-10570982.889653817,4519253.6989928959],[-10570725.777471654,4519250.0858577695],[-10570480.719652601,4519246.6346701412],[-10570470.664188666,4519246.4873990677],[-10570217.433070727,4519242.9152357364],[-10569976.53043109,4519239.5119701289],[-10569970.354929246,4519239.4262582464],[-10569966.197448356,4519239.3927361313],[-10569713.879697133,4519237.4514755011],[-10569470.324722825,4519235.5708227362],[-10569462.365570338,4519235.5181819545],[-10569211.644155189,4519233.5677200481],[-10568961.742382813,4519231.6173943318],[-10568955.305146221,4518978.2558771782],[-10568949.143927693,4518735.7276176978],[-10568948.884033693,4518725.395472887],[-10568942.489357017,4518473.0288198367],[-10568936.485572405,4518236.0595749151],[-10568936.115009125,4518221.1519669453],[-10568929.769014182,4517971.3881215537],[-10568923.712758191,4517733.0334675023],[-10568923.432936499,4517722.1650751615],[-10568917.12830079,4517473.4798846943],[-10568910.834883817,4517225.3344057202],[-10569164.088942999,4517225.4738394264],[-10569418.104176961,4517225.6084842272],[-10569428.082444759,4517225.6140444456],[-10569672.940554664,4517225.7441499773],[-10569928.579554744,4517225.8719965518],[-10569941.724962434,4517225.8751986362],[-10569950.002876043,4517225.8784635859],[-10570004.548959635,4517225.3830049988],[-10570186.737634806,4517224.4185497081],[-10570444.511173511,4517223.0499610975],[-10570452.194303157,4517223.0123023549],[-10570701.745392207,4517221.6828813571],[-10570958.497056041,4517220.3094816403],[-10571209.958672384,4517222.2148440909],[-10571455.063182442,4517224.0675895987],[-10571462.347554622,4517224.1131466636],[-10571715.54406542,4517226.0205520988],[-10571956.974352956,4517227.8342279019],[-10571969.606670946,4517227.8352764584],[-10572221.467025863,4517227.6969936006],[-10572463.742465081,4517227.5593436034],[-10572472.96906892,4517227.554538738],[-10572724.011483734,4517227.4139721896],[-10572974.628309343,4517227.2668333668],[-10573229.059332099,4517228.4186983956],[-10573483.004196227,4517229.562979931],[-10573736.464703742,4517230.6960157752],[-10573989.401309241,4517231.8208362162],[-10574248.193444662,4517232.9594977321],[-10574493.582575807,4517234.0323170014],[-10574502.25444255,4517234.0675368197],[-10574751.570987724,4517235.157202851],[-10574996.139976518,4517236.2211713241],[-10575244.904641947,4517233.1795857856],[-10575379.390985232,4517231.5325783938],[-10575500.143597608,4517229.9865582865],[-10575526.411528995,4517229.6582858274],[-10575761.960621385,4517226.6286854493],[-10576030.302929912,4517223.1732763611],[-10576045.198716367,4517222.9712765785],[-10576054.426102117,4517222.9648213852],[-10576294.761717269,4517222.776028432],[-10576561.665111117,4517222.558511517],[-10576580.553780317,4517222.5391659318],[-10576830.991684699,4517222.3247334035],[-10577102.762462249,4517222.086186138],[-10577356.824352119,4517215.4586246219],[-10577611.405136889,4517208.812006589],[-10577866.50361523,4517202.1508782683],[-10578122.146217387,4517195.468547008],[-10578120.838285251,4516944.1177303195],[-10578119.560151104,4516698.4335690541],[-10578119.537969422,4516693.4419661621],[-10578118.254282676,4516443.6573870089],[-10578116.973808702,4516194.6826103078],[-10578116.603240101,4515942.3001153022],[-10578116.245199963,4515700.0492676776],[-10578116.234390115,4515691.4001212977],[-10578115.859350258,4515442.0346676251],[-10578115.485726599,4515193.9667829713],[-10578138.207692595,4515194.0821036147],[-10578134.833767163,4514940.7101169331],[-10578131.425373264,4514684.769337534],[-10578131.317845708,4514675.521707736],[-10578128.00003181,4514426.3324212208],[-10578124.527708136,4514165.3801103691],[-10578121.168602396,4513912.2408148032],[-10578117.806691227,4513658.9036346767],[-10578114.445277968,4513405.3290720219],[-10578111.080758724,4513151.5374676306],[-10578362.586722268,4513150.0749603398],[-10578597.060450694,4513148.7073919466],[-10578612.264088374,4513148.6141949035],[-10578860.116861768,4513147.1670373958],[-10579106.16196177,4513145.7250303468],[-10579359.556499481,4513144.9779206775],[-10579614.021865329,4513144.2216114122],[-10579627.718975494,4513144.1719438098],[-10579869.533631133,4513143.4428476272],[-10580126.078682089,4513142.6628364716],[-10580145.752647674,4513142.6054274254],[-10580143.726909393,4512886.318457705],[-10580141.706582354,4512630.4756446593],[-10580139.699878136,4512375.2676813072],[-10580137.698386477,4512120.6393621601],[-10580391.342883196,4512118.6230551628],[-10580643.574659571,4512116.6108935438],[-10580894.393415362,4512114.611334146],[-10581143.749893978,4512112.615035817],[-10581395.949938685,4512111.0296312366],[-10581649.080049971,4512109.4322500192],[-10581903.140127774,4512107.8295819042],[-10582158.130572503,4512106.2150633996],[-10582161.022035647,4512362.983541199],[-10582163.916406855,4512620.1633787109],[-10582166.808677837,4512877.5330714863],[-10582169.703856356,4513135.2689822521],[-10582177.067401988,4513135.2317218371],[-10582179.732262777,4513388.2922256282],[-10582182.401233416,4513641.8006850155],[-10582185.093335794,4513895.7626875918],[-10582187.792751864,4514150.1873559598],[-10582191.321836276,4514406.0630128682],[-10582194.884686576,4514664.3031884003],[-10582194.99659529,4514671.3043815428],[-10582198.470692307,4514925.0570387933],[-10582202.074045021,4515188.1698327344],[-10582199.314863255,4515439.4424083205],[-10582196.649591098,4515682.1761929141],[-10582196.56447326,4515689.1314727059],[-10582193.836189197,4515937.1386766527],[-10582191.125706514,4516183.4990038183],[-10582188.359322652,4516435.3572716089],[-10582185.643243413,4516682.6008900916],[-10582185.579917509,4516686.6746977568],[-10582182.821129814,4516937.4638717705],[-10582180.067842277,4517187.7289228979],[-10582173.533946348,4517187.7170995073],[-10581924.528579397,4517187.3640292305],[-10581668.603674088,4517186.9971102895],[-10581665.71285766,4517186.9935393687],[-10581412.331870781,4517186.6265248591],[-10581155.714571029,4517186.2472216617],[-10581148.273875784,4517443.7794810198],[-10581140.856898643,4517700.5373636372],[-10581133.484264201,4517956.6026500221],[-10581126.457588766,4518200.6126573971],[-10581126.298435515,4518211.9414439723],[-10581122.666071519,4518466.2396273343],[-10581119.024703704,4518721.1229581377],[-10581115.404246923,4518974.8854874428],[-10581111.792392725,4519228.0247845668],[-10581110.324511563,4519482.3324144129],[-10581108.856029985,4519736.6740168715],[-10581108.851965046,4519740.1543329135],[-10581107.413878946,4519991.0538895624],[-10581105.953807425,4520245.450686899],[-10580855.1047835,4520244.8381804591],[-10580604.254958596,4520244.2196105495],[-10580354.28634483,4520243.6052183118],[-10580104.891489349,4520242.9867897574],[-10580104.656015705,4520497.8967954805],[-10580104.418145828,4520753.3869130984],[-10580104.200005328,4521009.4768927498],[-10580103.98197162,4521266.1609671647],[-10579856.617617995,4521264.2166512115],[-10579607.870177239,4521262.2552665006],[-10579357.82244431,4521260.2735292185],[-10579106.33485912,4521258.2740909569],[-10579098.998695176,4521510.5763412351],[-10579091.59387885,4521765.2354541523],[-10579091.27263858,4521776.5823896201],[-10579084.164043361,4522020.7612814195],[-10579082.260098275,4522086.1606074786],[-10579084.315419003,4522277.3610368539],[-10579084.452335658,4522291.4691592371],[-10579084.491631618,4522295.9671506025],[-10579084.073149348,4522534.5336284749],[-10579083.620950084,4522792.7108403072],[-10579083.611481851,4522805.3236644482],[-10579083.169863321,4523051.8883265005],[-10579082.704171602,4523312.1173359426],[-10579085.710114235,4523567.9772624644],[-10579088.617648544,4523815.3996249735],[-10579088.731870096,4523823.4014336215],[-10579091.728091946,4524078.408645764],[-10579094.635626739,4524325.8726605736],[-10579094.701282658,4524332.998615779],[-10578841.571401438,4524333.4646967398],[-10578587.52917318,4524333.9273582511],[-10578584.279544007,4524333.9306166768],[-10578332.558078891,4524334.383567309],[-10578076.671934474,4524334.8379996847],[-10577824.482632356,4524335.2827326842],[-10577577.702737758,4524335.7107039336],[-10577573.422125489,4524335.7169866059],[-10577323.479601553,4524336.1484698849],[-10577074.651256122,4524336.5714958617],[-10576824.328803265,4524337.6376031721],[-10576571.751362631,4524338.7055875678],[-10576567.114741905,4524338.7199549219],[-10576316.883493505,4524339.7719104113],[-10576059.735708067,4524340.8478186615],[-10576061.048460122,4524084.9242493436],[-10576062.360511081,4523828.9842014043],[-10576063.67406344,4523573.0243906127]]]},"attributes":{"objectid":5699,"field_kid":"1000147525","approxacre":11545,"field_name":"WALNUT SOUTHEAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":322333.72999999998,"maxoilwell":193,"lastoilpro":1483.3499999999999,"lastoilwel":159,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":383.57142857000002,"avgdepthsl":-591.09523809999996,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147525}},{"geometry":{"rings":[[[-10584242.849661078,4556071.9337504311],[-10584242.095724566,4556045.5832715314],[-10584218.222995291,4556047.4006023109],[-10583986.661190832,4556047.1718724519],[-10583730.234233558,4556046.9119090261],[-10583474.122538418,4556046.6393960817],[-10583217.878891798,4556046.3604191225],[-10582962.034703903,4556046.0799199231],[-10582705.207687467,4556045.7915649824],[-10582704.756592181,4555789.2859727722],[-10582704.307596667,4555533.0911535593],[-10582703.415489091,4555277.2733725477],[-10582702.524279593,4555021.801295558],[-10582957.636038769,4555021.3389632301],[-10583212.217589142,4555020.8706756784],[-10583467.994111804,4555020.3965546079],[-10583723.18045678,4555019.9187598312],[-10583977.80065171,4555019.4312077211],[-10584231.840580348,4555018.9390946748],[-10584229.26495407,4554762.4715395682],[-10584226.700130161,4554507.1616899474],[-10584224.152030919,4554251.2264786223],[-10584221.613034163,4553996.2092466354],[-10584129.155654855,4553996.7402457418],[-10584129.716024138,4553740.8808181006],[-10584130.276287535,4553485.6910727918],[-10584130.853873203,4553230.2351420429],[-10584131.430657571,4552974.8297079103],[-10584132.003939692,4552719.2272969214],[-10584132.576415313,4552464.2726954343],[-10584133.161599351,4552210.0356709072],[-10584133.744674975,4551956.4933640845],[-10584388.914228918,4551954.7975202492],[-10584644.320855217,4551953.0926802009],[-10584899.575507129,4551951.3739035577],[-10585155.890276635,4551949.6405535704],[-10585155.403163735,4551692.1342148548],[-10585154.930000715,4551442.2141474942],[-10585154.932263877,4551435.272420804],[-10585154.476275068,4551179.1131493468],[-10585154.052460402,4550941.6192039326],[-10585153.950417927,4550933.05642235],[-10585153.880419696,4550923.6393723469],[-10585151.740283882,4550668.9658217803],[-10585149.664154574,4550421.9745724937],[-10585149.589129357,4550414.9899470359],[-10585147.445976967,4550161.8252034374],[-10585145.309025116,4549909.4194669239],[-10585143.002432501,4549650.8203652138],[-10585140.690636633,4549391.9126544902],[-10585140.650730491,4549387.3644956211],[-10585138.385050546,4549132.7050977796],[-10585136.076864116,4548873.1982240556],[-10585136.024560973,4548866.6740540462],[-10585134.1750402,4548660.0123472074],[-10585134.120686462,4548613.1778683476],[-10585133.821514368,4548352.8755993079],[-10585133.798631947,4548347.8492486356],[-10585133.49131065,4548092.1185563086],[-10585133.175026821,4547830.9210851071],[-10585390.58146045,4547830.7339228988],[-10585647.449275548,4547830.5395427328],[-10585653.763627591,4547830.540287883],[-10585904.397883458,4547830.3421227224],[-10586161.244874757,4547830.1341907559],[-10586168.592813909,4547830.1310072402],[-10586418.950352039,4547829.9254968781],[-10586676.908419494,4547829.7085699793],[-10586682.429060029,4547829.7009578766],[-10586935.139700904,4547829.4726444948],[-10587193.645197297,4547829.2324121818],[-10587190.521682484,4547570.2065374302],[-10587187.409774354,4547311.9404007383],[-10587184.292159384,4547053.7099241205],[-10587181.178646756,4546795.7506560255],[-10587178.082651846,4546538.0680215657],[-10587174.990158515,4546280.6661790591],[-10587171.896161173,4546023.5262395693],[-10587168.805264993,4545766.6629990498],[-10587423.081512257,4545766.8397249933],[-10587677.623464772,4545767.007966293],[-10587932.41720653,4545767.1701288931],[-10588187.475552268,4545767.324439982],[-10588442.825032424,4545767.4740651967],[-10588695.659924528,4545767.6150851855],[-10588698.438616015,4545767.6125465808],[-10588954.316603357,4545767.7425433099],[-10589210.356076218,4545767.8673479389],[-10589292.763777718,4545773.2870986434],[-10589464.64017476,4545774.5844083838],[-10589719.00761137,4545776.4979639677],[-10589725.160377664,4545776.5498680724],[-10589973.405182535,4545778.4153186008],[-10590227.743085254,4545780.3196309507],[-10590232.030709542,4545780.3486194527],[-10590482.136351658,4545782.2117871484],[-10590736.559452336,4545784.099511574],[-10590740.330583399,4545784.129767485],[-10590990.936399959,4545785.9900221732],[-10591245.29642822,4545787.8706560927],[-10591247.282212125,4546046.9192351941],[-10591249.271396542,4546306.3544142442],[-10591249.317499621,4546311.9788849903],[-10591251.272791553,4546566.1800213382],[-10591253.273582583,4546826.3808889501],[-10591253.333594562,4546832.8034779057],[-10591255.272675835,4547086.1143565355],[-10591257.260957705,4547345.7348744497],[-10591257.303265795,4547350.3037959607],[-10591259.248539941,4547605.227616244],[-10591261.226912733,4547864.5962454509],[-10591006.810636209,4547862.2175307227],[-10590758.851575313,4547859.8919957373],[-10590752.419889059,4547859.8295707004],[-10590498.043858839,4547857.4352784166],[-10590252.229761323,4547855.1159452982],[-10590253.089353761,4548114.640910781],[-10590253.9499465,4548374.2664535921],[-10590254.803942092,4548632.7184805796],[-10590255.655141216,4548890.4123685798],[-10590256.516449042,4549148.4409617474],[-10590257.374355512,4549406.1858715406],[-10590258.220754391,4549663.2997333407],[-10590259.063457942,4549919.4104459323],[-10590250.483103933,4549919.3941259217],[-10589999.716315471,4549918.7079039617],[-10589739.351704609,4549917.9890230456],[-10589732.837323355,4549917.9639570462],[-10589477.919067303,4549917.2545633754],[-10589294.753714534,4549916.7426082352],[-10589215.400695961,4549915.057984543],[-10588961.569604343,4549912.5438016821],[-10588713.924516568,4549910.0849622525],[-10588708.245194616,4549910.0280979173],[-10588455.396931725,4549907.5089731645],[-10588210.582694888,4549905.0621620733],[-10588209.87400993,4550163.2996423338],[-10588209.167330293,4550421.2005948834],[-10588208.441831643,4550678.8138963021],[-10588207.717237072,4550936.0882155066],[-10588206.080698133,4551193.0363259185],[-10588204.443861069,4551449.7405542508],[-10588202.790608816,4551706.0369325401],[-10588201.139061688,4551961.981940384],[-10587947.046971576,4551960.6547678839],[-10587692.963891841,4551959.3218938177],[-10587438.89302627,4551957.972041606],[-10587184.830370147,4551956.6177548766],[-10587184.373997979,4552212.964268025],[-10587183.917224046,4552469.4666143004],[-10587183.914289527,4552473.0187889002],[-10587183.472062068,4552726.1335484767],[-10587183.023194483,4552982.9610279724],[-10587183.022352936,4552987.5890683085],[-10587182.581115723,4553241.9590798113],[-10587182.132629545,4553500.971563478],[-10587181.66154206,4553757.1793514667],[-10587181.193777598,4554011.2035852643],[-10586927.375593403,4554012.1972201271],[-10586772.160644947,4554012.8034209292],[-10586673.668436766,4554013.1857856819],[-10586419.91953221,4554014.1728307437],[-10586264.794787418,4554014.7719346685],[-10586265.279705072,4554270.7644045092],[-10586265.767213564,4554528.1502847811],[-10586265.784207065,4554531.1246190825],[-10586266.26864595,4554784.638260996],[-10586266.759667564,4555040.9965697676],[-10586266.789058186,4555045.9272961868],[-10586267.273607997,4555298.2176067485],[-10586267.769124975,4555555.706738743],[-10586267.760482596,4555559.4180214265],[-10586268.246218482,4555813.4670277722],[-10586268.742131285,4556071.4978602258],[-10586013.656540498,4556068.2608362203],[-10585759.179148069,4556065.0257125804],[-10585505.107721869,4556061.779561053],[-10585251.523955606,4556058.5351835014],[-10585252.908992147,4556316.9352725884],[-10585254.292830655,4556574.9560540449],[-10585255.664758822,4556832.5991476811],[-10585257.034988374,4557089.8646522658],[-10585258.417538192,4557346.4325750014],[-10585259.793889455,4557602.023331997],[-10585261.165744117,4557856.6376119228],[-10585262.530799512,4558110.2762305792],[-10585011.225235878,4558109.9072120953],[-10584764.751120036,4558109.5391925741],[-10584760.418645293,4558109.5261480976],[-10584510.106922932,4558109.1471109912],[-10584260.294173582,4558108.7621137276],[-10584258.110590177,4557853.0979011049],[-10584255.919506675,4557596.4576197779],[-10584255.85408506,4557590.3071512021],[-10584253.699598612,4557338.840201078],[-10584251.483903926,4557080.2439427134],[-10584251.433002615,4557073.6758331805],[-10584249.276514411,4556822.153560644],[-10584247.060117936,4556563.6777716931],[-10584247.001195079,4556558.5275382185],[-10584244.83621617,4556304.8226887807],[-10584242.849661078,4556071.9337504311]]]},"attributes":{"objectid":5705,"field_kid":"1000146304","approxacre":6005,"field_name":"ELSMORE SHOESTRING","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":932056.25,"maxoilwell":181,"lastoilpro":491.75999999999999,"lastoilwel":25,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":780.64999999999998,"avgdepthsl":-257.35000000000002,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146304}},{"geometry":{"rings":[[[-10595257.439541636,4550950.2601114819],[-10595257.558968937,4550694.4597266028],[-10595257.680001402,4550438.2944427887],[-10595257.784318136,4550181.7490851255],[-10595257.890640497,4549924.8382496079],[-10595514.003366077,4549925.7854157528],[-10595770.38680259,4549926.7275141347],[-10595774.597538218,4549926.7515724814],[-10596027.036845157,4549927.6835465143],[-10596283.956797801,4549928.6272904621],[-10596289.477237538,4549928.6543858191],[-10596541.102810081,4549929.5674868925],[-10596798.518832566,4549930.495014837],[-10596802.649676487,4549930.5136262178],[-10597056.163217256,4549931.4271026859],[-10597314.073407302,4549932.3485489162],[-10597314.137388688,4549675.9185638418],[-10597314.201659981,4549420.6531871548],[-10597314.263833774,4549164.8486326858],[-10597314.327108542,4548909.0831705788],[-10597568.898690732,4548907.7264664639],[-10597823.270643728,4548906.362289764],[-10598077.409328859,4548904.996340543],[-10598331.298427405,4548903.6255788533],[-10598584.932828473,4548902.8056882815],[-10598838.216727056,4548901.9807320116],[-10599091.573309127,4548901.1546356762],[-10599343.783875065,4548900.3257555664],[-10599341.980686814,4548648.0076338863],[-10599340.138300946,4548390.453686825],[-10599338.297419295,4548132.6289864015],[-10599336.455038482,4547874.5250668712],[-10599590.31467304,4547877.1408791905],[-10599844.720434804,4547879.7556775566],[-10600099.056316353,4547882.3624974573],[-10600353.542170186,4547884.9617183479],[-10600608.175993904,4547887.5638524638],[-10600862.959389428,4547890.160540672],[-10601117.872333776,4547892.7498832038],[-10601372.93404901,4547895.3332731994],[-10601373.925652174,4548152.1909858808],[-10601374.905368576,4548406.0972733302],[-10601374.896834655,4548408.7502917917],[-10601375.911970282,4548665.0207952168],[-10601376.904428106,4548915.9908031346],[-10601376.938622029,4548920.9775217772],[-10601377.928133963,4549176.6275420263],[-10601378.902563853,4549428.4027265897],[-10601378.903732557,4549431.9921143809],[-10601379.905964566,4549687.0508230645],[-10601380.908199094,4549941.8375956398],[-10601381.026815141,4550197.0352287143],[-10601381.147433592,4550452.2275908729],[-10601381.278762816,4550707.5947053125],[-10601381.411793116,4550963.0634843037],[-10601634.986809012,4550962.8199611222],[-10601888.747638347,4550962.5716232155],[-10602142.709899139,4550962.3090954153],[-10602396.837650048,4550962.0406127255],[-10602650.924547134,4550962.5301223239],[-10602904.718507865,4550963.0116511546],[-10603158.234949995,4550963.4801315386],[-10603411.483748926,4550963.9417867875],[-10603411.807999199,4551220.1266831551],[-10603412.133154271,4551475.9092878727],[-10603412.447296983,4551731.6995736826],[-10603412.762531945,4551988.4996389821],[-10603412.403720342,4552243.8295305027],[-10603412.051356027,4552494.7267949656],[-10603412.051923856,4552498.3576602954],[-10603411.6995221,4552753.391645533],[-10603411.35437738,4553003.0150330439],[-10603411.332603255,4553008.5005627433],[-10603410.988509065,4553263.7277554385],[-10603410.650467334,4553513.901704181],[-10603410.648921425,4553518.7893748861],[-10603410.298825508,4553773.4517277209],[-10603409.948926983,4554028.4252236504],[-10603210.254924806,4554026.2740811976],[-10603156.139879828,4554026.4909398016],[-10603063.716440808,4554026.8597275522],[-10602902.513014952,4554027.49750093],[-10602649.11951833,4554028.47656147],[-10602552.088788424,4554028.8505582334],[-10602395.965005318,4554028.4501588475],[-10602142.993307896,4554027.8026601421],[-10602043.62710176,4554027.5464435294],[-10601890.246468741,4554027.1495847758],[-10601637.707568359,4554026.4976493884],[-10601535.601916431,4554026.2313022772],[-10601385.280696761,4554025.8298726603],[-10601130.632963356,4554026.4217816638],[-10601027.916605556,4554026.6576606128],[-10600875.823444219,4554027.0082418704],[-10600620.813795237,4554027.5982510867],[-10600520.564070085,4554027.8282935889],[-10600365.578801375,4554026.6564955553],[-10600110.097533748,4554024.7142207157],[-10600010.556231063,4554023.9562872471],[-10599854.419239953,4554022.7592738885],[-10599598.440801531,4554020.7972314218],[-10599501.621124111,4554020.0542444028],[-10599342.187347429,4554018.8173213359],[-10599087.130160905,4554017.5173051069],[-10598993.689761724,4554017.0385370497],[-10598832.255183723,4554016.2052492909],[-10598577.607667841,4554014.8815339422],[-10598486.73832109,4554014.4085881803],[-10598323.199616857,4554014.6746736448],[-10598069.004204387,4554015.0972717619],[-10597973.550287191,4554015.2554454543],[-10597814.979388013,4554015.4995929077],[-10597561.216472441,4554015.8965907693],[-10597460.282862602,4554016.0516117914],[-10597307.595419845,4554016.2873785617],[-10597051.193170184,4554017.038842856],[-10596946.999615423,4554017.341765021],[-10596794.62132588,4554017.7787754349],[-10596537.825324144,4554018.5216234932],[-10596433.627264254,4554018.8203637023],[-10596280.797462871,4554018.5169021739],[-10596023.444532791,4554018.0107180094],[-10595947.321216943,4554017.8591131475],[-10595926.135587066,4554017.9794382835],[-10595772.392927356,4554018.7947365493],[-10595765.876744598,4554018.7740982929],[-10595508.019438267,4554017.9375349153],[-10595418.46670182,4554017.6452997047],[-10595249.86749367,4554017.0907074176],[-10595250.753803052,4553761.0495337285],[-10595251.637704607,4553505.58263034],[-10595252.516201345,4553249.9679104313],[-10595253.394697377,4552994.4393021269],[-10595254.289115801,4552738.4589035911],[-10595255.185337553,4552482.3451692304],[-10595256.068845933,4552226.1022901479],[-10595256.953957308,4551969.7380046453],[-10595257.082586143,4551714.9208387332],[-10595257.21140961,4551460.7342762463],[-10595257.324322594,4551205.6841681451],[-10595257.439541636,4550950.2601114819]]]},"attributes":{"objectid":5707,"field_kid":"1000146315","approxacre":5718,"field_name":"SEIBERT","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":166202.62,"maxoilwell":48,"lastoilpro":79.459999999999994,"lastoilwel":3,"lastodate":"1-2009","cumm_gas":15510,"maxgaswell":1,"lastgaspro":383,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146315}},{"geometry":{"rings":[[[-10623444.009930734,4465977.7621282218],[-10623444.398130663,4465715.2410683967],[-10623444.785538673,4465453.9337590709],[-10623445.167949531,4465193.790223957],[-10623445.539106864,4464941.6611710051],[-10623445.690130638,4464934.8412906984],[-10623451.225306919,4464676.7294930266],[-10623456.739866775,4464419.5550615359],[-10623462.226802019,4464163.3049859842],[-10623467.693220921,4463907.9879940012],[-10623715.192667257,4463908.6081738845],[-10623949.405568367,4463909.1881223209],[-10623961.22001332,4463909.220156162],[-10624205.761543302,4463909.8264533989],[-10624436.434656054,4463910.3935122201],[-10624448.800337603,4463910.4204062233],[-10624693.572734011,4463911.0122591276],[-10624927.184440451,4463911.5710865781],[-10624938.152808186,4463911.5944334399],[-10625182.521438131,4463912.1801211517],[-10625426.678924128,4463912.7580145132],[-10625677.133003147,4463930.5090308962],[-10625927.660965992,4463948.2595701059],[-10625934.204526439,4463948.7185518686],[-10626177.82270412,4463965.9718046095],[-10626408.465588743,4463982.3012111299],[-10626428.103271937,4463982.8084620191],[-10626434.518081548,4463982.9680359671],[-10626435.864462437,4463726.5885236403],[-10626437.19134655,4463473.9172443645],[-10626437.214955088,4463471.2099033119],[-10626438.57324193,4463213.6817175057],[-10626439.959224198,4462950.8577120649],[-10626441.317415455,4462693.9606841914],[-10626442.65350938,4462441.1285752123],[-10626442.683210311,4462436.3047312712],[-10626444.028002409,4462181.7454722822],[-10626445.386896022,4461925.0397594199],[-10626432.266635874,4461924.615255909],[-10626430.917161914,4461662.4037450831],[-10626429.602573182,4461406.704814882],[-10626428.274659634,4461149.6680605626],[-10626426.95416468,4460894.1008705283],[-10626425.636882501,4460639.8667332213],[-10626424.322006531,4460386.1490278477],[-10626423.009432048,4460132.2848172132],[-10626421.704279123,4459880.3170203334],[-10626419.176195474,4459625.8516782718],[-10626416.641800553,4459370.8475404205],[-10626414.118027486,4459117.2650234271],[-10626411.603269886,4458864.4479858521],[-10626661.984062374,4458865.9778649742],[-10626912.581404984,4458867.5041071745],[-10627163.399903003,4458869.0204334939],[-10627414.445563413,4458870.5321185049],[-10627658.67557144,4458890.6601368375],[-10627903.835553095,4458910.8565261001],[-10628149.925208064,4458931.1280680597],[-10628396.941332582,4458951.4698652765],[-10628397.143183017,4459211.9327381039],[-10628397.337658269,4459462.2926441319],[-10628397.351831535,4459470.9222212741],[-10628397.538253248,4459729.7502636658],[-10628397.724447608,4459984.4784495439],[-10628410.248127388,4459985.6438873895],[-10628655.539982805,4460001.1234501479],[-10628890.215865003,4460015.9267023252],[-10628900.196502481,4460016.5593084265],[-10629144.221590936,4460031.9502062239],[-10629387.613446079,4460047.2947617956],[-10629390.11844982,4460297.7322576474],[-10629392.614939412,4460547.5368821705],[-10629392.714821395,4460557.8996393951],[-10629395.095806623,4460796.7064551357],[-10629397.576469276,4461045.2416856745],[-10629397.707905987,4461058.4522035923],[-10629400.143587111,4461302.4243859677],[-10629402.694475122,4461557.9235962499],[-10629402.731335102,4461560.632326806],[-10629405.234033788,4461810.9314803826],[-10629407.763880372,4462063.8451819569],[-10629405.923702102,4462273.7114567496],[-10629403.857427739,4462509.2710114056],[-10629403.333504729,4462568.7920787027],[-10629401.621781372,4462764.0635202583],[-10629399.35002193,4463023.2925526267],[-10629399.126723967,4463048.2019243753],[-10629399.054964617,4463067.4403526979],[-10629398.153466605,4463292.1876016688],[-10629397.11053136,4463552.1428736877],[-10629397.046245856,4463565.9632274136],[-10629396.089092366,4463807.6405491652],[-10629395.087762112,4464060.8745385073],[-10629641.578366419,4464066.2046687212],[-10629848.140752025,4464070.6665295903],[-10629891.531466462,4464071.1202485971],[-10629908.167079881,4464071.2925995355],[-10630146.523571299,4464073.7654320532],[-10630405.827155437,4464076.4485233724],[-10630406.749124745,4464333.1144537376],[-10630407.594275229,4464568.9839892555],[-10630407.642606836,4464581.109400576],[-10630408.518251253,4464826.3904298572],[-10630409.396801515,4465072.0862933882],[-10630410.285081482,4465320.7549182912],[-10630411.17376275,4465569.5757982424],[-10630412.062745236,4465818.5533423675],[-10630412.9520289,4466067.6819068212],[-10630400.952271361,4466067.1776232403],[-10630168.502134437,4466057.5912506701],[-10629922.386815904,4466047.4355987217],[-10629907.258345263,4466046.8158928081],[-10629675.265234515,4466037.2453752561],[-10629425.191643158,4466026.9235278461],[-10629173.057427948,4466025.2947624065],[-10628937.497349136,4466023.7673548451],[-10628924.086865289,4466023.6746034911],[-10628676.645668305,4466022.0633963477],[-10628440.449254442,4466020.518633863],[-10628431.273560103,4466020.4553708034],[-10628179.777581085,4466018.8043735866],[-10627959.866069568,4466017.3558108388],[-10627927.156002278,4466017.1417928375],[-10627673.381892515,4466015.4590827134],[-10627418.47026919,4466013.7626524949],[-10627410.729979517,4466257.6106229397],[-10627402.976377448,4466501.8105850806],[-10627402.87558352,4466505.1319826124],[-10627395.217071783,4466746.3640717166],[-10627387.43924796,4466991.3051661309],[-10627387.310327714,4466995.5346180219],[-10627385.248987377,4467060.5357733499],[-10627339.582165023,4467237.153092837],[-10627275.880299514,4467483.5059417458],[-10627212.547355147,4467728.3954149047],[-10627149.394819384,4467972.5779351331],[-10626928.231835198,4467971.1028492851],[-10626688.888365457,4467969.5011150884],[-10626647.486375818,4467969.2130369712],[-10626437.267023308,4467967.7945838617],[-10626171.695578663,4467965.9966740822],[-10626146.07430345,4467965.6795962397],[-10625925.162198633,4467962.8202892942],[-10625677.148309205,4467959.6047879532],[-10625652.885802293,4467959.2896200716],[-10625427.657514583,4467956.3568317099],[-10625176.674697373,4467953.0852185832],[-10624929.287253674,4467953.1429472556],[-10624687.245980691,4467953.1938599702],[-10624682.360241428,4467953.2005585972],[-10624435.873837586,4467953.2344225319],[-10624194.705371862,4467953.2617213828],[-10624189.838954907,4467953.2687974414],[-10624184.597705221,4467953.2638004413],[-10624085.986801062,4467955.4985412341],[-10623942.464029498,4467967.4783616355],[-10623698.360026123,4467987.8482259838],[-10623693.915699109,4467988.2242115512],[-10623444.947886443,4468008.9918461349],[-10623195.557487968,4468029.7880528104],[-10623223.233963741,4467792.5498205964],[-10623249.721545309,4467565.5044732345],[-10623252.029060798,4467545.6345303347],[-10623281.664476931,4467291.5636664741],[-10623307.692661459,4467068.401927596],[-10623312.224002788,4467029.4923046986],[-10623315.600685172,4467000.5178342462],[-10623348.653445194,4466772.4565024804],[-10623382.569059599,4466538.4404467912],[-10623386.473467259,4466511.5394332949],[-10623415.0258634,4466246.6513265176],[-10623444.009930734,4465977.7621282218]]]},"attributes":{"objectid":5842,"field_kid":"1000149405","approxacre":5599,"field_name":"PRICE","status":"Abandoned","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":106898.02,"maxoilwell":34,"lastoilpro":159.53999999999999,"lastoilwel":18,"lastodate":"3-2007","cumm_gas":24280,"maxgaswell":1,"lastgaspro":59,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149405}},{"geometry":{"rings":[[[-10556916.737480195,4701135.7745493697],[-10556916.465260591,4700876.4527992755],[-10556658.760966575,4700875.8505571866],[-10556401.082702465,4700875.2424013969],[-10556143.22803542,4700874.6390032638],[-10555885.257334836,4700874.0298209256],[-10555627.200134637,4700873.4067552388],[-10555369.068248458,4700872.7764909659],[-10555110.798003111,4700872.1505984366],[-10554852.35455844,4700871.5175079862],[-10554852.055082433,4700610.7615909101],[-10554851.756412618,4700350.8542217007],[-10554851.438117385,4700090.5015331609],[-10554851.120122366,4699830.1335301651],[-10554850.800625876,4699569.8155111568],[-10554850.480929267,4699309.5220223069],[-10554850.181756336,4699049.2466349378],[-10554849.881382009,4698788.97688046],[-10555107.855397273,4698788.7446976248],[-10555365.746917589,4698788.5068600923],[-10555623.540425053,4698788.2550136251],[-10555881.250836875,4698787.9975124653],[-10556138.88355924,4698787.7270304719],[-10556396.432985717,4698787.4494799878],[-10556653.889004771,4698787.1779709384],[-10556911.170522997,4698786.8977230974],[-10557167.856755223,4698786.4419095693],[-10557420.276078105,4698785.9881790737],[-10557425.074899344,4698785.9671991654],[-10557682.829360504,4698785.4867017362],[-10557934.744002586,4698785.0104820952],[-10557941.114732532,4698785.0078719463],[-10558199.917499838,4698784.5246690512],[-10558454.493203631,4698784.0423922008],[-10558459.252879824,4698784.0198702142],[-10558719.125477806,4698783.4956603702],[-10558979.526683956,4698782.964121229],[-10558978.178533299,4699043.8747645142],[-10558976.82958075,4699304.6302768774],[-10558975.471817091,4699565.2298753075],[-10558974.114653155,4699825.6750903437],[-10558972.791427171,4700085.9457285078],[-10558971.466998829,4700346.060544691],[-10558970.115237873,4700605.9881607415],[-10558968.765077675,4700865.7423175061],[-10559228.530740866,4700865.940113551],[-10559480.785562716,4700866.127674968],[-10559486.95486046,4700866.1160642169],[-10559744.085892323,4700866.2866241457],[-10559991.678550148,4700866.4455487914],[-10559999.902912473,4700866.4699196499],[-10560254.441762054,4700866.6491098637],[-10560501.480182279,4700866.8171655079],[-10560507.649480026,4700866.8054262009],[-10560759.567313878,4700866.9474815456],[-10561010.194662984,4700867.0835033664],[-10561010.414027449,4700605.5817722445],[-10561010.631600639,4700345.8627822539],[-10561010.831047527,4700085.2525434019],[-10561011.029793493,4699824.6285458701],[-10561011.236147469,4699563.890145449],[-10561011.443401627,4699303.0162712019],[-10561011.661169184,4699042.3627079306],[-10561011.877336109,4698781.9154291507],[-10561278.26002194,4698780.9773193253],[-10561463.672447657,4698780.3201607019],[-10561544.595153192,4698780.0597744342],[-10561810.886234481,4698779.2579051284],[-10562077.140273131,4698778.4514091928],[-10562343.534072621,4698777.6476116264],[-10562610.208995515,4698776.8346869815],[-10562876.246785287,4698776.0101989349],[-10563141.946986627,4698775.181471725],[-10563401.425237078,4698775.6645382922],[-10563660.847623194,4698776.1409217417],[-10563920.116732979,4698776.6207763674],[-10564179.263902422,4698777.0954906084],[-10564438.342592983,4698777.5561957099],[-10564697.318164855,4698778.0108606266],[-10564956.176301517,4698778.4508740725],[-10565214.929717628,4698778.8821482491],[-10565215.338337857,4699039.5102314511],[-10565215.748060046,4699300.262603147],[-10565216.168094911,4699561.1584250396],[-10565216.587229542,4699822.1974512534],[-10565217.014171602,4700082.983776371],[-10565217.441313744,4700343.7522375723],[-10565217.850034583,4700604.5100325262],[-10565218.258354828,4700865.2542036744],[-10565475.608651923,4700867.6124975672],[-10565733.294334823,4700869.9675756935],[-10565991.333023792,4700872.318666609],[-10566249.741538206,4700874.6669271775],[-10566508.527687024,4700877.0110718245],[-10566767.64081197,4700879.3520007432],[-10567027.129969621,4700881.7104108641],[-10567286.989953836,4700884.0636766581],[-10567284.829700349,4701144.3994306326],[-10567282.670046208,4701404.508770478],[-10567280.504183784,4701664.4242057046],[-10567278.341323566,4701924.1284934226],[-10567276.16985222,4702183.6272747358],[-10567274.000582229,4702442.9254197329],[-10567271.825103968,4702702.0333279856],[-10567269.651126223,4702960.9368411014],[-10567266.026682425,4703220.2846597778],[-10567262.395033,4703480.082465901],[-10567258.772395302,4703740.1084752968],[-10567258.172658516,4703783.1388147948],[-10567257.354095496,4704000.4705798998],[-10567256.360686798,4704261.228615921],[-10567255.365978384,4704522.2937541101],[-10567254.35194958,4704783.6739917994],[-10567253.336921133,4705045.3152097091],[-10567251.809591144,4705304.8852121178],[-10567250.276961854,4705565.6126810424],[-10567248.746626634,4705824.8871680237],[-10567247.219191836,4706083.6679397747],[-10567246.951774865,4706133.077632132],[-10567248.100625416,4706342.0017590635],[-10567249.51687099,4706599.797666952],[-10567250.930209832,4706857.0280998731],[-10567252.341543067,4707113.7069073236],[-10566997.043256475,4707111.6527095772],[-10566741.285341075,4707109.5901544848],[-10566485.293156123,4707107.5200120918],[-10566228.980502453,4707105.4426689679],[-10565972.534595467,4707103.3663561661],[-10565715.867634112,4707101.2800119435],[-10565459.010053335,4707099.1741172019],[-10565201.909693204,4707097.0603779769],[-10564943.111396149,4707097.6821629293],[-10564683.999137912,4707098.2986764954],[-10564681.213834045,4707098.318379214],[-10564424.594643507,4707098.9114620909],[-10564164.877088886,4707099.507142039],[-10564160.801600834,4707099.5178505722],[-10563904.763962241,4707097.2613196708],[-10563644.191106379,4707094.9574876651],[-10563640.965495665,4707094.9191803215],[-10563383.214686161,4707092.6388663119],[-10563121.772430036,4707090.3183194045],[-10562862.915967204,4707091.1298380522],[-10562603.843555929,4707091.9351841593],[-10562355.109036246,4707092.689510596],[-10562344.984089136,4707092.6589753684],[-10562086.177474042,4707091.8750579068],[-10561827.578998158,4707091.0558933206],[-10561569.093352005,4707090.229653026],[-10561463.674184274,4707089.9038807629],[-10561310.275342437,4707092.5266265692],[-10561092.112508029,4707096.2529106475],[-10561051.433014959,4707096.4761511181],[-10560793.071214207,4707096.1298398655],[-10560535.078137564,4707095.7778658392],[-10560277.44607619,4707095.4243453564],[-10560020.175530642,4707095.0663198531],[-10559763.088496137,4707094.7013467019],[-10559506.403123634,4707094.3292955505],[-10559249.713045608,4707093.941422523],[-10558993.15541989,4707093.5458304444],[-10558734.977430986,4707093.2737389058],[-10558477.033711521,4707092.9940561522],[-10558219.198016217,4707092.6985506499],[-10557961.517999953,4707092.3968695095],[-10557703.655373555,4707092.084255958],[-10557445.801256903,4707091.7661110908],[-10557187.95294695,4707091.4515678817],[-10556952.839189127,4707091.1579421312],[-10556930.146187643,4707091.5986888791],[-10556930.075113075,4706834.3058315301],[-10556930.006488355,4706584.6160574174],[-10556930.00844346,4706577.000711685],[-10556929.945679514,4706319.8931149999],[-10556929.885574054,4706071.74476521],[-10556929.892126918,4706062.9135714546],[-10556929.842880405,4705806.1239360208],[-10556929.793267846,4705554.8916302053],[-10556929.794235598,4705549.5041305143],[-10556929.730774596,4705293.0273911096],[-10556929.668716745,4705036.8063666672],[-10556929.601622857,4704775.7067837594],[-10556929.545707183,4704557.4685992263],[-10556929.179419372,4704514.4400446974],[-10556929.174094182,4704511.3618618529],[-10556927.013309512,4704253.1523874272],[-10556924.825274657,4703991.9142702427],[-10556924.796206092,4703986.2421209775],[-10556923.081275992,4703783.2268147729],[-10556922.800126562,4703730.5864242092],[-10556921.405804042,4703469.2478054808],[-10556921.402474126,4703465.0352848498],[-10556920.031003872,4703207.9013766497],[-10556918.637081373,4702946.5111358995],[-10556918.364863798,4702687.4668189017],[-10556918.095459186,4702429.9989946391],[-10556917.817237966,4702171.4939530967],[-10556917.539215906,4701912.8255190235],[-10556917.274608146,4701653.9804625884],[-10556917.01019942,4701394.9496694477],[-10556916.737480195,4701135.7745493697]]]},"attributes":{"objectid":5104,"field_kid":"1000149148","approxacre":12097,"field_name":"OLATHE","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":15931.41,"maxoilwell":2,"lastoilpro":70.569999999999993,"lastoilwel":1,"lastodate":"1-2008","cumm_gas":4254545,"maxgaswell":46,"lastgaspro":3361,"lastgaswel":38,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149148}},{"geometry":{"rings":[[[-10601604.899753548,4769372.5622439897],[-10601606.631512806,4769110.9531885553],[-10601608.361169873,4768849.6426513866],[-10601610.083919244,4768588.606925481],[-10601611.805367313,4768327.8506483017],[-10601873.074241504,4768330.7780551808],[-10602133.776269013,4768333.6918772943],[-10602393.928068822,4768336.6108798636],[-10602653.474978533,4768339.5142271379],[-10602912.399779402,4768343.0502933944],[-10603170.737110095,4768346.5734225791],[-10603428.506515233,4768350.0799053125],[-10603685.708141938,4768353.5713025536],[-10603686.333154934,4768615.2499732859],[-10603686.956465544,4768876.6179737682],[-10603687.582979767,4769137.9352972507],[-10603688.208091097,4769398.388474633],[-10603949.629161973,4769399.8564121528],[-10604204.319956534,4769401.2803587168],[-10604210.285460655,4769401.3147739861],[-10604470.183194205,4769402.7539823018],[-10604721.467703791,4769404.1402730839],[-10604729.321061183,4769404.1946164258],[-10604730.223124212,4769665.2105483143],[-10604731.125587735,4769926.2134472625],[-10604732.029252645,4770187.2005940974],[-10604732.931816328,4770448.1749648815],[-10604472.256961279,4770446.6906137252],[-10604210.843864195,4770445.1953911781],[-10603948.624447417,4770443.6874851761],[-10603685.628945444,4770442.1676723361],[-10603684.988112953,4770702.8156450242],[-10603684.345778476,4770963.3227975536],[-10603683.704745941,4771224.1603283947],[-10603683.062713264,4771485.6853043083],[-10603422.287205352,4771481.8710250715],[-10603209.198701737,4771478.7480985392],[-10603160.803446123,4771478.2042255308],[-10602899.885140872,4771475.2767359242],[-10602639.13893234,4771472.3453639708],[-10602378.651519539,4771469.4171001241],[-10602118.002322247,4771466.4787407471],[-10601857.664781004,4771463.5227763932],[-10601597.475709526,4771460.564353778],[-10601598.709902612,4771199.7418037122],[-10601599.943494722,4770938.7679575272],[-10601601.181691736,4770677.594802456],[-10601602.400571395,4770420.3823807631],[-10601602.415283149,4770416.2248133654],[-10601603.037978195,4770155.7687252816],[-10601603.659973055,4769895.8670220971],[-10601604.27946333,4769634.587103433],[-10601604.899753548,4769372.5622439897]]]},"attributes":{"objectid":5164,"field_kid":"1000149129","approxacre":1112,"field_name":"WINCHESTER","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":507284,"maxgaswell":10,"lastgaspro":230,"lastgaswel":1,"lastgdate":"10-1994","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149129}},{"geometry":{"rings":[[[-10589599.68103149,4705096.6667088158],[-10589856.598084221,4705099.1071580881],[-10589857.035715001,4705359.8184707593],[-10589857.473544238,4705619.506534501],[-10589857.907469202,4705879.3490172932],[-10589858.342094511,4706138.9590410441],[-10589858.780724926,4706398.9402186796],[-10589859.216250662,4706658.2771979095],[-10589859.639262058,4706917.6144955009],[-10589860.058766205,4707175.0278833397],[-10589860.008938447,4707434.378636525],[-10589859.957111871,4707695.8225539094],[-10589859.966732156,4707701.4545457605],[-10589859.893772528,4707957.4830189748],[-10589859.820823653,4708220.0058549587],[-10589859.802413326,4708226.4465540852],[-10589859.741367588,4708482.6619404173],[-10589859.679231642,4708745.5524071176],[-10589859.687348336,4708750.0492287735],[-10589859.61659595,4709008.9372886801],[-10589859.544348994,4709272.1393573619],[-10589858.977032041,4709531.768067251],[-10589858.41541741,4709788.8321429333],[-10589858.399804315,4709791.6674401173],[-10589857.847904837,4710051.15760474],[-10589857.354827533,4710283.509413071],[-10589857.384198606,4710306.2427129913],[-10589857.402326236,4710310.4571447987],[-10589857.941569686,4710569.8565889085],[-10589858.472195003,4710824.2794100959],[-10589858.496028785,4710828.2912576143],[-10589859.018751698,4711086.754896746],[-10589859.186579151,4711169.1655121371],[-10589848.849092769,4711342.7845556783],[-10589594.617647387,4711344.6103591146],[-10589344.133470031,4711346.4025398232],[-10589339.61192045,4711346.4489104366],[-10589294.033110606,4711346.7800731147],[-10589084.12423907,4711345.1875416748],[-10588833.998162702,4711343.2844914198],[-10588829.398123566,4711343.2465732442],[-10588574.50441689,4711341.2958264723],[-10588323.888081569,4711339.3703899076],[-10588320.014670046,4711339.3589741187],[-10588065.862407207,4711337.3800383108],[-10587859.820438648,4711335.7724141423],[-10587812.096486026,4711336.2650983455],[-10587553.455113996,4711336.0506228935],[-10587293.955063965,4711335.8301074393],[-10587035.731067192,4711335.6010863977],[-10586778.075818133,4711335.3662689831],[-10586688.355433665,4711335.284258632],[-10586521.214266285,4711332.5185986105],[-10586264.199936293,4711328.2588568237],[-10586008.965432871,4711324.0319142621],[-10585827.539594635,4711321.0229200199],[-10585753.942678111,4711322.7104456257],[-10585756.245411748,4711218.8426040579],[-10585755.384693818,4711061.574540738],[-10585754.007425059,4710810.0296906177],[-10585753.948133158,4710801.2753636166],[-10585752.506470568,4710542.4538870808],[-10585751.11919562,4710292.9353751056],[-10585751.073120901,4710284.9508294342],[-10585749.643773835,4710026.823177903],[-10585748.25118671,4709775.2606036915],[-10585748.216730747,4709769.2628170215],[-10585746.792091623,4709512.2208115403],[-10585745.369856495,4709255.7071574694],[-10585745.089911545,4708995.1333937496],[-10585744.810466541,4708734.3562256331],[-10585744.525814926,4708473.3588156085],[-10585744.240662176,4708212.1804177426],[-10585743.952004673,4707950.7499061562],[-10585743.662445473,4707689.0999747794],[-10585743.369581785,4707427.2153327214],[-10585743.076717438,4707165.1147784963],[-10585742.883371407,4706904.7761445874],[-10585742.690226356,4706644.7271620119],[-10585742.499084283,4706384.939254011],[-10585742.308243241,4706125.418445616],[-10585742.121304467,4705865.127677544],[-10585741.935967024,4705604.6786955399],[-10585741.760540422,4705344.0778134968],[-10585741.585513791,4705083.3193843877],[-10585999.351933181,4705083.6603148552],[-10586257.062588898,4705083.9953298531],[-10586514.758027187,4705084.3209566427],[-10586772.418926015,4705084.6406677812],[-10587030.004238565,4705084.9497051546],[-10587287.534388119,4705085.2516695969],[-10587544.994557841,4705085.5631515337],[-10587802.366827231,4705085.8670463823],[-10588059.047810357,4705087.2337558623],[-10588315.752620455,4705088.5923629515],[-10588572.49126895,4705089.9474974172],[-10588829.220706727,4705091.2958158478],[-10589086.02312758,4705092.6500496371],[-10589288.324281592,4705093.7140952013],[-10589342.84166701,4705094.2200861024],[-10589599.68103149,4705096.6667088158]]]},"attributes":{"objectid":5289,"field_kid":"1000147600","approxacre":3799,"field_name":"EUDORA SOUTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":7943.6999999999998,"maxoilwell":22,"lastoilpro":459.11000000000001,"lastoilwel":22,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147600}},{"geometry":{"rings":[[[-10578563.503922323,4753676.1031954335],[-10578824.51505,4753676.5955116777],[-10578822.474170255,4753938.1944342451],[-10578820.432889896,4754199.8077667067],[-10578818.391709456,4754461.4382242365],[-10578816.349828007,4754723.0882638535],[-10578815.877253925,4754982.3676316934],[-10578815.41181167,4755238.7723544948],[-10578815.388761267,4755241.7039432721],[-10578814.932004692,4755501.0528696077],[-10578814.48208758,4755756.5608332669],[-10578814.465636654,4755760.4680525959],[-10578813.990357503,4756020.0032684803],[-10578813.521211158,4756276.4076208817],[-10578813.533099214,4756279.5027672378],[-10578813.05071261,4756538.9679685198],[-10578812.56832665,4756798.3578917747],[-10578552.653871274,4756797.7602808941],[-10578291.546757028,4756797.1525990469],[-10578030.737982752,4756796.5459484197],[-10577769.754309267,4756795.9324484114],[-10577508.636182664,4756795.3132620314],[-10577246.827269047,4756794.6852923855],[-10577010.884328067,4756794.1091610007],[-10576986.281595455,4756793.9858254557],[-10576726.277844494,4756792.6831922447],[-10576675.192425441,4756793.8259042669],[-10576467.848944891,4756796.482851645],[-10576210.390154792,4756799.7760333354],[-10575950.54304296,4756803.0916029718],[-10575689.449710879,4756806.4157176251],[-10575691.815118626,4756547.2003701851],[-10575694.184033874,4756287.5666775471],[-10575696.578982631,4756027.4758944772],[-10575698.979241041,4755766.9551998321],[-10575701.76392374,4755508.0325674536],[-10575704.539188201,4755249.9796978338],[-10575707.314763689,4754990.6660634018],[-10575710.096651085,4754730.791600232],[-10575968.707799911,4754727.8699795641],[-10576226.970151244,4754724.9451321503],[-10576484.811122358,4754722.0231330171],[-10576742.261948887,4754719.0964859109],[-10576742.977470051,4754457.6038695928],[-10576743.680136634,4754200.8470927309],[-10576743.711008182,4754196.5345539367],[-10576744.425220586,4753935.9080201769],[-10576745.125070494,4753680.7523399992],[-10576745.141531814,4753675.7073049257],[-10577003.948354686,4753675.4465065738],[-10577263.067132983,4753675.1780806743],[-10577522.530503998,4753674.8872949872],[-10577782.291313883,4753674.5883649979],[-10578042.35105757,4753675.098782517],[-10578302.796140274,4753675.6045440305],[-10578563.503922323,4753676.1031954335]]]},"attributes":{"objectid":5291,"field_kid":"1000149594","approxacre":1264,"field_name":"BOLING SOUTHWEST","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":33874,"maxgaswell":1,"lastgaspro":562,"lastgaswel":1,"lastgdate":"6-1990","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149594}},{"geometry":{"rings":[[[-10571118.766906245,4735219.8091307841],[-10571377.608294224,4735220.6901180334],[-10571376.023527857,4735480.400686482],[-10571374.441468151,4735739.6732680425],[-10571372.859804494,4735999.5684772665],[-10571371.276136139,4736259.8190648127],[-10571114.011125175,4736259.1697519775],[-10570858.050709169,4736258.5165581517],[-10570601.285370622,4736257.8678863319],[-10570344.420417875,4736257.21315224],[-10570344.811344722,4735997.3480110709],[-10570345.200169966,4735737.384671852],[-10570345.598406918,4735477.3083075872],[-10570345.997245351,4735217.1373727405],[-10570602.97679949,4735218.031661584],[-10570860.567854455,4735218.9232365228],[-10571118.766906245,4735219.8091307841]]]},"attributes":{"objectid":5373,"field_kid":"1000149606","approxacre":157,"field_name":"HOG CREEK","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":20,"maxoilwell":1,"lastoilpro":20,"lastoilwel":1,"lastodate":"10-1991","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149606}},{"geometry":{"rings":[[[-10642099.423260648,4662691.9457854228],[-10642356.541851496,4662694.9622970205],[-10642356.564650286,4662700.4070297442],[-10642357.543095356,4662954.68054449],[-10642358.543537483,4663214.5613883128],[-10642359.55228526,4663475.210668439],[-10642360.561630987,4663736.4050631626],[-10642102.690600928,4663732.6622650698],[-10641844.40970264,4663728.9066599561],[-10641835.738498766,4663728.7738393005],[-10641585.742663315,4663725.1231337981],[-10641326.714010838,4663721.3361508306],[-10641326.469417792,4663460.9695416344],[-10641326.224023946,4663200.5848429967],[-10641325.984931685,4662941.3412651196],[-10641325.747037137,4662682.8433628539],[-10641584.044474736,4662685.8871507896],[-10641841.92823975,4662688.9194132611],[-10642099.423260648,4662691.9457854228]]]},"attributes":{"objectid":5393,"field_kid":"1025818949","approxacre":160,"field_name":"DEAVER STATION","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1025818949}},{"geometry":{"rings":[[[-10556967.395555375,4726084.8983280314],[-10556968.404676812,4725820.5211402355],[-10556710.065999752,4725822.1723880768],[-10556450.77903356,4725823.8226146176],[-10556443.25929499,4725823.8625114597],[-10556190.540674699,4725825.4649897004],[-10555929.352825299,4725827.1144623877],[-10555919.324905338,4725827.1815763004],[-10555667.215585461,4725828.7778628543],[-10555404.083603144,4725830.4363763481],[-10555396.967027696,4725830.4910893524],[-10555149.272880467,4725832.0204475308],[-10555140.015545454,4725832.1833051424],[-10554875.017010055,4725836.875470655],[-10554878.102149514,4725578.4373959787],[-10554881.209620617,4725318.2011624919],[-10554881.318070691,4725309.9254653938],[-10554884.321899686,4725057.3209925117],[-10554887.436685249,4724795.4144846369],[-10554887.545342216,4724784.9887024304],[-10554890.54146249,4724532.6282264497],[-10554893.668167094,4724269.2863474702],[-10554893.740372576,4724261.9845932508],[-10554896.793572323,4724005.4092491893],[-10554899.940504409,4723740.9952980885],[-10554638.846815089,4723743.397099507],[-10554377.631185977,4723745.7925891615],[-10554373.668331206,4723745.845199002],[-10554116.329758542,4723748.2032837579],[-10553854.99629469,4723750.5906581506],[-10553849.941484932,4723750.6422485868],[-10553594.154896736,4723752.9742912874],[-10553333.047893869,4723755.3480064794],[-10553329.208380984,4723755.363765426],[-10553072.125203224,4723757.7025222285],[-10552810.050188459,4723760.0785674024],[-10552566.083084956,4723762.814031315],[-10552322.749610089,4723765.5366046717],[-10552079.054920403,4723768.2684591534],[-10551835.89204232,4723770.9887125678],[-10551591.233145192,4723773.7110435553],[-10551345.436240468,4723776.4416329674],[-10551101.964408431,4723779.1330298269],[-10550859.670830972,4723781.8057324169],[-10550598.842855511,4723782.6513449214],[-10550349.513796136,4723783.4516134169],[-10550337.673187632,4723783.4026462818],[-10550334.35947914,4723783.3980422476],[-10550075.988430457,4723782.6964559676],[-10549813.768958647,4723781.977773333],[-10549805.76806313,4723781.9542777017],[-10549551.027887298,4723781.2360329293],[-10549287.804661702,4723780.4861804061],[-10549281.540261919,4723780.4884357983],[-10549023.957418807,4723779.7373652486],[-10548759.537417565,4723778.9596948363],[-10548758.812961819,4723515.7774958573],[-10548758.099813128,4723256.6794834808],[-10548758.0904065,4723253.7565253088],[-10548757.358238399,4722992.8829077752],[-10548756.629772805,4722733.1658303114],[-10548755.874479586,4722471.1394594023],[-10548755.122487921,4722210.6111437492],[-10548754.400931928,4721949.5393271176],[-10548753.677873908,4721688.6129733361],[-10548754.173466863,4721672.4837390883],[-10548754.930986444,4721430.9085730352],[-10548755.740954095,4721172.0085203163],[-10548756.557321709,4720911.96275762],[-10548757.377185829,4720650.7508930117],[-10548758.197555013,4720390.2430941351],[-10548759.019323083,4720129.3157947371],[-10548759.854403669,4719867.958336968],[-10548760.68868049,4719606.1637993641],[-10549020.817212405,4719605.8909122124],[-10549275.97292584,4719605.616659645],[-10549280.495927125,4719605.6289770724],[-10549539.755759964,4719605.3366513439],[-10549792.426515743,4719605.0468406156],[-10549798.60772375,4719605.0407236759],[-10550056.978033604,4719604.7338536819],[-10550310.335879387,4719604.4245883441],[-10550314.900228223,4719604.4383220505],[-10550572.380714852,4719604.1337795658],[-10550829.414587857,4719603.8217717847],[-10550931.223862801,4719603.7916154303],[-10551075.033425208,4719602.0972906016],[-10551321.376087464,4719599.1933253203],[-10551568.421858093,4719596.2583150445],[-10551816.171337903,4719593.3084875904],[-10552064.656063229,4719590.3553051036],[-10552313.835687608,4719587.3884646809],[-10552563.708308898,4719584.4150498919],[-10552814.287042141,4719581.4279770721],[-10552815.074409524,4719448.5311063454],[-10552815.141684633,4719321.3107876498],[-10552815.275618343,4719064.3705828451],[-10552815.279501827,4719061.0432900442],[-10552815.406406779,4718800.8306378722],[-10552815.530037859,4718545.3642287701],[-10552815.547928508,4718540.6184820347],[-10552815.670833113,4718281.0931945853],[-10552815.792158311,4718025.1273669321],[-10552815.800746702,4718021.720318961],[-10552815.9359682,4717762.6407162845],[-10552816.071489101,4717503.4170769583],[-10552816.289816055,4717245.9158170568],[-10552816.508742223,4716988.1867540441],[-10552816.519032318,4716984.740396712],[-10552816.732269345,4716729.7772007566],[-10552816.947984092,4716470.8347593071],[-10553075.823892253,4716469.3575228835],[-10553334.860485191,4716467.8739764169],[-10553594.046249613,4716466.374721108],[-10553853.339537656,4716464.8676112564],[-10553853.59200318,4716206.0106503591],[-10553853.846667053,4715946.4927496649],[-10553854.095421692,4715686.59307307],[-10553854.342771804,4715426.2360800216],[-10554113.701152578,4715426.2909088423],[-10554373.094673717,4715426.3382704733],[-10554632.582202949,4715426.3821552452],[-10554891.9682154,4715426.4205052163],[-10554891.757728152,4715163.0457325047],[-10554891.548438676,4714899.1014629463],[-10554891.335850095,4714635.9149356587],[-10554891.122562537,4714373.0282147629],[-10554890.913677324,4714109.7130952412],[-10554890.704694571,4713846.8185113519],[-10554890.484498128,4713583.8035677038],[-10554890.266312884,4713322.2177110156],[-10555148.171819976,4713319.2282189317],[-10555195.546703991,4713318.6790892333],[-10555405.721835613,4713319.024448283],[-10555662.946981596,4713319.4619245874],[-10555919.93305257,4713319.8933535749],[-10556176.562513335,4713320.3155184863],[-10556432.933977319,4713320.7313788161],[-10556688.993282128,4713321.1239450565],[-10556945.087527078,4713321.5104614794],[-10557106.38413924,4713321.4353750199],[-10557204.590689225,4713321.329326367],[-10557459.425881973,4713321.0483529931],[-10557463.182502458,4713321.0275962614],[-10557721.222480891,4713320.7063069558],[-10557973.409027094,4713320.3836549614],[-10557978.576570414,4713320.3766576368],[-10558234.567692341,4713320.0459910193],[-10558487.87502755,4713319.7136755288],[-10558490.540292824,4713319.691384159],[-10558745.504633809,4713319.3572517168],[-10559002.301282138,4713319.0137067195],[-10559003.115734009,4713582.7229402643],[-10559003.930286793,4713846.5704490636],[-10559004.160685332,4713917.3622828983],[-10559007.960537709,4714110.383469237],[-10559013.151122775,4714374.1551943151],[-10559018.354824308,4714638.1721820394],[-10559023.548911588,4714901.6883202503],[-10559028.728781929,4715165.1283972031],[-10559032.269156272,4715345.2166309739],[-10559033.087907244,4715428.4075758308],[-10559034.771494219,4715681.6908652317],[-10559036.428224895,4715930.8341098111],[-10559036.435258301,4715934.9705655333],[-10559038.112138342,4716188.4023331525],[-10559039.750938082,4716435.8806474963],[-10559039.809342243,4716441.9245074401],[-10559040.524113659,4716695.0222140932],[-10559041.226845736,4716943.9652900174],[-10559041.238984272,4716947.9799674219],[-10559041.963965757,4717200.822221566],[-10559042.688245589,4717453.5326150004],[-10559043.660675818,4717716.8757387633],[-10559044.634609211,4717980.4621251067],[-10559044.654562198,4717985.3703704309],[-10559045.410942106,4718183.0743455533],[-10559045.402507339,4718244.3323591761],[-10559045.370787758,4718508.5096492767],[-10559045.379142294,4718515.8503807327],[-10559045.357591093,4718772.957823785],[-10559045.335786467,4719037.7304786751],[-10559045.317795321,4719042.5573291043],[-10559045.306775441,4719302.8169500483],[-10559045.295186192,4719568.1962693725],[-10559306.742139095,4719568.6600589128],[-10559568.33906441,4719569.1166345738],[-10559830.109288994,4719569.5714053353],[-10560031.434604472,4719569.9161668578],[-10560092.040196421,4719569.7102491213],[-10560354.017550567,4719568.7485700799],[-10560616.156890944,4719567.7783893235],[-10560878.393342884,4719566.7857980719],[-10561140.556009948,4719565.7874121638],[-10561140.620215232,4719653.5268752249],[-10561140.348954298,4719827.0437075868],[-10561139.938974127,4720089.7633142108],[-10561139.497049052,4720351.1405363716],[-10561139.058325311,4720612.1353794718],[-10561138.620709574,4720874.2471384089],[-10561138.182394225,4721136.5614686711],[-10561137.752789829,4721399.0352330776],[-10561137.323286448,4721661.6647084877],[-10561394.054205095,4721662.9573516808],[-10561464.109162303,4721663.3090471728],[-10561652.485679628,4721664.3282980286],[-10561668.362236466,4721664.4337586826],[-10561912.686989762,4721665.7838588664],[-10562174.5893558,4721667.2249739347],[-10562172.349025141,4721927.0545572042],[-10562170.108540202,4722186.7024813769],[-10562167.883975336,4722446.0671937801],[-10562165.661514228,4722705.2348613571],[-10562163.452469816,4722964.2174506038],[-10562161.245929727,4723222.9815784106],[-10562159.026773464,4723482.145152716],[-10562156.819237977,4723739.9030867331],[-10562019.27375119,4723740.2999402648],[-10561901.278733684,4723740.8236318305],[-10561654.230889522,4723741.9157101735],[-10561646.913278935,4723741.9682260472],[-10561464.169042112,4723742.7826200109],[-10561394.280320957,4723741.9933976205],[-10561141.35073578,4723739.1372139398],[-10561138.016859818,4724000.4176647486],[-10561134.683985386,4724261.7227639984],[-10561134.609669657,4724268.0926705096],[-10561131.355712723,4724523.8725459138],[-10561128.011719698,4724786.6100042602],[-10561127.886834117,4724795.4527742611],[-10561124.642995184,4725050.1007720502],[-10561121.275769234,4725314.3619180424],[-10561117.893224487,4725578.9812531751],[-10561114.506272886,4725844.0867750579],[-10561115.294994676,4725882.8371285303],[-10561112.730505101,4726102.345905954],[-10561109.709005006,4726360.965791991],[-10561106.716347253,4726617.7403833224],[-10561104.182102552,4726835.3439397737],[-10561104.261948818,4726865.9523221236],[-10561104.267419605,4726873.4223503806],[-10561105.005650077,4727129.6157245412],[-10561105.725788698,4727379.706394],[-10561105.754794607,4727385.4727294641],[-10561106.503540307,4727640.971685566],[-10561107.253188413,4727896.1681207707],[-10560852.489567593,4727895.9082915839],[-10560597.597399175,4727895.6395697333],[-10560341.256767571,4727895.3730532611],[-10560083.898467476,4727895.0971371802],[-10559827.241672868,4727894.8101290977],[-10559569.917912427,4727894.5175849413],[-10559313.132269898,4727894.2055720314],[-10559261.115544042,4727894.1400823193],[-10559056.514812773,4727895.7182334345],[-10558794.7256127,4727898.4213158591],[-10558534.140595743,4727901.1038923208],[-10558271.996689193,4727903.7958939699],[-10558009.219656056,4727906.4888045546],[-10557747.29900671,4727909.1547676474],[-10557485.593104346,4727911.8128663544],[-10557223.174784342,4727914.472648141],[-10556960.345893316,4727917.128696355],[-10556961.338173551,4727658.4383237213],[-10556962.335162954,4727398.7605495565],[-10556962.396882989,4727385.2461712072],[-10556963.344870629,4727138.1180050699],[-10556964.350076914,4726876.4834412737],[-10556964.415817689,4726858.543608333],[-10556965.36890576,4726612.9929141942],[-10556966.393242359,4726349.1589517798],[-10556966.431128848,4726337.3499969132],[-10556967.395555375,4726084.8983280314]]]},"attributes":{"objectid":5757,"field_kid":"1000149134","approxacre":16046,"field_name":"CRAIG-MONTICELLO","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":135,"maxoilwell":1,"lastoilpro":135,"lastoilwel":1,"lastodate":"5-1985","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149134}},{"geometry":{"rings":[[[-10563889.030663488,4580846.9926161012],[-10563889.249081651,4580589.957696287],[-10563717.700725337,4580587.7394175567],[-10563634.337974627,4580588.4433622947],[-10563377.921993701,4580590.6022790428],[-10563122.846465159,4580592.7492373809],[-10562868.252494287,4580594.8858989086],[-10562867.498916298,4580337.9358640481],[-10562866.742139762,4580080.3930501295],[-10562865.971138284,4579823.8535515079],[-10562865.202135175,4579567.7868989175],[-10562863.807127282,4579312.0618632138],[-10562862.412543299,4579056.6979896463],[-10562861.024562836,4578801.8146201484],[-10562859.638580879,4578547.3748808289],[-10563114.096862284,4578544.5644574193],[-10563368.935183825,4578541.7437415468],[-10563624.120006613,4578538.9188309936],[-10563879.785686284,4578536.0836268272],[-10563879.090056643,4578401.1760049192],[-10563879.865990905,4578282.3460831996],[-10563881.439612469,4578041.4946927726],[-10563881.528721638,4578029.3355872724],[-10563883.18533873,4577777.0819537081],[-10563884.732885554,4577541.3493846674],[-10563884.915935365,4577525.5348277856],[-10563890.648461536,4577274.5082938345],[-10563892.684596514,4577185.3451335104],[-10563892.765994146,4577035.8240010254],[-10563892.763294404,4577023.9644233324],[-10563892.85908428,4576774.0037522418],[-10563892.9544672,4576524.7936070189],[-10564147.771737469,4576523.8507502573],[-10564404.4009059,4576522.894792622],[-10564659.962638319,4576521.9370688265],[-10564915.408636764,4576520.9738853732],[-10565171.34930809,4576519.998885463],[-10565427.291881656,4576519.019440663],[-10565683.327963471,4576518.0419001756],[-10565939.175927499,4576517.058138838],[-10566187.350900207,4576516.8225136539],[-10566431.325308938,4576516.5850291662],[-10566435.229629852,4576516.5891778106],[-10566682.476828294,4576516.3484826721],[-10566922.918546429,4576516.1072265981],[-10566929.212434409,4576516.0994108943],[-10566969.602503808,4576516.0649344483],[-10567176.512925133,4576512.3240744928],[-10567415.463952405,4576508.001699267],[-10567422.240700578,4576507.8700497868],[-10567666.643942054,4576503.4392838571],[-10567908.875868943,4576499.0429621851],[-10568161.277070679,4576506.2888178704],[-10568415.01622148,4576513.5655246153],[-10568417.642261606,4576513.6415712386],[-10568669.331139022,4576520.8462929605],[-10568924.460199222,4576528.1436936958],[-10568936.23993656,4576528.4732673988],[-10569177.647170575,4576528.4844832318],[-10569420.559547501,4576528.489459496],[-10569430.359395294,4576528.4666191498],[-10569682.555727791,4576527.8501918465],[-10569934.201823177,4576527.2297065724],[-10569935.989929477,4576779.0531357545],[-10569937.790135352,4577032.5653110342],[-10569939.598242396,4577287.014312055],[-10569941.381151574,4577537.8272449933],[-10569941.406039141,4577542.6276940256],[-10569943.186332567,4577794.930652732],[-10569944.936928293,4578042.9715491394],[-10569944.96512966,4578046.6130258227],[-10569946.752742408,4578297.6695600133],[-10569948.534453573,4578548.1234563058],[-10569949.330684876,4578803.0888487268],[-10569950.103749637,4579051.0455304524],[-10569950.104694357,4579057.6067475267],[-10569950.904237274,4579311.6814385345],[-10569951.281445336,4579431.5087120151],[-10569951.97678408,4579556.583414129],[-10569952.021068113,4579565.2864733776],[-10569953.444262691,4579818.1094307508],[-10569953.625724271,4579850.2786693433],[-10569953.198972993,4580064.7442721259],[-10569953.181506716,4580070.7043037787],[-10569952.703006249,4580322.6093579456],[-10569952.221095404,4580575.3493068116],[-10569696.562316587,4580574.5130646769],[-10569533.387443576,4580573.9759842977],[-10569440.557738654,4580573.5087353271],[-10569435.977133939,4580573.4824880622],[-10569184.711427797,4580574.5873149643],[-10568928.907665852,4580575.7043911386],[-10568673.150157496,4580576.8097777935],[-10568417.135351131,4580577.9105933933],[-10568161.188623561,4580579.0098834671],[-10567905.203851907,4580580.1034564832],[-10567656.497764273,4580586.8984613465],[-10567409.354686813,4580593.6449169721],[-10567161.87171532,4580600.3925231183],[-10566914.70140565,4580607.1266610939],[-10566667.07516752,4580613.8670330485],[-10566421.361844877,4580620.5513554383],[-10566175.149243657,4580627.2318750117],[-10565929.259816457,4580633.8976556715],[-10565931.154306799,4580890.8018311337],[-10565933.005796917,4581141.6715629529],[-10565933.051606713,4581146.9548469828],[-10565934.924785171,4581402.3361907285],[-10565936.746361239,4581650.7290861458],[-10565936.798070159,4581656.9546997258],[-10565682.358603049,4581652.3621716723],[-10565427.49504512,4581647.7564363861],[-10565172.160642209,4581643.1371131949],[-10564916.360500256,4581638.5033126147],[-10564660.102628507,4581633.8577029714],[-10564403.395436721,4581629.1981240679],[-10564146.14421523,4581624.5215273947],[-10563888.399722813,4581619.8305808147],[-10563888.388170794,4581612.5456471164],[-10563888.588508459,4581362.5667007593],[-10563888.794114837,4581105.1595348092],[-10563888.813678449,4581100.2979857326],[-10563889.030663488,4580846.9926161012]]]},"attributes":{"objectid":2028,"field_kid":"1000146845","approxacre":4384,"field_name":"MAPLETON","status":"Abandoned","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":240.81,"maxoilwell":1,"lastoilpro":61.810000000000002,"lastoilwel":1,"lastodate":"10-2006","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146845}},{"geometry":{"rings":[[[-10570771.052335652,4537648.5717335753],[-10571015.313544678,4537649.0389652727],[-10571020.539495777,4537905.2204639604],[-10571025.796397831,4538162.8752002409],[-10571031.010331074,4538418.5027989801],[-10571036.207937717,4538673.2683225591],[-10571036.358178288,4538680.0886330362],[-10571033.411411425,4538928.5741952611],[-10571030.384117085,4539183.7943177475],[-10571030.345315034,4539188.1557225995],[-10571027.365531418,4539438.9259004854],[-10571024.335030681,4539693.977542826],[-10570766.818642473,4539692.6165382992],[-10570509.68249397,4539691.2504725615],[-10570504.087025678,4539691.2261568299],[-10570252.839884875,4539689.8737769034],[-10569996.339671675,4539688.4851859165],[-10569981.301187182,4539688.3956652284],[-10569737.275694972,4539687.08089408],[-10569474.980483219,4539685.6611524755],[-10569459.624531828,4539685.5780851468],[-10569209.480466831,4539684.211027585],[-10568940.766034761,4539682.7367206188],[-10568949.580077441,4539427.6067988575],[-10568958.40362695,4539172.176492597],[-10568958.67847489,4539164.5954197077],[-10568967.24359134,4538916.4532900974],[-10568976.081749463,4538660.427975079],[-10568976.172170559,4538651.3662118381],[-10568978.913071502,4538405.1194498437],[-10568981.762507111,4538149.0637740092],[-10568981.872746125,4538139.464419907],[-10568984.633660566,4537892.2741620718],[-10568987.510112597,4537634.7199210795],[-10569244.703185622,4537637.8379007252],[-10569498.841229135,4537640.9131010519],[-10569501.696328141,4537640.956512453],[-10569758.493144244,4537644.0677848319],[-10570008.863335075,4537647.0929909674],[-10570015.092331745,4537647.1007339684],[-10570270.826295841,4537647.6058440087],[-10570513.238268312,4537648.0802808311],[-10570522.839961616,4537648.0905677788],[-10570771.052335652,4537648.5717335753]]]},"attributes":{"objectid":3671,"field_kid":"1000146848","approxacre":643,"field_name":"PAINT CREEK","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":634.23000000000002,"avgdepthsl":-353.76999999999998,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000146848}},{"geometry":{"rings":[[[-10541444.615467945,4609617.3920757473],[-10541445.248320019,4609363.4586716658],[-10541189.138935549,4609363.2909246441],[-10540937.668842042,4609363.1211428689],[-10540933.112345474,4609363.1220310275],[-10540677.183967415,4609362.9461301174],[-10540427.25202813,4609362.7657748312],[-10540421.336982274,4609362.7531567831],[-10540421.967235018,4609106.3928499306],[-10540422.596787598,4608849.9708846658],[-10540423.211523978,4608593.4759271201],[-10540423.827061959,4608336.9116770877],[-10540679.80190688,4608337.2549777655],[-10540935.859145783,4608337.5910170488],[-10541192.012394132,4608337.9289673306],[-10541448.249337947,4608338.2611849504],[-10541448.283569297,4608326.1230917387],[-10541448.803324552,4608081.2338703554],[-10541449.348693615,4607825.2431452842],[-10541449.9031781,4607568.6152274441],[-10541450.459965959,4607311.9120433172],[-10541194.452970529,4607311.4254512703],[-10540938.413237667,4607310.9336365629],[-10540682.366496755,4607310.4327777773],[-10540426.325161941,4607309.9272058886],[-10540170.410371521,4607309.4111888641],[-10539914.637442924,4607308.8912231624],[-10539658.709136898,4607308.3678180119],[-10539402.710150111,4607307.8388080262],[-10539145.55844488,4607307.7110479921],[-10538889.631837947,4607307.5779391369],[-10538633.162111109,4607307.4411356896],[-10538376.754154785,4607307.2987275235],[-10538120.199831428,4607307.1449822746],[-10537863.594950384,4607306.9832119439],[-10537606.967743818,4607306.8222058835],[-10537350.277865721,4607306.6543211611],[-10537349.868595675,4607048.940072841],[-10537349.461224647,4606791.7588312626],[-10537349.037036369,4606534.231309128],[-10537348.613248812,4606276.6488242308],[-10537348.208582988,4606019.0744264824],[-10537347.805518443,4605761.5845324975],[-10537347.402256239,4605503.644864656],[-10537347.000196863,4605245.4436885472],[-10537346.501920449,4604988.4604795733],[-10537346.001843592,4604731.1861823471],[-10537345.502266128,4604474.1012962386],[-10537345.001987686,4604217.0340210805],[-10537344.482389821,4603959.4951151889],[-10537343.96469482,4603701.8251124136],[-10537343.459014624,4603443.9574270109],[-10537342.953835903,4603185.919449728],[-10537343.81558474,4602985.5833762754],[-10537344.345513081,4602930.0663682194],[-10537346.788695058,4602673.8427507952],[-10537349.213959422,4602417.224814523],[-10537351.642130012,4602160.2067321213],[-10537354.104351861,4601901.1724018715],[-10537356.546739077,4601644.2938425625],[-10537359.007859709,4601385.4559084503],[-10537361.454254268,4601128.3071818352],[-10537360.199997962,4600874.1113842959],[-10537358.93314149,4600617.4244973687],[-10537357.641456343,4600360.7401725827],[-10537356.344870109,4600103.2347003557],[-10537355.060490524,4599846.94286073],[-10537353.774809279,4599590.6380342431],[-10537352.491630707,4599334.3225128809],[-10537351.207550867,4599078.0049523534],[-10537348.875074958,4598820.8791808328],[-10537346.543298444,4598563.9113930203],[-10537344.208518123,4598306.9236531528],[-10537341.873937253,4598049.9841778036],[-10537339.523437841,4597793.0130414777],[-10537337.17103635,4597535.9401257755],[-10537334.8380564,4597278.9047853304],[-10537333.247152336,4597103.4818989197],[-10537328.31457362,4597021.9588021245],[-10537327.902593283,4596764.9913522294],[-10537327.488311199,4596507.8605444953],[-10537327.495237634,4596504.6746337758],[-10537327.077233871,4596250.533816318],[-10537326.652241582,4595993.0261967238],[-10537326.661376953,4595988.7373861494],[-10537326.240666023,4595735.2767519196],[-10537325.81177167,4595477.3344854573],[-10537325.818698218,4595474.1294254502],[-10537325.414014144,4595219.1891059708],[-10537325.003242757,4594960.8502979111],[-10537579.800031725,4594962.3052870845],[-10537834.924896639,4594963.7550606634],[-10538090.380941032,4594965.2031810554],[-10538346.164360551,4594966.6468492365],[-10538602.298582062,4594968.0875919759],[-10538858.758977326,4594969.5247730864],[-10539115.557359943,4594970.9491048642],[-10539372.673406562,4594972.3697477616],[-10539372.97266498,4594716.4991051015],[-10539373.270625181,4594460.1574568665],[-10539373.273356112,4594456.0111365756],[-10539373.586008631,4594203.3444563691],[-10539373.902196217,4593946.0695526488],[-10539373.919452947,4593940.5610771105],[-10539374.236206794,4593688.4322609948],[-10539374.560809845,4593430.3257517703],[-10539374.562939964,4593426.1984172622],[-10539374.861888824,4593171.8006883897],[-10539375.167375864,4592912.843109794],[-10539374.705978464,4592654.5318354955],[-10539374.247474207,4592397.7289632531],[-10539373.772756973,4592140.0758156674],[-10539373.296738602,4591882.3595151482],[-10539372.843245182,4591624.7705939896],[-10539372.391154949,4591366.9375356417],[-10539371.93416029,4591108.9151735315],[-10539371.477767831,4590850.6598995486],[-10539626.657157628,4590851.6529932208],[-10539882.18524777,4590852.6385842236],[-10540137.924680511,4590853.613747132],[-10540355.439009205,4590854.4364614496],[-10540393.932822222,4590854.5120948981],[-10540650.242513863,4590854.8902832642],[-10540906.840836974,4590855.2632579785],[-10541163.669124145,4590855.6361060524],[-10541420.6653041,4590856.0039945394],[-10541676.419473458,4590854.2934017573],[-10541928.147418559,4590852.6042931462],[-10541932.018565133,4590852.5759413373],[-10542187.495116549,4590850.8456359589],[-10542438.662418606,4590849.1373227965],[-10542442.853532776,4590849.1008323329],[-10542698.000005947,4590847.3580634287],[-10542949.856600642,4590845.6318204431],[-10542953.04816658,4590845.6164392773],[-10543207.902705286,4590843.8645135881],[-10543449.717366144,4590842.1977674486],[-10543462.865464628,4590842.5906518744],[-10543462.13614727,4590910.7813544646],[-10543462.185281459,4591101.6186444126],[-10543462.251958596,4591360.3613655893],[-10543462.333453165,4591619.0595590519],[-10543462.415950192,4591877.6084161066],[-10543462.502151657,4592136.1394444965],[-10543462.587151175,4592394.7409179807],[-10543462.657538502,4592652.8085118588],[-10543462.728328867,4592910.5772588337],[-10543718.776401749,4592909.414532152],[-10543974.695627073,4592908.2459539911],[-10544230.503725072,4592907.0827183314],[-10544486.183075648,4592905.9107055264],[-10544741.721464744,4592904.7341132611],[-10544997.151930308,4592903.5503975321],[-10545252.479077626,4592902.3604487944],[-10545507.641636368,4592901.1638852973],[-10545764.435545316,4592902.3175398502],[-10546021.379726522,4592903.4663610663],[-10546278.234304706,4592904.6071683317],[-10546535.078971334,4592905.7402162338],[-10546792.015343042,4592906.8646145556],[-10547046.265531784,4592907.9704354238],[-10547049.139630234,4592907.9821443642],[-10547306.137472138,4592909.0916601308],[-10547510.739582287,4592909.970697117],[-10547548.178296724,4592905.4498312352],[-10547562.865248768,4592903.2536881426],[-10547817.163005134,4592904.5406612344],[-10548071.888858005,4592905.8240701351],[-10548326.906449255,4592907.1059510186],[-10548582.268940577,4592908.3813425768],[-10548837.843678143,4592909.6503729168],[-10549093.685325338,4592910.9132960755],[-10549349.819912232,4592912.1818145989],[-10549606.258251477,4592913.4435896724],[-10549862.932872998,4592913.8861704925],[-10550119.292929843,4592914.3231565766],[-10550375.378668623,4592914.7607806548],[-10550631.169165161,4592915.1911562104],[-10550886.62727649,4592915.6023263363],[-10551141.771123532,4592916.0047216062],[-10551396.630941231,4592916.4091541693],[-10551651.175193099,4592916.8072287673],[-10551906.892498309,4592917.9098786218],[-10552162.67978479,4592919.0055321185],[-10552418.537452945,4592920.1016942766],[-10552674.504147658,4592921.1908598067],[-10552930.949397448,4592922.2687012423],[-10553187.126336239,4592923.3406934384],[-10553443.433826448,4592924.4153563622],[-10553509.578121213,4592924.6919583837],[-10553698.353338204,4592922.2654026663],[-10553946.983956354,4592920.2428230392],[-10554197.402748058,4592918.1986065712],[-10554202.591364916,4592918.1550675388],[-10554448.244029641,4592916.1439565159],[-10554699.964630824,4592914.0788697619],[-10554705.790586663,4592914.038888122],[-10554951.554079769,4592912.0170912184],[-10555203.643308297,4592909.9366102945],[-10555207.993052352,4592909.9014724316],[-10555456.182358406,4592907.8437875314],[-10555709.197360387,4592905.7393859951],[-10555964.0588906,4592905.0054685287],[-10556219.036555495,4592904.264299552],[-10556474.03093976,4592903.5212223157],[-10556729.114727696,4592902.7722929809],[-10556984.293125406,4592902.0119145513],[-10557239.513872219,4592901.2458115565],[-10557494.809606057,4592900.4678779822],[-10557750.191339616,4592899.6842195373],[-10558006.983403679,4592899.4274308197],[-10558263.65993383,4592899.1637738077],[-10558520.259174379,4592898.8957923362],[-10558776.771213835,4592898.6236136863],[-10559033.091430917,4592898.3438040391],[-10559289.403338393,4592898.0591606405],[-10559545.570478065,4592897.765613894],[-10559801.994816005,4592897.4664683547],[-10560058.085885867,4592895.0913530644],[-10560214.363409309,4592893.6388917733],[-10560313.507880604,4592892.6218569363],[-10560341.246447178,4592892.3374943798],[-10560568.813624062,4592892.009160351],[-10560823.917631477,4592891.634336805],[-10560823.720222801,4593151.7033081381],[-10560823.523519376,4593411.271379563],[-10560823.511173818,4593414.8358196355],[-10560823.327107875,4593671.8047790043],[-10560823.14070401,4593932.7958565867],[-10560822.929799234,4594190.6544945166],[-10560822.718189627,4594448.9766790625],[-10560822.521108549,4594705.9705871269],[-10560822.325435508,4594962.2396971742],[-10560815.818688957,4594962.2561488505],[-10560816.840802133,4595221.4957490992],[-10560817.85951912,4595479.8645607261],[-10560818.86643027,4595737.3494129218],[-10560819.869444428,4595993.9898120388],[-10560820.885456394,4596252.6129629752],[-10560821.90985598,4596513.772928494],[-10560821.974823847,4596526.0388229275],[-10560822.948650535,4596777.4257446118],[-10560823.980815576,4597043.5831826255],[-10560829.406809464,4597043.6259121587],[-10561082.42709787,4597045.9466228383],[-10561330.678755147,4597048.2164571593],[-10561336.184741816,4597048.2616041685],[-10561465.182972316,4597049.4277375322],[-10561465.186914854,4597010.5319535974],[-10561589.768753795,4597008.001349532],[-10561842.975422127,4597002.8554969793],[-10561840.087600784,4597103.6466494827],[-10561839.714427125,4597247.1582432296],[-10561839.037589269,4597507.7145379689],[-10561839.019170363,4597518.9967435459],[-10561838.367178138,4597766.0441719433],[-10561837.674307656,4598028.2271786015],[-10561837.665038856,4598034.9411747502],[-10561837.001996666,4598286.2890710253],[-10561836.317362851,4598545.3402193161],[-10561836.284579769,4598550.55068345],[-10561835.637429215,4598805.0025579054],[-10561834.974299679,4599066.4480020115],[-10561582.21484305,4599065.5015198169],[-10561463.791545993,4599065.0549087934],[-10561329.590533672,4599065.6591929747],[-10561076.603094418,4599066.7955251532],[-10560823.454267904,4599067.9254939333],[-10560570.086787721,4599069.0448993286],[-10560316.679661516,4599070.1597227203],[-10560062.831723798,4599071.273911559],[-10559808.666017352,4599072.3845378654],[-10559807.966519972,4599329.8669596789],[-10559807.267728079,4599586.8246342978],[-10559806.56353027,4599843.7438966502],[-10559805.858933568,4600100.4886678727],[-10559805.430966759,4600254.8449168988],[-10559805.889293676,4600356.7876642914],[-10559806.279175388,4600443.6123294281],[-10559806.360907899,4600552.0256106351],[-10559806.02508037,4600612.6151409838],[-10559804.63259341,4600868.4672936937],[-10559803.524601694,4601071.9202255737],[-10559804.336579975,4601124.1952942163],[-10559548.552243242,4601124.3997860802],[-10559292.731964849,4601124.5970216179],[-10559036.936615404,4601124.7908197874],[-10558781.169699019,4601124.9764702674],[-10558781.601917746,4601378.809239977],[-10558782.033431696,4601633.091422921],[-10558782.475053681,4601887.7926240992],[-10558782.915570507,4602142.9354099687],[-10558783.384916918,4602398.5176488105],[-10558783.853959339,4602654.5133992974],[-10558784.310984086,4602910.9332605144],[-10558784.769306606,4603167.7785374187],[-10559040.266855258,4603169.2736893669],[-10559295.790834714,4603170.7647671625],[-10559551.361368444,4603172.2394196745],[-10559806.934305096,4603173.7083427878],[-10559807.349490365,4603432.5145818517],[-10559807.7644717,4603691.7472690707],[-10559808.187168682,4603950.2347779237],[-10559808.609768767,4604208.3695253376],[-10559809.030468678,4604466.2840528907],[-10559809.452171471,4604724.015020947],[-10559809.890499413,4604981.0952846818],[-10559810.329833176,4605237.6610667882],[-10559554.563605934,4605236.8233344164],[-10559298.476806654,4605235.9768153541],[-10559043.149989696,4605235.134243004],[-10558788.221335078,4605234.2869578972],[-10558532.831945775,4605233.4226082433],[-10558277.487108301,4605232.551763582],[-10558022.187623549,4605231.6786266668],[-10557766.953014225,4605230.7997588329],[-10557766.939154319,4605488.1790074203],[-10557766.926085118,4605746.6869944837],[-10557766.898505218,4606004.5259117987],[-10557766.870225333,4606262.279949937],[-10557766.866474433,4606519.9852762343],[-10557766.86402557,4606777.6392123103],[-10557766.848162115,4607035.1910578469],[-10557766.831698768,4607292.6611863188],[-10557510.913645627,4607290.670410797],[-10557255.036940679,4607288.672630013],[-10556999.149523472,4607286.6682261946],[-10556743.283931779,4607284.6583457338],[-10556487.316522097,4607282.6350911502],[-10556231.132461043,4607280.6024114154],[-10555975.407533241,4607278.571260483],[-10555719.89855635,4607276.5365433935],[-10555473.110784864,4607276.8221919229],[-10555226.23150716,4607277.1019809861],[-10554979.260623148,4607277.3731082082],[-10554896.346743086,4607277.462890245],[-10554732.187016008,4607278.0498172231],[-10554485.453702051,4607278.929698728],[-10554238.792672042,4607279.8027014583],[-10553992.240868807,4607280.6767230043],[-10553745.795589283,4607281.5441205064],[-10553488.678822517,4607281.9423865955],[-10553231.579075569,4607282.3333918778],[-10552974.851160537,4607282.706563252],[-10552718.360921534,4607283.0736199794],[-10552462.232102199,4607283.4386380808],[-10552206.380504839,4607283.7956307633],[-10551950.462029928,4607284.1388663109],[-10551695.00098625,4607284.4740762077],[-10551438.343551647,4607284.9779401701],[-10551327.739916988,4607285.1938644191],[-10551182.570444224,4607285.4476647945],[-10550926.359628659,4607285.9029958462],[-10550670.10125789,4607286.3533590231],[-10550413.593397554,4607286.7866533743],[-10550201.187248733,4607287.1421891637],[-10550156.986720759,4607287.3893646365],[-10549900.205833664,4607288.7893542405],[-10549643.323829127,4607290.1831022175],[-10549641.797128009,4607033.9732268834],[-10549640.266030472,4606776.9129930055],[-10549638.752155503,4606519.6124465009],[-10549637.237083809,4606261.8629758395],[-10549635.701389764,4606003.9692721898],[-10549634.165397542,4605745.8756890344],[-10549632.644724905,4605487.6181564406],[-10549631.122152096,4605229.1737626288],[-10549500.963831102,4605230.4019940756],[-10549376.500525212,4605231.2869902989],[-10549122.793262925,4605233.084501395],[-10549025.333008558,4605233.7610880965],[-10548867.821639681,4605234.1895822426],[-10548612.266443083,4605234.878975288],[-10548356.134977512,4605235.559581886],[-10548099.838620523,4605236.2343303775],[-10547842.835242759,4605236.9009294705],[-10547585.293439934,4605237.5607797382],[-10547584.615394616,4605496.2521335827],[-10547583.937651567,4605754.7594401119],[-10547583.267820906,4606012.9582497524],[-10547582.59879774,4606270.5205658106],[-10547581.933679137,4606528.08332597],[-10547581.27016882,4606785.0237951595],[-10547580.607762884,4607041.6648300318],[-10547580.115129808,4607232.538467749],[-10547580.878954677,4607296.9818810904],[-10547582.136077382,4607553.6666064942],[-10547583.4068886,4607813.0310730804],[-10547584.699343871,4608070.5675098374],[-10547585.989500726,4608327.7039918108],[-10547587.248624971,4608584.5204945095],[-10547587.730571417,4608683.1659772079],[-10547588.290985966,4608842.4702478787],[-10547588.373336328,4608866.3495259406],[-10547588.209159447,4609098.6686708182],[-10547588.028613685,4609355.3189999154],[-10547547.758674439,4609352.8784200205],[-10547332.885717656,4609352.7868955126],[-10547079.710077735,4609352.674317901],[-10546921.735612063,4609352.6121429717],[-10546838.024945281,4609352.2777605709],[-10546825.107612947,4609352.318520179],[-10546635.022819454,4609352.9334846614],[-10546570.306908697,4609353.3127213465],[-10546315.270530771,4609354.8323468873],[-10546060.688971976,4609356.3443286903],[-10545804.667871764,4609357.8547807354],[-10545547.794099465,4609359.3631938752],[-10545291.228790658,4609359.6483769026],[-10545033.833635563,4609359.9261696953],[-10545030.956053669,4609359.9357228605],[-10544775.589312058,4609360.2057455182],[-10544516.516343677,4609360.4741089055],[-10544259.172347277,4609360.7335552471],[-10544001.556541003,4609360.9861214235],[-10543744.314260826,4609361.2343561035],[-10543487.235967761,4609361.4780042926],[-10543486.875282817,4609617.303225006],[-10543486.513592178,4609873.6791014299],[-10543486.507422579,4609881.0430629207],[-10543486.161007375,4610130.6065666461],[-10543485.969221648,4610267.9818143565],[-10543486.586805398,4610388.0848980397],[-10543486.648993578,4610397.8211393831],[-10543486.812056199,4610435.8729831455],[-10543486.547368925,4610646.0494054286],[-10543486.223203789,4610904.5071339728],[-10543486.216533625,4610911.8714495394],[-10543485.884617982,4611163.4787645601],[-10543485.542324008,4611422.9296744801],[-10543229.966492338,4611421.142403109],[-10542973.793079361,4611419.34493702],[-10542717.99889824,4611417.5361299608],[-10542462.246163996,4611415.7210789984],[-10542206.590840422,4611413.8964709444],[-10541951.016809132,4611412.0652367231],[-10541695.523269169,4611410.2327284934],[-10541440.109019198,4611408.3948684121],[-10541440.750206083,4611150.9549792223],[-10541441.368599705,4610902.3946756171],[-10541441.374569949,4610894.0466400469],[-10541442.023257764,4610637.660764074],[-10541442.645535024,4610391.8840798885],[-10541442.67744795,4610381.8129847953],[-10541443.338341877,4610126.5042813644],[-10541443.978654016,4609878.8939496381],[-10541443.980110589,4609871.6698878603],[-10541444.615467945,4609617.3920757473]]]},"attributes":{"objectid":5334,"field_kid":"1000149645","approxacre":51789,"field_name":"MOUND CITY","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":9849.5900000000001,"maxoilwell":6,"lastoilpro":86.140000000000001,"lastoilwel":2,"lastodate":"7-2008","cumm_gas":50235,"maxgaswell":4,"lastgaspro":51,"lastgaswel":4,"lastgdate":"2-2009","avgdepth":334.47211399000003,"avgdepthsl":-585.19295010999997,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149645}},{"geometry":{"rings":[[[-10593007.693091353,4541940.4831557637],[-10593247.536377396,4541943.2096404396],[-10593274.513378939,4541944.8091024002],[-10593499.69375235,4541899.8782174103],[-10593736.523675833,4541852.6168000773],[-10593750.990155283,4541849.7218924826],[-10594001.276499311,4541799.7639204292],[-10594227.537807954,4541754.5954719977],[-10594238.889044529,4541754.6041971389],[-10594250.59869286,4541754.6238078289],[-10594498.96723769,4541754.8589255363],[-10594742.609754743,4541755.0839205347],[-10594747.84837109,4541755.083283565],[-10594997.364033304,4541755.3142231563],[-10595247.480685649,4541755.5380737912],[-10595501.824972898,4541745.8293821132],[-10595757.385456029,4541736.0690569226],[-10595775.508861562,4541735.368428546],[-10596014.245130045,4541726.2320357384],[-10596272.377665054,4541716.3475585291],[-10596273.419871975,4541972.1202521799],[-10596274.474731689,4542231.0438452],[-10596274.523414111,4542241.4486250263],[-10596275.551454071,4542493.0605951808],[-10596276.633820176,4542758.1449109372],[-10596277.65098894,4543013.1608210709],[-10596278.612421183,4543253.9922854658],[-10596278.65591364,4543265.713054819],[-10596279.674825545,4543515.8961303113],[-10596280.683296246,4543763.6801251667],[-10596027.872437133,4543772.7751594586],[-10595787.449400509,4543781.4168130802],[-10595776.7572244,4543781.7922130395],[-10595527.408139341,4543790.758885175],[-10595279.786237011,4543799.6569447862],[-10595276.623380467,4544028.9768854361],[-10595274.605732607,4544175.3108597668],[-10595274.259123992,4544265.7798703862],[-10595274.137488035,4544298.8468079828],[-10595273.78987219,4544401.157569197],[-10595273.66645702,4544509.8142687911],[-10595273.384383246,4544760.9481480252],[-10595273.330652935,4544813.2561073201],[-10595273.110847799,4545020.0670874938],[-10595272.970607795,4545151.6718040342],[-10595272.95718478,4545286.4779209113],[-10595272.955834087,4545325.4533897908],[-10595272.932373932,4545530.1016544029],[-10595273.375111662,4545560.3306248412],[-10595277.493322907,4545841.511940293],[-10595026.006121201,4545836.6717255553],[-10594770.787634574,4545831.7540242849],[-10594764.161625411,4545831.6279165996],[-10594513.895225551,4545826.808850375],[-10594254.638401326,4545821.8084737286],[-10594250.631099423,4545821.7319988273],[-10593997.072719207,4545816.8288626606],[-10593738.965915697,4545811.831147084],[-10593481.028406601,4545806.8292545946],[-10593222.898476556,4545801.8154616691],[-10592974.073304176,4545800.0842351252],[-10592725.312105309,4545798.3473103968],[-10592721.620665759,4545798.3198401015],[-10592476.497445103,4545796.6016486557],[-10592227.685688248,4545794.8507953798],[-10591980.558466129,4545793.1020913329],[-10591734.863889426,4545791.3569299811],[-10591489.652968179,4545789.6141737401],[-10591245.29642822,4545787.8706560927],[-10591245.400341261,4545563.0188414091],[-10591245.404636679,4545552.814230605],[-10591245.84823898,4545339.3465586118],[-10591246.343804691,4545114.1861025998],[-10591246.840977622,4544888.4242702527],[-10591247.334049793,4544662.2231671279],[-10591247.829832144,4544435.2303347383],[-10591248.303486064,4544208.5832796032],[-10591248.373056866,4544175.7804702809],[-10591253.666740572,4543981.8629001332],[-10591256.770046793,4543724.930512364],[-10591258.444719514,4543586.2460057158],[-10591261.544059113,4543517.3433661414],[-10591262.197920995,4543467.8516508816],[-10591265.665439622,4543210.4521362828],[-10591269.136559395,4542952.8154141251],[-10591272.595563782,4542695.0691055572],[-10591276.057168666,4542437.1270123096],[-10591279.528983003,4542179.0086428449],[-10591283.003097642,4541920.7079342473],[-10591533.101362634,4541923.5920038056],[-10591778.579621052,4541926.4169638371],[-10591781.952495134,4541926.4530366492],[-10592029.569610218,4541929.2933112234],[-10592271.18162781,4541932.0600471823],[-10592275.94279664,4541932.1235869732],[-10592521.823717646,4541934.9432303393],[-10592760.845860602,4541937.678576394],[-10592765.727167206,4541937.7251541587],[-10593007.693091353,4541940.4831557637]]]},"attributes":{"objectid":5364,"field_kid":"1000146314","approxacre":2730,"field_name":"SAVONBURG WEST","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146314}},{"geometry":{"rings":[[[-10604886.437395118,4619210.3966974793],[-10605143.760051407,4619212.9154054318],[-10605143.7183594,4619220.9254714102],[-10605142.187211333,4619473.1169963693],[-10605140.605058046,4619733.7839144655],[-10605140.561874257,4619739.9875686271],[-10605139.025905726,4619994.9126239428],[-10605137.449053664,4620256.4858141541],[-10605138.869368168,4620514.5506972605],[-10605140.289882978,4620772.6058517704],[-10605141.720307872,4621030.9033217272],[-10605143.151733093,4621289.3530708421],[-10604887.810073171,4621285.8299597334],[-10604632.104294473,4621282.2963931607],[-10604376.033996567,4621278.7477791291],[-10604119.618201321,4621275.1866686242],[-10603863.234743239,4621271.6216048896],[-10603607.272369437,4621268.0539879696],[-10603350.74124153,4621264.4711976973],[-10603092.449280839,4621260.8549529072],[-10603093.008826725,4621003.417415631],[-10603093.156166498,4620935.4378085984],[-10603093.614819869,4620747.0703598633],[-10603093.815107074,4620663.1893099546],[-10603092.439284727,4620488.5901148776],[-10603090.407766415,4620230.6756448289],[-10603091.140020106,4619971.4228317617],[-10603091.87528142,4619711.4087768979],[-10603092.592416562,4619452.3901835606],[-10603093.308848616,4619193.7944930801],[-10603348.762253661,4619196.0511252452],[-10603604.375545504,4619198.3011368318],[-10603860.120188385,4619200.5529333167],[-10604116.002789941,4619202.8010308314],[-10604372.558764383,4619205.3391275899],[-10604629.371434068,4619207.8733970299],[-10604886.437395118,4619210.3966974793]]]},"attributes":{"objectid":5405,"field_kid":"1000146325","approxacre":638,"field_name":"GARNETT WEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":16285,"maxoilwell":3,"lastoilpro":71,"lastoilwel":1,"lastodate":"12-1989","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146325}},{"geometry":{"rings":[[[-10625646.288740607,4592051.8376671914],[-10625902.758318819,4592050.2675701687],[-10625901.454350783,4592306.7993188752],[-10625900.148279818,4592563.4510225458],[-10625898.837703167,4592820.2205277719],[-10625897.525223771,4593077.1210728679],[-10625895.640587106,4593334.8164491337],[-10625893.756451214,4593592.3629233101],[-10625891.88112556,4593849.7732058857],[-10625890.007101662,4594107.0114111081],[-10625632.734355604,4594108.6120464057],[-10625374.946419694,4594110.2091226708],[-10625117.744053738,4594111.8025068343],[-10624860.762440221,4594113.3881298164],[-10624858.59341527,4594367.1962822508],[-10624856.61978911,4594598.2850871496],[-10624856.350892039,4594625.1786943916],[-10624856.318144578,4594628.1823563864],[-10624854.345040187,4594822.6992228515],[-10624853.914545547,4594883.4871455031],[-10624852.081488378,4595142.0874305135],[-10624595.166180594,4595142.3486380614],[-10624337.487498917,4595142.6041243756],[-10624080.338323351,4595142.8593533663],[-10623823.291665139,4595143.1074568462],[-10623826.083192047,4594885.1494820751],[-10623828.868810544,4594627.5405639298],[-10623831.659633538,4594370.2327134134],[-10623834.447952136,4594113.2414286947],[-10623836.858837159,4593856.6001457889],[-10623839.267918756,4593600.2462479044],[-10623841.666686738,4593344.3055237951],[-10623844.061548583,4593088.7377454462],[-10623846.324062018,4592832.2442679862],[-10623848.587877028,4592575.6438191077],[-10623850.856998269,4592318.9136383971],[-10623853.127721492,4592062.0578056527],[-10624109.322386065,4592060.6857483536],[-10624365.201889951,4592059.3082235903],[-10624620.772940818,4592057.9248497467],[-10624876.039242905,4592056.535753998],[-10625132.926299322,4592054.9722679053],[-10625389.678100819,4592053.4039494768],[-10625646.288740607,4592051.8376671914]]]},"attributes":{"objectid":5411,"field_kid":"1000146329","approxacre":798,"field_name":"INDIAN CREEK","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":42810.029999999999,"maxoilwell":9,"lastoilpro":68.920000000000002,"lastoilwel":3,"lastodate":"12-2004","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146329}},{"geometry":{"rings":[[[-10547547.863052862,4696710.8798149964],[-10547730.862116486,4696711.036040525],[-10547729.746721065,4696971.8355151303],[-10547728.63192657,4697232.6767589692],[-10547727.511228576,4697494.0300008887],[-10547726.388730921,4697755.759054184],[-10547725.779723406,4698017.3882973073],[-10547725.169217082,4698279.4728120361],[-10547724.538292434,4698542.3610658022],[-10547723.907468839,4698805.4001955893],[-10547547.974137718,4698804.0210198686],[-10547463.864449378,4698803.8295511203],[-10547203.370637409,4698803.2311137943],[-10546942.427310959,4698802.6451439643],[-10546797.369149199,4698802.3172060195],[-10546725.446906619,4698801.1475007348],[-10546680.906903019,4698798.773213475],[-10546681.647080889,4698709.2545138458],[-10546682.622502595,4698537.1401740331],[-10546684.100135548,4698276.4412792334],[-10546685.558943069,4698015.1551819453],[-10546687.017851425,4697754.0043119555],[-10546688.483268002,4697492.9973975625],[-10546689.948085604,4697232.2819556333],[-10546691.420812506,4696971.6280674133],[-10546692.893740891,4696711.1941712368],[-10546952.664148025,4696711.1018164596],[-10547212.245038202,4696711.0017516147],[-10547471.634309111,4696710.9095254764],[-10547547.863052862,4696710.8798149964]]]},"attributes":{"objectid":1509,"field_kid":"1005451582","approxacre":322,"field_name":"COFFEE CREEK","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":1090.4100000000001,"avgdepthsl":108.41,"polydate":1193788800000,"field_type":"GAS","field_kidn":1005451582}},{"geometry":{"rings":[[[-10579496.250607595,4770370.5365768522],[-10579757.891487455,4770370.6102884123],[-10579756.406902689,4770631.6427211184],[-10579754.92101513,4770893.2012678646],[-10579753.441533638,4771155.2669405248],[-10579751.958847197,4771417.8563489281],[-10579747.372611033,4771417.8167459257],[-10579488.36099215,4771416.607298879],[-10579223.736665241,4771415.3639475303],[-10579219.514544779,4771415.3353473386],[-10578958.242044801,4771414.1161971502],[-10578691.533338327,4771412.8636601334],[-10578432.813153196,4771411.4073462328],[-10578180.173410343,4771409.9780756505],[-10578175.425289383,4771409.9318709467],[-10577919.017344473,4771408.4648086661],[-10577668.895276377,4771407.0294495691],[-10577663.699143857,4771407.0066769673],[-10577664.949747534,4771146.3308737194],[-10577666.198348261,4770885.8781300886],[-10577667.432732133,4770625.6330249021],[-10577668.665213112,4770365.6323029632],[-10577926.170268685,4770366.7859449172],[-10578184.784490528,4770367.9391959878],[-10578444.61199745,4770369.1196266441],[-10578705.32801877,4770370.2972076721],[-10578969.861200335,4770370.3802309465],[-10579233.619096888,4770370.4569137814],[-10579496.250607595,4770370.5365768522]]]},"attributes":{"objectid":1578,"field_kid":"1000149616","approxacre":318,"field_name":"LEAVENWORTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":195135.48000000001,"maxoilwell":12,"lastoilpro":456.58999999999997,"lastoilwel":12,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149616}},{"geometry":{"rings":[[[-10564946.745955918,4728929.1619032277],[-10565198.285307178,4728928.9520803122],[-10565198.287484257,4728933.2962529641],[-10565198.206491731,4729189.5693871984],[-10565198.124468712,4729450.8619704368],[-10565198.127052668,4729454.1108244983],[-10565198.039838957,4729712.8019065419],[-10565197.95029979,4729975.3963367175],[-10565196.795939939,4730237.7808618676],[-10565195.643585688,4730499.6350621497],[-10565194.486128677,4730760.9962875079],[-10565193.331477929,4731021.8710755799],[-10565192.18564377,4731281.6729652816],[-10565191.041312607,4731541.2915895693],[-10565189.889574308,4731800.7101713186],[-10565188.739238782,4732059.9659619713],[-10565190.100081261,4732319.6588213211],[-10565191.428024655,4732572.718326577],[-10565191.45021495,4732578.7303229365],[-10565192.811264472,4732837.2082744818],[-10565194.133211961,4733088.3405901771],[-10565194.169814499,4733095.0845059659],[-10565195.518451728,4733353.1792039145],[-10565196.840388218,4733606.1403623633],[-10565196.864587456,4733611.0155805685],[-10565198.376614973,4733868.5563413138],[-10565199.886841949,4734125.8071401455],[-10564955.765235389,4734127.9865372516],[-10564710.986876143,4734130.1645216392],[-10564705.645051295,4734130.2102262462],[-10564465.701035289,4734132.3498624647],[-10564219.859958127,4734134.536240261],[-10564212.00795513,4734134.6111156745],[-10563973.805336418,4734136.7214594288],[-10563726.991844958,4734138.9020423358],[-10563720.679607511,4734138.9514957862],[-10563479.41067367,4734141.0725720115],[-10563231.048306977,4734143.2496866463],[-10562966.111743515,4734144.3303803662],[-10562700.798648532,4734145.4056603443],[-10562437.026019897,4734146.4800240491],[-10562174.148117287,4734147.5449646171],[-10561912.069230976,4734148.6008698074],[-10561650.571110709,4734149.6496761944],[-10561461.533570141,4734150.3986221915],[-10561461.507731114,4734172.982857273],[-10561389.439893132,4734175.1794615053],[-10561129.514545429,4734183.0981301805],[-10560938.100457719,4734188.989963091],[-10560870.888490809,4734190.523065459],[-10560616.687818531,4734196.314589194],[-10560612.395897383,4734196.3991072373],[-10560354.002618698,4734202.2630271455],[-10560101.367443174,4734207.9908277877],[-10560095.699944803,4734208.1043780036],[-10559838.54799108,4734213.9359193677],[-10559583.616083706,4734219.7114676731],[-10559580.782534773,4734219.7674689619],[-10559322.5470403,4734225.6163086435],[-10559063.432638912,4734231.4775408143],[-10559064.589581544,4733965.7252114732],[-10559065.748831132,4733698.9947776031],[-10559065.799130945,4733688.9634964187],[-10559066.930210251,4733431.3208797853],[-10559067.656439822,4733265.4686963586],[-10559066.951362751,4733162.7613795418],[-10559066.838293333,4733148.4199878629],[-10559065.019380702,4732892.9156715479],[-10559063.09230708,4732622.3459688546],[-10559063.031280257,4732612.0678992039],[-10559061.187561754,4732351.075541093],[-10559059.266100749,4732078.9139842503],[-10559059.85847407,4731818.4658458419],[-10559060.451346299,4731558.4401270421],[-10559061.034910481,4731297.8137769839],[-10559061.616671707,4731037.4237766666],[-10559062.215656996,4730776.039428683],[-10559062.506625729,4730648.7195725888],[-10559062.429799158,4730515.0394735839],[-10559062.419536341,4730503.3863032851],[-10559062.332085377,4730253.5948755024],[-10559062.321011782,4730220.4824177781],[-10559061.429546336,4729992.5347863557],[-10559382.0825458,4729991.7546181791],[-10559578.699494598,4729991.2694337713],[-10559680.898784241,4729991.0395040782],[-10559968.349679295,4729990.3466717051],[-10560093.340225616,4729990.043814552],[-10560254.021132337,4729989.6416082149],[-10560548.654670928,4729988.9079682352],[-10560606.200614018,4729988.7647083802],[-10560702.496528929,4729988.5069864355],[-10560827.876823457,4729988.0348478816],[-10561117.878247965,4729986.9427126497],[-10561121.184142027,4729986.9294023868],[-10561339.839981852,4729986.928379829],[-10561381.215165878,4729986.948619077],[-10561461.115763415,4729986.9856433729],[-10561461.101988137,4729978.6219346356],[-10561655.455348751,4729976.36805942],[-10561658.853949336,4729976.331799766],[-10561674.348933106,4729976.1380099459],[-10561927.729932932,4729974.7249401333],[-10562184.232515553,4729973.2869587],[-10562198.30756923,4729973.2027678555],[-10562460.820550149,4729971.7175437734],[-10562525.084004076,4729971.3531158054],[-10562712.314685047,4729970.3155794414],[-10562721.417031724,4729970.2481954796],[-10562980.157082725,4729968.8248906434],[-10562990.795792568,4729968.7670326391],[-10563236.995451061,4729967.4740591571],[-10563232.374324452,4729859.094567812],[-10563229.825508276,4729707.0657094447],[-10563225.621317655,4729456.2317805309],[-10563225.456775278,4729447.4952930389],[-10563221.127183015,4729188.6039489591],[-10563217.023477701,4728943.2092497107],[-10563216.808999782,4728930.3708706172],[-10563460.743720951,4728930.2191304397],[-10563705.27282449,4728930.0602944614],[-10563951.493770214,4728929.8931919979],[-10564199.034731286,4728929.7204048131],[-10564447.102697346,4728929.5460656434],[-10564696.354922922,4728929.3648828659],[-10564946.745955918,4728929.1619032277]]]},"attributes":{"objectid":1627,"field_kid":"1000152682","approxacre":4078,"field_name":"BONNER SPRINGS","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000152682}},{"geometry":{"rings":[[[-10598558.573683141,4749529.9253973393],[-10598558.061056264,4749268.8480694545],[-10598557.548627803,4749008.0672176722],[-10598557.04090631,4748747.0438161846],[-10598556.532784855,4748485.9528968735],[-10598813.659345429,4748488.7943774639],[-10599065.200246433,4748491.5666860351],[-10599070.221363463,4748491.6136490209],[-10599326.198715989,4748494.4192363713],[-10599581.603717024,4748497.2116560135],[-10599580.040874884,4748235.1796957245],[-10599578.482135285,4747973.5080325715],[-10599576.925796136,4747712.2210480012],[-10599575.373459149,4747451.3360178508],[-10599316.674935067,4747448.3592524249],[-10599058.162523055,4747445.3780950038],[-10598799.810093323,4747442.3991323821],[-10598541.599124832,4747439.4157782327],[-10598283.952695601,4747437.0050594443],[-10598027.145321785,4747434.5957532432],[-10597770.076650748,4747432.1619123574],[-10597513.118705932,4747429.7226467663],[-10597510.229997564,4747169.0974314064],[-10597507.385715371,4746912.2847230313],[-10597507.343390275,4746908.7040360728],[-10597504.459684975,4746648.5446380544],[-10597501.579682637,4746388.6081136456],[-10597758.944767889,4746390.6390473731],[-10598016.775883822,4746392.6673940364],[-10598275.087947506,4746394.6770116994],[-10598533.876353599,4746396.6844295841],[-10598792.436900439,4746398.6842313539],[-10599051.180155398,4746400.6801576493],[-10599310.085795313,4746402.6790527795],[-10599569.131695038,4746404.6726523954],[-10599824.46626574,4746407.2982746698],[-10600080.621470822,4746409.9258261891],[-10600085.420133654,4746409.9634836409],[-10600337.599312728,4746412.5268973429],[-10600595.392482903,4746415.1400994183],[-10600595.302970495,4746676.9040288134],[-10600595.213755807,4746939.0993608078],[-10600595.132251099,4747201.105976861],[-10600595.051847348,4747463.1666604886],[-10600595.847840546,4747725.380465989],[-10600596.649030156,4747989.1514542913],[-10600597.454437107,4748250.8988419091],[-10600598.257446446,4748511.8265133305],[-10600599.22043187,4748773.7562709209],[-10600600.180219293,4749034.7832244663],[-10600601.133304626,4749294.9239671398],[-10600602.082190663,4749554.1872143522],[-10600348.0012652,4749552.3727157917],[-10600094.390575321,4749550.5561459903],[-10599841.139795411,4749548.7350517642],[-10599588.298782231,4749546.9108535275],[-10599588.268676413,4749542.3546097856],[-10599331.702829735,4749539.2588574644],[-10599074.545609856,4749536.150711474],[-10598816.843369471,4749533.0448972257],[-10598558.573683141,4749529.9253973393]]]},"attributes":{"objectid":1638,"field_kid":"1000149127","approxacre":943,"field_name":"MCLOUTH SOUTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":409411.07000000001,"maxoilwell":29,"lastoilpro":1232.05,"lastoilwel":23,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":1512.5555555599999,"avgdepthsl":401.77777778000001,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149127}},{"geometry":{"rings":[[[-10575005.207909135,4694394.8104588082],[-10575004.460794142,4694137.5554420222],[-10574748.694379348,4694137.1225728374],[-10574493.348648585,4694136.6831494803],[-10574492.187755406,4693879.7695438163],[-10574491.025961583,4693622.9347475069],[-10574489.859462824,4693366.1937842453],[-10574488.691563092,4693109.5754209813],[-10574487.537581509,4692853.3424626077],[-10574486.381294824,4692596.6873178342],[-10574483.005628474,4692335.5150343543],[-10574479.63667286,4692074.8878836054],[-10574476.24548989,4691813.9646724425],[-10574472.854707239,4691553.0320933834],[-10574730.133581515,4691553.316245554],[-10574987.55401866,4691553.5939752022],[-10575245.084983004,4691553.8737592809],[-10575502.736490652,4691554.1464461936],[-10575502.775460683,4691558.6776812971],[-10575748.235153517,4691558.2640328854],[-10575994.638326032,4691557.8417735444],[-10576241.95023855,4691557.420793077],[-10576490.165985394,4691556.9917156613],[-10576739.313098114,4691556.5630179336],[-10576989.360741399,4691556.127250785],[-10577240.309916316,4691555.6701577595],[-10577492.180846076,4691555.2053530049],[-10577492.17890965,4691548.4512747414],[-10577492.473638289,4691290.0796441166],[-10577492.762688287,4691037.2055836804],[-10577492.78188445,4691032.1106469966],[-10577493.095839338,4690774.5709654512],[-10577493.408094432,4690517.4563288931],[-10577751.182259379,4690518.1823232574],[-10578008.82116936,4690518.9013835508],[-10578266.345948642,4690519.627250935],[-10578523.789935298,4690520.3452849602],[-10578781.087454123,4690521.0485511692],[-10579038.235802067,4690521.7434707275],[-10579295.224467065,4690522.4238793841],[-10579552.119324557,4690523.0973537238],[-10579552.027786206,4690782.4339443101],[-10579551.996637996,4690868.5774250589],[-10579552.127073169,4691043.3112329636],[-10579552.328874364,4691303.511941094],[-10579552.530275108,4691563.7284180392],[-10579552.73017432,4691823.9977841545],[-10579552.929072632,4692084.3344292045],[-10579553.112152947,4692344.7076598825],[-10579553.183182145,4692444.3233351158],[-10579553.15987871,4692605.1606388818],[-10579296.084754722,4692602.8130406514],[-10579039.530926798,4692600.4641549867],[-10578782.216728561,4692598.1038424131],[-10578524.614200078,4692595.7351827743],[-10578266.668278363,4692593.3595893607],[-10578008.408296945,4692590.9741076585],[-10577749.829950828,4692588.562809974],[-10577490.916020386,4692586.1414956935],[-10577489.837988421,4692843.0798692862],[-10577488.756957753,4693100.925717718],[-10577488.750173962,4693105.6584165869],[-10577487.6852422,4693359.6295247693],[-10577486.59751272,4693619.1749129156],[-10577239.232777072,4693618.9996187808],[-10576992.061362498,4693618.8195702732],[-10576745.392923091,4693618.6197352987],[-10576499.137255769,4693618.4152730033],[-10576498.938809851,4693877.1633623643],[-10576498.739167068,4694136.7550050681],[-10576498.541330764,4694397.1766476762],[-10576498.343498958,4694658.4404307241],[-10576252.936463805,4694656.6123141199],[-10576007.741070392,4694654.7798281014],[-10575762.747107111,4694652.9551779265],[-10575517.983707212,4694651.1256443141],[-10575378.919392103,4694652.2827190803],[-10575261.739953831,4694652.0739372065],[-10575009.297768034,4694651.6222965587],[-10575005.952819034,4694651.6242417572],[-10575005.207909135,4694394.8104588082]]]},"attributes":{"objectid":1676,"field_kid":"1000149146","approxacre":1822,"field_name":"LONGANECKER SOUTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":482857.84000000003,"maxoilwell":80,"lastoilpro":734.23000000000002,"lastoilwel":65,"lastodate":"2-2009","cumm_gas":32969,"maxgaswell":1,"lastgaspro":170,"lastgaswel":1,"lastgdate":"11-1993","avgdepth":899.51999999999998,"avgdepthsl":-118.08,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149146}},{"geometry":{"rings":[[[-10554593.640453076,4692581.3549136315],[-10554853.316394288,4692584.2353885816],[-10554853.334633825,4692842.7248799289],[-10554853.353540592,4693095.8657185659],[-10554853.338152261,4693100.558357507],[-10554853.375205291,4693357.7582517704],[-10554853.410713241,4693608.0485922033],[-10554853.416559227,4693614.3197617922],[-10554593.846656321,4693612.7590028318],[-10554334.361150475,4693611.1919488469],[-10554075.02291408,4693609.6274634236],[-10553815.829644449,4693608.0582242133],[-10553815.685155608,4693350.1855052253],[-10553815.539661439,4693091.6567417243],[-10553815.404475084,4692832.4927929481],[-10553815.268283535,4692572.6926797787],[-10554074.616347639,4692575.5838161316],[-10554334.090256484,4692578.4691721313],[-10554593.640453076,4692581.3549136315]]]},"attributes":{"objectid":1725,"field_kid":"1000149133","approxacre":159,"field_name":"BONITA STATION","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149133}},{"geometry":{"rings":[[[-10597114.797745395,4683510.8023240613],[-10597112.798172414,4683253.1777860671],[-10596855.807476899,4683253.264087216],[-10596599.742041677,4683253.3426841516],[-10596344.000677833,4683253.4103714656],[-10596088.780611368,4683253.4707414778],[-10596085.665756052,4682998.3700736612],[-10596082.674133336,4682753.5237558344],[-10596082.54709563,4682744.1444147993],[-10596079.446855554,4682490.8191067977],[-10596076.357226914,4682238.3582818517],[-10596075.66585304,4681978.144774776],[-10596074.97407892,4681717.6902677678],[-10596074.277599592,4681457.0141537264],[-10596073.581921374,4681196.1155513786],[-10596072.902361825,4680934.9804928014],[-10596072.222602256,4680673.6011699475],[-10596071.539539086,4680412.0045434246],[-10596070.85397324,4680150.1846001549],[-10596070.526014864,4679891.1552301487],[-10596070.197455913,4679631.9883744353],[-10596070.189850012,4679628.6350064343],[-10596070.04436717,4679528.723233589],[-10596070.045299238,4679372.6813487494],[-10596070.042714091,4679113.2305720095],[-10596070.030904287,4679108.7859821338],[-10596070.031419151,4678853.5622975565],[-10596070.030035604,4678593.8572769137],[-10596070.035044467,4678590.1408559689],[-10596070.020743057,4678334.084856675],[-10596070.00932255,4678104.7224764498],[-10596070.018658618,4678074.5090119578],[-10596305.374272142,4678073.8732711589],[-10596328.380036358,4678073.8126365114],[-10596586.915813945,4678073.1371677127],[-10596822.715536412,4678072.5043753861],[-10596845.666738054,4678072.500049457],[-10597104.636011884,4678072.4525660649],[-10597332.571021067,4678072.3907146864],[-10597364.045189859,4678072.3837888511],[-10597623.623061161,4678072.3103933996],[-10597844.598695038,4678072.2443375262],[-10597883.354108,4678072.234560295],[-10598143.253948271,4678072.1627027281],[-10598358.933513323,4678071.6647991249],[-10598402.686853888,4678071.5681660092],[-10598661.992713906,4678070.9899195628],[-10598875.660173131,4678070.493050376],[-10598921.089334238,4678070.3003397938],[-10599179.946080036,4678069.1972339284],[-10599397.246102471,4678068.286566521],[-10599438.583574573,4678068.1083665844],[-10599679.002290703,4678067.0671597831],[-10599696.77565844,4678067.2988628699],[-10599916.931950936,4678070.0286076581],[-10599940.354592567,4678070.3282684525],[-10599954.706439255,4678070.6229637358],[-10600212.55131989,4678075.9236340877],[-10600212.812590893,4678337.3668354694],[-10600213.070660641,4678596.0473474246],[-10600213.328428995,4678855.9364850847],[-10600213.585897071,4679115.7548922179],[-10599955.43956985,4679114.2856487306],[-10599697.387450581,4679112.8121717814],[-10599438.35040262,4679111.3325417144],[-10599178.696147352,4679109.8421389665],[-10598919.3265172,4679109.5711488891],[-10598659.560632957,4679109.2942596674],[-10598400.102701617,4679109.014675294],[-10598140.665794378,4679108.728420347],[-10598139.990799172,4679367.5365809528],[-10598139.653802168,4679496.9155429192],[-10598139.076329626,4679626.2520170445],[-10598137.8841419,4679884.8916558856],[-10598136.691353524,4680143.4930799929],[-10598394.038464002,4680143.4609187981],[-10598653.528830577,4680143.4236166747],[-10598913.494642014,4680143.3650161307],[-10599174.389017556,4680143.2996121189],[-10599384.941804398,4680142.1613975866],[-10599435.512355901,4680142.7529863808],[-10599695.804838995,4680145.7942879107],[-10599955.345560607,4680148.821353049],[-10599956.795221848,4680148.8389226943],[-10600214.213110454,4680152.2013514983],[-10600468.397196375,4680151.9762534043],[-10600723.836720984,4680151.7442221576],[-10600980.453594817,4680151.4851163421],[-10601238.228796061,4680151.2168968422],[-10601495.105367497,4680150.9636913519],[-10601752.580424786,4680150.7036838522],[-10602009.700875713,4680150.4339277633],[-10602266.790791655,4680150.1591684688],[-10602266.945037488,4680409.5273189265],[-10602267.094886208,4680659.993962354],[-10602267.102387395,4680668.3174122898],[-10602267.260138262,4680926.5544233713],[-10602267.412192451,4681173.7335234908],[-10602267.428101325,4681184.2399781598],[-10602267.586453874,4681441.3753181119],[-10602267.739107786,4681689.6420135275],[-10602267.746408746,4681697.9655340752],[-10602267.901558612,4681953.9972403534],[-10602268.058110569,4682209.4945185678],[-10602267.066943565,4682469.197365405],[-10602266.073373135,4682729.6604735954],[-10602266.034317557,4682741.8236544086],[-10602265.07689872,4682990.8795383852],[-10602264.071313247,4683252.8041841788],[-10602264.016936982,4683268.4814239303],[-10602263.076839877,4683515.4455020465],[-10602262.074556857,4683778.8828598717],[-10602262.03470036,4683791.046522636],[-10602261.07017076,4684043.085389398],[-10602260.054871481,4684308.060465876],[-10602004.824495757,4684307.7305841716],[-10601753.1009386,4684307.3985035019],[-10601750.143149201,4684307.3801647834],[-10601496.016137853,4684307.0480958251],[-10601242.44446288,4684306.7089652512],[-10600987.519036615,4684306.3643224854],[-10600732.389276199,4684306.0137769012],[-10600477.056783488,4684305.6428256454],[-10600221.511446867,4684305.2655865662],[-10599962.756733274,4684304.0385995954],[-10599705.053324394,4684302.8087840052],[-10599446.293204602,4684301.5680644112],[-10599187.167165494,4684300.3182342788],[-10598927.682715684,4684299.0539031243],[-10598667.469931254,4684297.781233266],[-10598407.926714106,4684296.4944424126],[-10598148.579221241,4684295.2026452767],[-10597890.640142538,4684293.656977741],[-10597634.575912258,4684292.1174616842],[-10597377.670117615,4684290.5683240937],[-10597120.853425069,4684289.0136674289],[-10597118.825521871,4684028.7495225975],[-10597116.804525873,4683769.323646673],[-10597114.797745395,4683510.8023240613]]]},"attributes":{"objectid":1735,"field_kid":"1000148261","approxacre":4616,"field_name":"NORWOOD","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":308473.19,"maxoilwell":91,"lastoilpro":230.56,"lastoilwel":38,"lastodate":"2-2009","cumm_gas":5179,"maxgaswell":2,"lastgaspro":202,"lastgaswel":2,"lastgdate":"10-1991","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000148261}},{"geometry":{"rings":[[[-10549741.801549809,4651396.74476544],[-10549746.942605907,4651154.3699122462],[-10549487.405156223,4651153.9799688924],[-10549227.184118878,4651153.5813280316],[-10549219.400450209,4651153.5644601397],[-10548966.263375292,4651153.1806420153],[-10548704.658843806,4651152.7798297117],[-10548694.184074355,4651152.7792151934],[-10548443.033688556,4651152.3801688179],[-10548180.165601131,4651151.9550531534],[-10548171.298083611,4651151.9346058564],[-10547916.302667389,4651151.5166353136],[-10547650.737372106,4651151.0747674918],[-10547654.973460441,4650891.1231374145],[-10547659.211651238,4650631.0570890233],[-10547659.276824988,4650627.2712380104],[-10547663.445737341,4650370.8863527877],[-10547664.529862797,4650304.1764273131],[-10547665.81552822,4650110.632868208],[-10547665.85747066,4650105.3561565205],[-10547667.560148021,4649850.3340226198],[-10547669.299061405,4649589.9566030754],[-10547671.04558379,4649329.5723697739],[-10547672.790304296,4649069.1461503645],[-10547548.445585798,4649071.5065868925],[-10547413.842142846,4649071.5023478046],[-10547154.703571672,4649071.4882110106],[-10546895.057320237,4649071.4504071074],[-10546644.454504604,4649071.4064321565],[-10546634.978174206,4649071.5628824197],[-10546375.416624179,4649076.1937263645],[-10546115.823537763,4649080.8186878981],[-10545856.522785094,4649085.4128296999],[-10545597.430970874,4649089.9964871639],[-10545598.905327592,4648829.2406634353],[-10545600.38919377,4648567.0118594458],[-10545600.44595186,4648559.2793450365],[-10545601.906296479,4648303.2628685413],[-10545603.419092838,4648038.014909151],[-10545603.484360473,4648030.0818817532],[-10545342.256139625,4648030.5586399185],[-10545081.330264244,4648031.0281115221],[-10544820.230490102,4648031.4890127853],[-10544559.095175302,4648031.9427518938],[-10544298.2665109,4648032.4010980893],[-10544037.421427699,4648032.8529217765],[-10543777.014244866,4648033.2803233108],[-10543516.911810249,4648033.7018450834],[-10543517.798570737,4647771.7788623348],[-10543518.65660366,4647518.978353316],[-10543518.669613494,4647510.3581131408],[-10543519.551869268,4647249.4097636202],[-10543520.432623535,4646988.9359513381],[-10543522.177765843,4646729.2829253506],[-10543523.922908014,4646469.62138707],[-10543523.957544645,4646464.5878441408],[-10543525.686771451,4646209.9717956632],[-10543527.450234307,4645950.3349171216],[-10543527.51560499,4645943.4909759965],[-10543529.228113437,4645690.5864717402],[-10543530.98797184,4645430.8319484536],[-10543531.025812075,4645425.7200286547],[-10543532.760344377,4645171.025576775],[-10543534.531615509,4644911.1965100029],[-10543795.520347992,4644909.9163754918],[-10544056.309452336,4644908.6309972396],[-10544059.318089163,4644908.626806437],[-10544316.897126507,4644907.3678628122],[-10544577.285873333,4644906.0878503956],[-10544581.336300224,4644906.0845642947],[-10544837.511733992,4644904.7996540712],[-10545097.539768554,4644903.4895936605],[-10545100.548405385,4644903.4856585469],[-10545357.360366091,4644902.2093201047],[-10545616.949999683,4644900.9121682607],[-10545875.395628262,4644901.6966438983],[-10546133.712109361,4644902.4744703453],[-10546391.948298784,4644903.2372100223],[-10546650.074762922,4644903.9939399417],[-10546908.154273458,4644904.7372454321],[-10547166.076304147,4644905.4736457579],[-10547423.868386447,4644906.2108121263],[-10547547.824484594,4644906.563943224],[-10547681.564787382,4644907.8309515761],[-10547939.752274569,4644909.170740406],[-10548197.684967602,4644910.5047765635],[-10548455.261149099,4644911.8283298118],[-10548712.523167934,4644913.1421671622],[-10548969.469922841,4644914.4473114079],[-10549226.07858748,4644915.7446575379],[-10549482.373389816,4644917.0321599105],[-10549738.351226257,4644918.3119919812],[-10549737.551061435,4644659.2847791323],[-10549736.750596065,4644400.1238653362],[-10549736.74648965,4644397.0619018851],[-10549735.963045411,4644140.8347577276],[-10549735.169187307,4643881.4379197694],[-10549735.165781129,4643877.3325831983],[-10549734.393750777,4643622.8247400485],[-10549733.605899347,4643363.3856525822],[-10549733.574660869,4643358.955452065],[-10549732.783007007,4643103.3107982632],[-10549732.185110826,4642909.9020379186],[-10549732.248847175,4642842.0242524911],[-10549730.37564159,4642580.9509215476],[-10549728.511146463,4642321.1212470029],[-10549726.657262623,4642060.0267905267],[-10549724.799874237,4641798.5149038341],[-10549722.936679235,4641537.6485909428],[-10549721.065373886,4641275.4910619492],[-10549721.028129095,4641272.2701484822],[-10549719.769377211,4641094.0968779828],[-10549718.542415746,4641013.4015762918],[-10549714.503504517,4640747.7980976691],[-10549973.672921345,4640750.2103209607],[-10550233.656578202,4640752.6243327968],[-10550236.260385355,4640752.6440102253],[-10550363.533273535,4640753.8295498546],[-10550493.172693659,4640751.815934428],[-10550752.333197674,4640747.7853823584],[-10550756.625154441,4640747.7085706266],[-10550863.32107755,4640746.0451508109],[-10551011.298877379,4640744.4044258669],[-10551270.341246206,4640741.5258415025],[-10551527.929836465,4640738.6664295616],[-10551784.438379774,4640735.8131542411],[-10552047.751882387,4640735.1674386924],[-10552086.002858719,4640735.0732028186],[-10552311.633441485,4640732.4690451799],[-10552316.846061584,4640732.4267376168],[-10552576.030996969,4640729.4684118265],[-10552840.932735192,4640726.4378743665],[-10552847.831202321,4640726.340228538],[-10553105.904755032,4640723.3744940674],[-10553371.677299857,4640720.3146921424],[-10553377.171745483,4640720.243757762],[-10553637.633957773,4640717.2318876479],[-10553905.628970275,4640714.1251836084],[-10553906.18536786,4640456.4222306069],[-10553906.743668644,4640197.1885583689],[-10553906.738665337,4640193.0830365261],[-10553907.268531082,4639937.6220320575],[-10553907.808511503,4639677.3370248312],[-10554165.367843986,4639676.8218814489],[-10554422.392458845,4639676.301371824],[-10554678.856325988,4639675.7922356827],[-10554934.766954107,4639675.2773499684],[-10555190.990643948,4639674.7614416759],[-10555447.46402231,4639674.2378661064],[-10555704.107797606,4639673.7039399035],[-10555960.961715735,4639673.163496526],[-10555961.293197801,4639930.8179675126],[-10555961.625380944,4640188.2060753824],[-10555961.955662178,4640445.3166821348],[-10555962.287144996,4640702.2269562073],[-10555966.254525689,4640959.9789580815],[-10555970.130707359,4641211.8775368128],[-10555970.207990289,4641217.2737651784],[-10555974.144034768,4641474.1008631047],[-10555977.969759665,4641723.805946161],[-10555978.081280643,4641730.4534428744],[-10555982.002807764,4641986.8507719543],[-10555985.845048949,4642238.0175107438],[-10555985.938751262,4642243.0130648017],[-10555989.849965991,4642498.8977402272],[-10555993.75637495,4642754.5095069166],[-10555992.311803745,4643012.7470504018],[-10555991.524929922,4643153.5637407834],[-10555993.619007863,4643271.8506112536],[-10555993.8398483,4643284.1390458141],[-10555992.895567046,4643531.8961947886],[-10555991.901012333,4643792.9021505062],[-10555991.838622106,4643808.4014112949],[-10555990.89934881,4644054.5492109694],[-10555989.897083484,4644317.2708087545],[-10555989.851817295,4644329.147567153],[-10555988.901224777,4644580.7780968249],[-10555988.666581305,4644642.69617684],[-10555989.543454485,4644845.7575505236],[-10556249.137071785,4644841.9574445579],[-10556505.228548881,4644838.2037552567],[-10556761.724493179,4644834.4439301211],[-10557017.341624044,4644830.6906283777],[-10557272.247334603,4644826.9428269248],[-10557528.008632882,4644823.1754648304],[-10557530.698035961,4644823.1163943419],[-10557785.357063008,4644819.3428990878],[-10558042.249067022,4644815.5297686839],[-10558300.355468838,4644813.8651211541],[-10558557.44760064,4644812.2017542394],[-10558813.532470539,4644810.5259882128],[-10558838.5142945,4644810.3626828445],[-10559068.609077996,4644808.5345680919],[-10559325.347703444,4644806.4949469613],[-10559582.15030301,4644804.4476553798],[-10559838.981235608,4644802.3773516826],[-10560095.852314835,4644800.2998889834],[-10560098.791302614,4645061.81526965],[-10560101.740099374,4645324.1644087583],[-10560101.903255347,4645338.1437420649],[-10560104.699806323,4645587.3740926282],[-10560107.663415391,4645851.4382503135],[-10560107.866204565,4645870.8159544421],[-10560110.621015633,4646116.142519895],[-10560113.600438798,4646381.63898532],[-10560113.749177109,4646396.0224155309],[-10560116.599182004,4646647.9197802814],[-10560119.621149702,4646915.0132261431],[-10560124.625022335,4647173.470781873],[-10560129.642108021,4647432.573489354],[-10560129.764534352,4647438.9836295927],[-10560134.657289302,4647692.3247226113],[-10560139.687786004,4647952.7407726645],[-10560139.856861509,4647961.1241522888],[-10560144.725888876,4648213.9720892385],[-10560146.116524549,4648286.2161420742],[-10560149.748571986,4648475.7523326008],[-10560154.753432397,4648738.1599456714],[-10560159.768502746,4649001.0463567758],[-10560163.985560549,4649260.5262847599],[-10560167.03573996,4649448.1505278936],[-10560168.292220518,4649520.2270263787],[-10560168.444172589,4649530.1429870697],[-10560172.777986184,4649779.971699046],[-10560177.284875438,4650039.7745048823],[-10560177.380774407,4650044.732927247],[-10560181.76333111,4650299.6552755712],[-10560181.837706741,4650303.9921504213],[-10560185.082017366,4650560.2331054704],[-10560185.142086176,4650564.0226393761],[-10560188.34574998,4650819.5955532817],[-10560191.594064793,4651078.6586925648],[-10559935.035647474,4651074.5496360408],[-10559680.160970153,4651070.461173364],[-10559538.838832812,4651068.1836362854],[-10559423.572818402,4651066.5300670294],[-10559166.419815715,4651062.8339659981],[-10558910.673433729,4651059.1530862013],[-10558653.02916484,4651055.4376718476],[-10558650.422861744,4651055.4198962059],[-10558394.085598774,4651051.7197033428],[-10558132.101529231,4651047.9313834561],[-10557871.414454011,4651047.1691780025],[-10557614.638685556,4651046.4122082368],[-10557356.213416457,4651045.6575451456],[-10557098.018913241,4651044.8984041],[-10556842.07009759,4651044.1224992685],[-10556824.183087381,4651044.0689406339],[-10556600.907819683,4651045.3033322608],[-10556584.980067015,4651045.265759822],[-10556582.170629857,4651045.2807340156],[-10556327.47686033,4651044.8585446356],[-10556067.168421324,4651044.4197381791],[-10556064.859672643,4651303.3869109619],[-10556062.556029866,4651561.774438804],[-10556060.249984363,4651820.0497590331],[-10556057.944940042,4652078.0672674961],[-10556055.654312342,4652335.4276338927],[-10556053.367989637,4652592.3709643083],[-10556051.069653103,4652848.8798263269],[-10556048.776822943,4653104.9297483452],[-10555789.589996096,4653104.5339907296],[-10555534.148985052,4653104.1400152091],[-10555530.937885327,4653104.137975893],[-10555272.815384744,4653103.7107392596],[-10555019.523149434,4653103.2827229826],[-10555015.229402313,4653103.2815820174],[-10554758.207770107,4653102.8615080379],[-10554504.89571194,4653102.4412969565],[-10554501.72485858,4653102.4413047899],[-10554245.779065901,4653101.9916710649],[-10553990.390315017,4653101.5364060607],[-10553990.383739023,4653361.4144501118],[-10553990.375461029,4653620.9054862419],[-10553990.359774435,4653879.9675134365],[-10553990.34318676,4654138.6482304456],[-10553713.625372123,4654140.3966815406],[-10553436.361127965,4654142.1407835064],[-10553157.998017805,4654143.9042114085],[-10552878.724358607,4654145.6639309218],[-10552598.904570242,4654147.4157182518],[-10552318.155411154,4654149.1663565664],[-10552037.072467532,4654150.902535893],[-10551755.459112845,4654152.6361575685],[-10551497.231201047,4654153.4355691848],[-10551239.235757105,4654154.2274303008],[-10550981.491702799,4654154.9934417326],[-10550724.016057748,4654155.7507508742],[-10550466.767574469,4654156.663154332],[-10550209.748155117,4654157.5660878373],[-10549952.980726106,4654158.4632623233],[-10549696.443061829,4654159.3528863313],[-10549696.510537604,4654152.3427796597],[-10549698.723415727,4653897.8854653724],[-10549700.999865072,4653636.092153715],[-10549701.039509267,4653630.8135686805],[-10549703.25989545,4653373.9523753393],[-10549705.527134081,4653111.4871409852],[-10549710.758892771,4652864.595892502],[-10549715.853195017,4652624.2472721739],[-10549715.959515862,4652618.3266595826],[-10549721.144821577,4652372.7168847574],[-10549726.151523974,4652135.6187552223],[-10549726.332730556,4652127.728649999],[-10549731.50662367,4651883.4266471257],[-10549736.540657565,4651645.6878879583],[-10549736.646577954,4651639.7682247926],[-10549741.801549809,4651396.74476544]]]},"attributes":{"objectid":2019,"field_kid":"1000149892","approxacre":20654,"field_name":"BLOCK","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":169143.73000000001,"maxoilwell":56,"lastoilpro":318.29000000000002,"lastoilwel":28,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":472.27272727000002,"avgdepthsl":-448.40909090999997,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149892}},{"geometry":{"rings":[[[-10556742.908083452,4729998.4252024116],[-10556963.240832791,4730002.3579080412],[-10556964.036587093,4730156.0365540227],[-10556964.817184327,4730265.6207598886],[-10556966.679169869,4730527.1127533549],[-10556968.523134233,4730788.6771307224],[-10556970.362294933,4731049.6698530344],[-10556970.554215819,4731076.9665445462],[-10556972.141203281,4731223.5452968469],[-10556972.721249375,4731311.3168439409],[-10556974.445877874,4731572.392160519],[-10556976.167504812,4731832.8903369745],[-10556977.885829445,4732092.9220978497],[-10556979.259342115,4732357.4161792453],[-10556980.619748939,4732619.341241478],[-10556980.624543196,4732622.4274609704],[-10556981.998051587,4732888.0027965587],[-10556983.348949965,4733149.1581348674],[-10556983.366452137,4733154.0741372881],[-10556984.737456327,4733419.9208488744],[-10556985.359630667,4733540.5064272881],[-10556985.537420794,4733681.5833675619],[-10556985.533500176,4733686.0097953621],[-10556985.910562729,4733952.3230670402],[-10556986.28822485,4734218.9352273997],[-10556725.91049704,4734219.5391815985],[-10556466.250091763,4734220.1331982045],[-10556205.942644725,4734220.7273494182],[-10555945.444078676,4734221.3153113266],[-10555684.439832993,4734221.8878002511],[-10555423.18119574,4734222.455132232],[-10555161.325774368,4734223.0188580193],[-10554898.976787208,4734223.5766550964],[-10554851.95547599,4734223.8623650214],[-10554640.524071617,4734222.6786407735],[-10554381.293766038,4734221.2207389586],[-10554122.917439327,4734219.7722454434],[-10553864.845761709,4734218.3175586462],[-10553607.158824975,4734216.8721552435],[-10553350.417672401,4734215.4236484468],[-10553092.324669743,4734213.964577564],[-10552833.645795196,4734212.4957097881],[-10552833.184032811,4733948.3796858713],[-10552832.745065212,4733696.6576161804],[-10552832.7116544,4733685.7698492771],[-10552832.246480109,4733424.7789294785],[-10552831.80399693,4733177.59384502],[-10552831.782102697,4733165.3677248424],[-10552831.316520218,4732907.39541688],[-10552830.872033898,4732660.5070673423],[-10552830.868754243,4732650.9618378421],[-10552830.417880904,4732396.0139993243],[-10552829.970808024,4732142.5939560849],[-10552828.294848586,4731879.9874106683],[-10552826.615386028,4731616.9389515305],[-10552826.563552815,4731606.5396734802],[-10552824.96015216,4731353.4506758461],[-10552823.286598163,4731089.5230050869],[-10552823.219053974,4731076.3228307813],[-10552821.628162419,4730825.1495264722],[-10552821.521082319,4730808.1991157951],[-10552820.067239515,4730560.3127394067],[-10552819.995582189,4730550.4427791284],[-10552818.485894075,4730295.0397561453],[-10552816.915361904,4730029.3442766285],[-10553075.16865016,4730026.4650257193],[-10553333.359667372,4730023.5784272617],[-10553591.530261515,4730020.7047220552],[-10553849.682334822,4730017.8221218018],[-10554108.054060634,4730014.9295928637],[-10554363.49432251,4730012.0641662078],[-10554366.284324473,4730012.0487979855],[-10554624.404662639,4730009.139383479],[-10554882.241976412,4730006.2253309367],[-10555141.930509372,4730005.1419893019],[-10555401.943214539,4730004.0491042305],[-10555447.686912533,4730003.875786921],[-10555662.062041596,4730002.9745254684],[-10555922.369084889,4730001.87416007],[-10555997.114867404,4730001.5768029112],[-10556182.515944414,4730000.8003546493],[-10556442.592423389,4729999.7064376976],[-10556549.168936837,4729999.2677382557],[-10556702.760507686,4729998.5997563899],[-10556742.908083452,4729998.4252024116]]]},"attributes":{"objectid":2071,"field_kid":"1000152683","approxacre":2570,"field_name":"EDWARDSVILLE","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000152683}},{"geometry":{"rings":[[[-10573191.088160723,4734172.4039045079],[-10573448.335109154,4734171.2822593534],[-10573447.693576274,4734431.3296895977],[-10573447.051041765,4734691.4541017888],[-10573446.404201813,4734951.6588556627],[-10573445.755959485,4735211.9774952102],[-10573188.195725381,4735212.913210297],[-10572930.775451886,4735213.8433775771],[-10572672.427315028,4735214.7645234158],[-10572413.488301046,4735215.6806436675],[-10572414.594193405,4734955.6662303824],[-10572415.699583624,4734695.8797095129],[-10572416.812885011,4734435.8504105192],[-10572417.925186092,4734175.739187656],[-10572675.859622167,4734174.6314660264],[-10572930.52110583,4734173.5312537123],[-10572933.59553081,4734173.5202637473],[-10573191.088160723,4734172.4039045079]]]},"attributes":{"objectid":2102,"field_kid":"1000149607","approxacre":158,"field_name":"HOG CREEK SOUTHWEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":40,"maxoilwell":1,"lastoilpro":21,"lastoilwel":1,"lastodate":"8-1993","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149607}},{"geometry":{"rings":[[[-10573490.665741764,4769323.3714358099],[-10573493.219382826,4769059.7462477153],[-10573495.767115382,4768796.8129848754],[-10573498.310440948,4768534.6414778819],[-10573500.845655354,4768273.2143257754],[-10573758.855587285,4768273.1866175774],[-10574017.557006996,4768273.151787797],[-10574276.945909912,4768273.1187659772],[-10574537.02830288,4768273.0786225768],[-10574536.939080963,4768280.1269826358],[-10574803.22864574,4768279.8787080655],[-10575069.009230711,4768279.6234480301],[-10575334.297354672,4768279.3672848586],[-10575599.089255489,4768279.1050210772],[-10575863.943116045,4768278.8376544351],[-10576129.373534577,4768278.564850105],[-10576132.132282903,4768278.581274813],[-10576395.372902386,4768278.2950199833],[-10576661.929005604,4768277.9973637648],[-10576657.902689036,4768540.0725330543],[-10576653.88157901,4768801.8114332836],[-10576649.838244369,4769063.1655046437],[-10576645.800516509,4769324.2646615822],[-10576901.566244749,4769325.1387367789],[-10577158.356842855,4769326.0108674886],[-10577415.639602847,4769326.859441204],[-10577673.592627963,4769327.7028359426],[-10577672.369059281,4769587.0114696026],[-10577671.143288141,4769846.2678929865],[-10577669.904601345,4770105.8433271246],[-10577668.665213112,4770365.6323029632],[-10577412.041663259,4770364.7340445239],[-10577156.100092014,4770363.8317719055],[-10576900.990770914,4770362.9282029392],[-10576646.213428874,4770362.0208796393],[-10576381.305118216,4770362.3798966613],[-10576116.506833147,4770362.7345123235],[-10575850.625111287,4770363.0710092606],[-10575583.99773821,4770363.4011655962],[-10575317.212438542,4770364.4535192735],[-10575050.139131539,4770365.49961749],[-10574783.647387067,4770366.525002121],[-10574514.65739706,4770367.553378202],[-10574255.890056226,4770366.7442944376],[-10573999.117887909,4770365.9354582587],[-10573740.815776946,4770365.1108391313],[-10573482.158060912,4770364.2807855858],[-10573484.283703338,4770104.4670316447],[-10573486.412149888,4769844.3633250585],[-10573488.537093284,4769583.9998454582],[-10573490.665741764,4769323.3714358099]]]},"attributes":{"objectid":2382,"field_kid":"1000149629","approxacre":1118,"field_name":"SLAMMER NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1325.1800000000001,"maxoilwell":1,"lastoilpro":100.18000000000001,"lastoilwel":1,"lastodate":"3-1998","cumm_gas":3125549,"maxgaswell":28,"lastgaspro":2885,"lastgaswel":28,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149629}},{"geometry":{"rings":[[[-10564191.993295278,4695657.3756868215],[-10564192.143918931,4695398.2394278329],[-10564192.295042096,4695138.9315637983],[-10564192.439656656,4694879.4427288668],[-10564192.583869701,4694619.7848849352],[-10564450.232744012,4694619.705253195],[-10564703.131552417,4694619.6187094152],[-10564707.484060816,4694619.6186859254],[-10564964.315094033,4694619.5359752122],[-10565220.730849354,4694619.4474853436],[-10565221.450420454,4694878.8032105835],[-10565222.17089141,4695137.9679409843],[-10565222.881950583,4695396.9826488513],[-10565223.594310191,4695655.8259936962],[-10565481.315770248,4695657.4661181187],[-10565738.781235661,4695659.0964789689],[-10565995.948257487,4695660.7017863374],[-10566252.802719591,4695662.2984868269],[-10566254.054992108,4695921.0890343888],[-10566255.310472677,4696180.6259099301],[-10566256.552436991,4696440.0554283187],[-10566257.794502446,4696699.6668383097],[-10566000.382801531,4696697.1216892581],[-10565742.702691671,4696694.5663905209],[-10565484.734650444,4696692.0069817947],[-10565226.442235883,4696689.4369097138],[-10564968.298912281,4696690.1319298344],[-10564709.741712432,4696690.8211699035],[-10564706.717933243,4696690.8315960756],[-10564450.783951607,4696691.4944782341],[-10564191.428332942,4696692.1586653823],[-10564191.573254323,4696433.7142262878],[-10564191.718174763,4696175.1197170094],[-10564191.855685553,4695916.342769023],[-10564191.993295278,4695657.3756868215]]]},"attributes":{"objectid":3278,"field_kid":"1000149142","approxacre":475,"field_name":"GARDNER EAST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149142}},{"geometry":{"rings":[[[-10577660.47746701,4772717.6236866983],[-10577662.152660642,4772455.0928347148],[-10577406.677637124,4772454.1666418156],[-10577151.271292135,4772453.2334579546],[-10576895.891377408,4772452.2978145201],[-10576640.591354001,4772451.3550506281],[-10576642.201214967,4772189.0301534403],[-10576643.814381197,4771926.1222759839],[-10576645.442363238,4771663.5752041666],[-10576647.071846724,4771401.0793864308],[-10576902.446611343,4771402.5776460655],[-10577153.964973195,4771404.0466581965],[-10577157.860721035,4771404.0627020067],[-10577413.343609365,4771405.5537132975],[-10577663.699143857,4771407.0066769673],[-10577668.895276377,4771407.0294495691],[-10577924.500604793,4771408.496901324],[-10578175.425289383,4771409.9318709467],[-10578180.173410343,4771409.9780756505],[-10578435.85993175,4771411.4253337244],[-10578691.533338327,4771412.8636601334],[-10578955.537156576,4771414.1039048852],[-10579219.514544779,4771415.3353473386],[-10579223.736665241,4771415.3639475303],[-10579483.456192236,4771416.5837488556],[-10579747.372611033,4771417.8167459257],[-10579745.730242161,4771680.3221278647],[-10579744.089375921,4771942.365582535],[-10579742.460524376,4772203.9275248442],[-10579740.832875123,4772465.0270785047],[-10580004.876985839,4772465.3228849052],[-10580268.933610884,4772465.6124769449],[-10580532.936274359,4772465.891323369],[-10580796.911806887,4772466.1647322923],[-10580795.40344044,4772725.8888865327],[-10580793.924818721,4772980.4217497511],[-10580793.881559415,4772985.1492381934],[-10580792.378701035,4773243.9181727143],[-10580790.877945956,4773502.2036801083],[-10580526.769416034,4773502.88488195],[-10580262.65638092,4773503.559868576],[-10580257.295358267,4773503.5732104164],[-10579998.5180168,4773504.2462493749],[-10579734.351920968,4773504.9258970376],[-10579727.28404893,4773504.9615112646],[-10579470.161196945,4773505.6058035437],[-10579205.967569608,4773506.2612380311],[-10579201.458720211,4773506.2640910773],[-10579115.317140514,4773506.5047516711],[-10578941.752017386,4773506.8314740816],[-10578677.509434432,4773507.3218204109],[-10578421.873885464,4773506.0929134674],[-10578174.473841982,4773504.8984407019],[-10578166.313021926,4773504.8522242112],[-10577910.837656077,4773503.6334175961],[-10577667.296219487,4773502.4653560109],[-10577655.439778836,4773502.4082668498],[-10577657.119274082,4773241.2920563631],[-10577658.802775022,4772979.6954144146],[-10577660.47746701,4772717.6236866983]]]},"attributes":{"objectid":3663,"field_kid":"1000149591","approxacre":951,"field_name":"APPLE VALLEY","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":157209.14999999999,"maxoilwell":17,"lastoilpro":306.27999999999997,"lastoilwel":13,"lastodate":"2-2009","cumm_gas":292831,"maxgaswell":3,"lastgaspro":136,"lastgaswel":2,"lastgdate":"12-1994","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149591}},{"geometry":{"rings":[[[-10549445.990246734,4687363.4761151634],[-10549704.246193297,4687366.1352094756],[-10549705.286855569,4687625.4504360575],[-10549706.328217983,4687884.6719903257],[-10549707.355663761,4688143.8055146188],[-10549708.383109022,4688402.8683359027],[-10549450.225885307,4688400.3964829268],[-10549192.152858408,4688397.9171829112],[-10548934.1267855,4688395.4371126685],[-10548676.164686132,4688392.9489534898],[-10548675.02810611,4688133.7096625883],[-10548673.89362785,4687874.377209303],[-10548672.76515582,4687614.9492896879],[-10548671.637383942,4687355.4284786461],[-10548929.686793152,4687358.1230065022],[-10549187.800576366,4687360.8108585756],[-10549445.990246734,4687363.4761151634]]]},"attributes":{"objectid":3699,"field_kid":"1021079576","approxacre":159,"field_name":"Stilwell West","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1021079576}},{"geometry":{"rings":[[[-10561884.864281289,4758912.5857525645],[-10562142.292373188,4758916.4417728512],[-10562139.079858456,4759182.6259501921],[-10562138.179204933,4759257.2291278532],[-10562133.605169915,4759445.8375837058],[-10562127.229153927,4759709.1556601375],[-10562120.872561885,4759971.6063752556],[-10561862.227602242,4759971.5514552575],[-10561604.120956298,4759971.4904550808],[-10561346.797403077,4759971.4351403778],[-10561090.205784282,4759971.3737444999],[-10561095.431564614,4759706.9034403339],[-10561100.680573672,4759441.2024190044],[-10561105.951109435,4759174.325211551],[-10561111.193410952,4758908.902376499],[-10561368.857476771,4758909.9842839846],[-10561391.460847136,4758910.0794580746],[-10561464.573605811,4758909.1821813192],[-10561528.23539097,4758907.2406535624],[-10561626.6055422,4758908.7102146242],[-10561884.864281289,4758912.5857525645]]]},"attributes":{"objectid":3709,"field_kid":"1000149631","approxacre":160,"field_name":"THUMPER","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":217,"maxoilwell":1,"lastoilpro":49,"lastoilwel":1,"lastodate":"12-1987","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149631}},{"geometry":{"rings":[[[-10573199.885931859,4714412.2965750853],[-10573454.653149923,4714414.0668895505],[-10573456.838752631,4714675.671817218],[-10573459.028763408,4714937.815798087],[-10573461.218076324,4715200.4907637481],[-10573463.410395896,4715463.7391106067],[-10573207.861079881,4715460.8325519785],[-10572952.207343692,4715457.918656772],[-10572695.212765239,4715454.9763235515],[-10572437.25077405,4715452.0180364577],[-10572436.036779538,4715190.1642654594],[-10572434.827495955,4714929.2850613147],[-10572433.629723502,4714668.0469751842],[-10572432.432852577,4714406.9039210156],[-10572688.757261882,4714408.714382994],[-10572944.592408404,4714410.5155814104],[-10573199.885931859,4714412.2965750853]]]},"attributes":{"objectid":4042,"field_kid":"1000149153","approxacre":158,"field_name":"PRAIRIE CENTER","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":189310.92000000001,"maxoilwell":39,"lastoilpro":315.76999999999998,"lastoilwel":12,"lastodate":"2-2009","cumm_gas":17843,"maxgaswell":2,"lastgaspro":62,"lastgaswel":2,"lastgdate":"12-1985","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149153}},{"geometry":{"rings":[[[-10558151.063283794,4740382.5785383452],[-10558152.24787046,4740121.8647482879],[-10558029.772847669,4740121.4013666911],[-10558028.920640215,4739899.8806442274],[-10558028.071933331,4739679.2152024964],[-10558027.243446628,4739459.2885866174],[-10558026.417359548,4739240.1382997492],[-10558025.589463938,4739022.6154361544],[-10558024.766068105,4738806.4447842455],[-10558023.965994174,4738591.4813518608],[-10558023.170320302,4738377.7702230355],[-10558030.21649133,4738377.6693927916],[-10558030.408726901,4738118.6827489473],[-10558030.600664284,4737859.1604485763],[-10558030.778686773,4737599.3840575973],[-10558030.956510473,4737339.25321934],[-10558031.161867471,4737078.6891328339],[-10558031.366824737,4736817.9539828999],[-10558031.557267213,4736556.7626749408],[-10558031.749012627,4736295.2172868429],[-10558289.525821311,4736293.0044988822],[-10558547.842348846,4736290.7799672717],[-10558806.602384947,4736288.5514331097],[-10559065.997348998,4736286.3129605651],[-10559065.686370851,4736029.5675725276],[-10559065.37957493,4735778.1928314613],[-10559065.36698183,4735773.1136592897],[-10559065.049096156,4735516.2677839212],[-10559064.739791337,4735266.31916162],[-10559064.721099602,4735259.2496488979],[-10559326.359223062,4735253.1853255052],[-10559587.396758934,4735247.1279759239],[-10559847.813584108,4735241.0850818008],[-10560107.640634069,4735235.0508382544],[-10560366.862791462,4735229.0296310857],[-10560625.45532795,4735223.0177197624],[-10560883.43115842,4735216.9983353093],[-10561140.796590008,4735210.9886334911],[-10561140.720940227,4735203.2259606244],[-10561137.871307619,4734943.858855607],[-10561135.15987392,4734696.9287494877],[-10561135.06761357,4734687.3793937685],[-10561132.232087543,4734429.8774250112],[-10561129.514545429,4734183.0981301805],[-10561390.193657449,4734175.1572707463],[-10561461.507731114,4734172.982857273],[-10561461.533570141,4734150.3986221915],[-10561650.571110709,4734149.6496761944],[-10561911.740654239,4734148.6031942731],[-10562174.148117287,4734147.5449646171],[-10562437.007298432,4734146.4805401294],[-10562700.798648532,4734145.4056603443],[-10562965.483222885,4734144.3324494902],[-10563231.048306977,4734143.2496866463],[-10563230.646062095,4734403.3607178628],[-10563230.242820578,4734662.6433951017],[-10563229.830977224,4734920.4336281475],[-10563229.42264458,4735176.9837374231],[-10563229.410700209,4735182.7519398388],[-10563228.996671973,4735437.2636334756],[-10563228.570993423,4735698.7433231827],[-10563228.571070176,4735703.1312939925],[-10563228.161927551,4735961.4360576048],[-10563227.745146571,4736225.3250320535],[-10563471.4386176,4736224.3159797182],[-10563715.247921543,4736223.3000892168],[-10563959.152134372,4736222.2854879824],[-10564203.15335854,4736221.2655968042],[-10564447.892228149,4736220.2462154645],[-10564458.67989077,4736220.2003284218],[-10564692.811512975,4736217.7702496713],[-10564938.109932993,4736215.2251350461],[-10565182.8493127,4736212.6810575891],[-10565441.17543266,4736215.2361299274],[-10565700.069803454,4736217.7921013758],[-10565958.5768301,4736220.3329834696],[-10566217.006567871,4736222.8652238017],[-10566475.393256042,4736225.3843069253],[-10566733.379785364,4736227.8919128869],[-10566990.805972308,4736230.3828828512],[-10567247.729482947,4736232.8595384052],[-10567246.327205185,4736494.0252011623],[-10567244.925328815,4736755.082273243],[-10567243.5297604,4737016.0640319139],[-10567242.134893792,4737276.9255733946],[-10567240.73372175,4737537.5444478355],[-10567239.332751347,4737797.981664896],[-10567237.958413348,4738058.1577295102],[-10567237.404809017,4738162.9740872979],[-10567232.678603142,4738318.1909745447],[-10566973.792585479,4738316.1996679893],[-10566716.404783599,4738314.2115756739],[-10566457.508453712,4738312.1983351056],[-10566198.110749334,4738310.1729702763],[-10565938.769909866,4738308.1392185735],[-10565678.278151928,4738306.0908962917],[-10565419.047938505,4738304.0723704593],[-10565160.266038341,4738302.0494545354],[-10564916.005861172,4738301.7755589942],[-10564672.478523405,4738301.4957221607],[-10564428.218045987,4738301.1920206398],[-10564183.721798506,4738300.8832888724],[-10563940.513125733,4738300.5846111132],[-10563698.079941206,4738300.2807659134],[-10563456.015378933,4738299.9629824869],[-10563214.178277187,4738299.6395199131],[-10562954.586119963,4738302.856021517],[-10562694.845993713,4738306.0687831864],[-10562690.026773391,4738306.1330792652],[-10562434.57866393,4738309.3047753582],[-10562173.931199225,4738312.5339327492],[-10562167.938334627,4738312.5946254805],[-10561913.433606843,4738315.7208966846],[-10561652.653491253,4738318.9180570645],[-10561647.307167115,4738319.0028733294],[-10561461.940835968,4738321.2758244993],[-10561391.528883813,4738321.6405171528],[-10561130.042769207,4738322.9915135596],[-10561132.421643499,4738543.9700317681],[-10561134.818029694,4738766.6093035964],[-10561137.223025339,4738989.277867401],[-10561139.633324424,4739212.4444058491],[-10561142.055132065,4739436.5280897012],[-10561143.738619089,4739592.2677424569],[-10561144.050447272,4739661.4129695278],[-10561145.147932328,4739886.7034332501],[-10561145.620710786,4739984.0134960543],[-10561144.093550304,4740112.6750469655],[-10560885.479750976,4740113.8546733633],[-10560739.633364545,4740114.5170788765],[-10560627.68879403,4740115.0077083744],[-10560369.080701571,4740116.184366581],[-10560222.660958866,4740116.8478090242],[-10560221.971919224,4740172.4644996254],[-10560221.052346453,4740376.524716273],[-10560219.879331546,4740636.5158427469],[-10560218.708617859,4740896.8627745984],[-10560217.536601441,4741157.5273356503],[-10559958.62193297,4741158.1707701888],[-10559699.334037378,4741158.8118843548],[-10559440.753751861,4741159.4479595097],[-10559182.467903487,4741160.0774499979],[-10558923.846971676,4741160.7015222274],[-10558665.641715771,4741161.31965419],[-10558406.747771695,4741161.9250137759],[-10558147.519344866,4741162.5258585494],[-10558148.699722094,4740902.8349100836],[-10558149.881302198,4740642.8121097172],[-10558151.063283794,4740382.5785383452]]]},"attributes":{"objectid":4082,"field_kid":"1000149626","approxacre":4895,"field_name":"ROBERTS-MAYWOOD","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149626}},{"geometry":{"rings":[[[-10583686.697053978,4688733.5540894344],[-10583687.136505224,4688479.8966128379],[-10583428.08262454,4688477.2549893614],[-10583167.700722547,4688474.5939856917],[-10582908.559040504,4688471.936699111],[-10582649.797393296,4688469.2779985024],[-10582391.429096159,4688466.6144170677],[-10582133.462758966,4688463.9487794964],[-10581875.91680282,4688461.2810856961],[-10581618.740369465,4688458.6104371697],[-10581619.533053376,4688198.0042275861],[-10581620.323138436,4687938.4255189076],[-10581621.103211021,4687678.570073856],[-10581621.883384438,4687418.8730070433],[-10581622.672969302,4687159.3241641428],[-10581623.463455986,4686899.9531889856],[-10581624.261952544,4686640.7364469832],[-10581625.06014958,4686381.7078162804],[-10581630.421972321,4686121.7444264796],[-10581634.469940491,4685925.534559533],[-10581634.426535528,4685862.3878082912],[-10581634.278853437,4685602.6404136],[-10581634.132572846,4685343.040703902],[-10581633.970874723,4685083.2649596278],[-10581633.809276763,4684823.4343569651],[-10581633.647578655,4684563.6461872263],[-10581633.485980669,4684303.8551416593],[-10581890.819266137,4684304.3313261354],[-10582148.474420447,4684304.8008351577],[-10582406.471266326,4684305.24801064],[-10582664.831228314,4684305.6890238356],[-10582921.693273803,4684306.1152847568],[-10583178.453903081,4684306.5347439386],[-10583435.125129905,4684306.9615191538],[-10583691.710658519,4684307.3817492342],[-10583692.350082895,4684047.5295374319],[-10583692.990708908,4683787.3228084687],[-10583692.986306341,4683783.9685815144],[-10583693.608208682,4683526.7826363081],[-10583694.236521088,4683265.9152061464],[-10583694.233120531,4683261.387821936],[-10583694.857825721,4683004.7111751791],[-10583695.495048918,4682743.0795871466],[-10583695.486441445,4682739.8459436186],[-10583696.123962611,4682481.4408545913],[-10583696.772299532,4682218.4934513532],[-10583697.902286816,4681957.703504906],[-10583698.265765175,4681873.8842512574],[-10583698.555526149,4681699.1241031308],[-10583698.960181389,4681439.5037541129],[-10583699.365537394,4681179.9481370272],[-10583958.467957415,4681179.6013268409],[-10584217.468560765,4681179.2479736069],[-10584475.995020783,4681178.8808939382],[-10584734.081877034,4681178.5071444372],[-10584992.950628052,4681179.8085362865],[-10585252.109511554,4681181.1056928607],[-10585511.549417071,4681182.4133692374],[-10585771.302281227,4681183.7160404129],[-10586029.465724872,4681183.8313875645],[-10586287.678525081,4681183.9391645063],[-10586545.967712829,4681184.0455297548],[-10586804.336992364,4681184.1450944962],[-10587062.769444153,4681184.4197947681],[-10587320.903554063,4681184.6855150377],[-10587578.790180385,4681184.9267302183],[-10587836.303679129,4681185.1592223356],[-10588093.084437884,4681185.7790693929],[-10588349.825350981,4681186.3901919071],[-10588606.534327468,4681187.0144016268],[-10588863.225683765,4681187.6306565423],[-10588863.416705986,4680927.024295005],[-10588863.608429177,4680666.2145692315],[-10588863.814068766,4680404.8373940457],[-10588864.020108452,4680143.9347966239],[-10589121.395851426,4680144.2987994282],[-10589294.218199376,4680144.5412915368],[-10589378.854989544,4680145.2014979264],[-10589636.462596949,4680147.1862065755],[-10589894.280845731,4680149.1683487315],[-10590150.178796476,4680147.913318553],[-10590406.385801401,4680146.650589793],[-10590662.94781317,4680145.3661784623],[-10590919.860827185,4680144.0741966674],[-10591177.096510975,4680142.7796478942],[-10591434.662773611,4680141.4761175392],[-10591692.552807286,4680140.1711748345],[-10591950.792741943,4680138.8581485152],[-10591949.136034232,4680398.5290165311],[-10591947.502055498,4680654.5678394791],[-10591947.468013786,4680657.9203921286],[-10591945.826724188,4680917.0627895901],[-10591944.213370457,4681171.4347424796],[-10591944.179828381,4681175.9584996328],[-10591942.521619843,4681434.5751700522],[-10591940.886340598,4681689.4580079196],[-10591940.84889489,4681692.932924551],[-10591939.219519854,4681951.0131377149],[-10591937.592748011,4682208.8423504559],[-10592196.497137671,4682210.05414363],[-10592455.345963662,4682211.2596495757],[-10592714.169360518,4682212.4566867361],[-10592972.978140615,4682213.6469231946],[-10593231.741668871,4682214.8274078062],[-10593490.449232984,4682216.0017334763],[-10593749.123458901,4682217.1659222767],[-10594007.760842603,4682218.3233104739],[-10594269.344901871,4682220.8828109466],[-10594525.421950443,4682223.3804881778],[-10594530.047951564,4682223.4158825241],[-10594789.892717702,4682225.9431842193],[-10595042.761489771,4682228.3981473465],[-10595048.877798695,4682228.4432869852],[-10595307.031126544,4682230.9387745922],[-10595559.659623262,4682233.3750053151],[-10595564.326771537,4682233.4118109988],[-10595820.768538015,4682235.8929357827],[-10596076.357226914,4682238.3582818517],[-10596079.512426119,4682496.2728753211],[-10596082.54709563,4682744.1444147993],[-10596082.674133336,4682753.5237558344],[-10596085.808309566,4683010.0958590992],[-10596088.780611368,4683253.4707414778],[-10596088.922763748,4683266.0038919328],[-10596092.044126829,4683520.7221486932],[-10596095.055171059,4683766.4227523264],[-10596095.166291133,4683775.0748493811],[-10596098.294562701,4684029.0984153291],[-10596101.417828804,4684282.7984691849],[-10595842.203688161,4684282.1464644764],[-10595582.11844931,4684281.4880468445],[-10595577.409853585,4684281.489738266],[-10595321.186440108,4684280.8323285449],[-10595059.31695665,4684280.1544113997],[-10595053.159000065,4684280.1484092744],[-10594796.626932915,4684279.458273476],[-10594645.031215211,4684279.048570022],[-10594533.077222575,4684280.5358464252],[-10594528.727437984,4684280.5906702867],[-10594522.52603155,4684280.661802805],[-10594268.694657782,4684281.690686401],[-10594003.512977334,4684282.7568451175],[-10594001.653932959,4684543.1132085249],[-10593999.826828748,4684799.1444089152],[-10593999.801996773,4684803.4271932412],[-10593997.933942182,4685063.6814685296],[-10593996.100130811,4685319.1127164541],[-10593996.057878435,4685323.9218531856],[-10593994.19663172,4685584.1184382671],[-10593992.361017406,4685840.6443194756],[-10593992.318465658,4685844.2800777312],[-10593991.733929534,4685925.9182379674],[-10593991.075167257,4686104.4285040852],[-10593990.115402495,4686364.5189719228],[-10594252.258365648,4686366.7981190942],[-10594514.487126769,4686369.0717461817],[-10594776.851042425,4686371.3249619529],[-10595039.342904348,4686373.5717588114],[-10595300.25956108,4686375.795585772],[-10595562.348460644,4686378.0231296876],[-10595565.206435287,4686378.0392896067],[-10595825.583973663,4686380.2664575521],[-10596090.02126334,4686382.5233867653],[-10596346.5402804,4686381.7981778886],[-10596594.86460817,4686381.0902131582],[-10596601.709250694,4686381.0791378897],[-10596855.58033398,4686380.3636990981],[-10597101.798749002,4686379.663062619],[-10597108.119791606,4686379.6344032865],[-10597362.434683619,4686378.8954706108],[-10597609.94297678,4686378.1692819437],[-10597616.224974656,4686378.1384405158],[-10597869.411473978,4686377.3810285581],[-10598121.95143261,4686376.6186136091],[-10598122.002330024,4686636.0982268192],[-10598122.0537272,4686896.8745098971],[-10598122.104624193,4687157.0215996839],[-10598122.156622475,4687417.1162758712],[-10598121.041884353,4687677.1774137309],[-10598119.926445577,4687937.2662467407],[-10598118.795288999,4688197.3089509234],[-10598117.661729852,4688457.3188760364],[-10597863.08868848,4688456.7523878524],[-10597618.724538438,4688456.2012506844],[-10597608.577618005,4688456.1824325891],[-10597354.116604779,4688455.5828173701],[-10597112.258424472,4688455.0057301326],[-10597099.694335848,4688454.9855130613],[-10596842.918371338,4688454.3729425585],[-10596598.544109402,4688453.7837999323],[-10596586.987374417,4688453.755616677],[-10596331.850586949,4688453.1242911248],[-10596077.462356661,4688452.4862847766],[-10596078.539975883,4688714.9781021206],[-10596079.603579113,4688973.7296173889],[-10596079.622500602,4688976.7626329456],[-10596080.708429109,4689237.8195345486],[-10596081.774535038,4689494.1507082786],[-10596081.801065184,4689498.1536306469],[-10596082.873978559,4689757.8375479365],[-10596083.932175146,4690013.7884709872],[-10596083.951997662,4690016.7817303417],[-10596085.015600156,4690275.0612471802],[-10596086.076599559,4690532.6448411047],[-10595824.322383596,4690533.1142335413],[-10595574.722179733,4690533.555557969],[-10595563.886476694,4690533.5922225844],[-10595304.798212422,4690534.0212745592],[-10595061.554684825,4690534.4192829616],[-10595047.052985519,4690534.4530155277],[-10594790.713167369,4690534.8781986805],[-10594546.614861466,4690535.2782670083],[-10594535.738311684,4690535.3123634253],[-10594282.105592318,4690535.7253304916],[-10594029.822117409,4690536.1276305132],[-10593772.282225538,4690536.0341201099],[-10593514.02781578,4690535.9330369579],[-10593509.436660539,4690535.9403842157],[-10593255.058287458,4690535.8430024143],[-10592995.376643991,4690535.7383318376],[-10592989.212488212,4690535.7288649743],[-10592734.965865895,4690535.6177411089],[-10592473.823049853,4690535.4961272953],[-10592469.191548431,4690535.4991084104],[-10592211.953401839,4690535.3784989007],[-10591949.36983661,4690535.2484176653],[-10591950.237211775,4690796.4234213401],[-10591951.105087427,4691057.6439099237],[-10591951.968557963,4691318.9182351679],[-10591952.83252902,4691580.2670795452],[-10591953.69569898,4691841.5632936852],[-10591954.557667572,4692102.9983819984],[-10591955.431850163,4692364.5700431503],[-10591956.308735779,4692626.2014750279],[-10591698.548441432,4692627.3324231887],[-10591439.557639457,4692628.4618379204],[-10591180.714206202,4692629.5592680229],[-10590921.558816198,4692630.6513054157],[-10590662.063337747,4692632.077956371],[-10590402.24709251,4692633.4984440906],[-10590142.106776735,4692634.9295954918],[-10589881.645694176,4692636.3544552205],[-10589620.679828124,4692634.1863241568],[-10589359.435943672,4692632.0088182837],[-10589293.949321523,4692631.4467490306],[-10589098.878942207,4692628.4680727506],[-10588838.624485513,4692624.4889279166],[-10588838.474520771,4692885.992830026],[-10588838.326155752,4693146.4007828683],[-10588838.157867245,4693406.4472334618],[-10588837.990378536,4693665.9105559178],[-10588578.833656795,4693664.5596491899],[-10588320.30335135,4693663.2070684452],[-10588061.58993626,4693661.8503781417],[-10587802.97833742,4693660.4880348798],[-10587545.628180355,4693658.7555826725],[-10587287.936432313,4693657.0123419426],[-10587030.558142509,4693655.2514999565],[-10586773.217195146,4693653.4820508752],[-10586773.692893332,4693914.4098496716],[-10586774.171295738,4694175.81787547],[-10586774.641385572,4694436.0392351681],[-10586775.109370016,4694695.1046719691],[-10586516.883087937,4694694.9139336171],[-10586258.375584232,4694694.7154885698],[-10586214.011353629,4694694.6667060498],[-10585999.61649048,4694693.6617822275],[-10585749.924063977,4694692.4866060186],[-10585740.567165028,4694692.7258900711],[-10585483.944708716,4694689.7454194194],[-10585274.939303759,4694687.3132236572],[-10585226.426228641,4694687.1962481225],[-10584969.680637635,4694686.5219172509],[-10584713.230083888,4694685.8403897602],[-10584457.003686339,4694685.149610512],[-10584201.000343736,4694684.4530483633],[-10583945.236775244,4694683.763293813],[-10583689.655414985,4694683.0694268104],[-10583689.902825208,4694423.0377804181],[-10583690.149038179,4694164.2320781928],[-10583690.387539381,4693904.5414044661],[-10583690.6263404,4693644.6936955582],[-10583690.876153516,4693384.6907617673],[-10583691.125665782,4693124.5344133461],[-10583691.387391444,4692864.2021826683],[-10583691.649817402,4692603.7145066634],[-10583690.638387024,4692343.5624546232],[-10583689.624252792,4692083.2354324004],[-10583688.609316593,4691822.6434171824],[-10583687.593077924,4691561.8123733541],[-10583686.571332278,4691300.8281124411],[-10583685.548484538,4691039.6474937266],[-10583684.542655358,4690778.2435625913],[-10583683.535223437,4690516.6204457786],[-10583683.984178964,4690261.0863895202],[-10583684.420642441,4690012.1634716885],[-10583684.440844236,4690005.8136523869],[-10583684.902215917,4689750.8287962163],[-10583685.34839835,4689504.2135557346],[-10583685.346969545,4689496.1255073324],[-10583685.804939182,4689241.6685808413],[-10583686.249614891,4688993.5393321365],[-10583686.259205496,4688987.4732783129],[-10583686.697053978,4688733.5540894344]]]},"attributes":{"objectid":4167,"field_kid":"1000147596","approxacre":22121,"field_name":"BALDWIN","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1443564.98,"maxoilwell":204,"lastoilpro":1116.95,"lastoilwel":100,"lastodate":"2-2009","cumm_gas":27274,"maxgaswell":3,"lastgaspro":529,"lastgaswel":3,"lastgdate":"10-1991","avgdepth":662.75,"avgdepthsl":-377,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000147596}},{"geometry":{"rings":[[[-10582990.118322426,4749784.4258947391],[-10582991.208396174,4749525.2091059163],[-10582729.735347668,4749524.5402065553],[-10582468.627214782,4749523.866782424],[-10582207.917235496,4749523.172169717],[-10581947.586888609,4749522.4701902615],[-10581687.565393336,4749521.7840961292],[-10581427.842237873,4749521.0939946007],[-10581168.336530164,4749520.3909734972],[-10580909.069694547,4749519.6825247062],[-10580908.888568746,4749260.939008438],[-10580908.710107338,4749007.0092230337],[-10580908.710645232,4749002.3723677192],[-10580908.539027432,4748743.9960219245],[-10580908.36730797,4748485.8199018026],[-10580908.388336614,4748224.0892508905],[-10580908.411072219,4747961.7426043851],[-10580908.458540875,4747698.7936999621],[-10580908.503729645,4747445.4625428151],[-10580908.538651492,4747435.2554992577],[-10581168.862831559,4747436.9000853077],[-10581429.691285862,4747438.5432458399],[-10581691.035627421,4747440.2111976668],[-10581952.907069221,4747441.8759156736],[-10582213.195515238,4747442.724179606],[-10582466.540255735,4747443.5438446151],[-10582471.845395742,4747443.5674238047],[-10582728.838490099,4747444.3915713727],[-10582984.223753976,4747445.2038540626],[-10582986.607218975,4747706.4327078499],[-10582988.984582549,4747966.9801875781],[-10582991.366248691,4748227.8459201176],[-10582993.749316687,4748488.7012156993],[-10583253.366134934,4748488.1757021649],[-10583513.564715644,4748487.6426913366],[-10583675.532844143,4748487.3085653232],[-10583773.661984963,4748486.5956211677],[-10584033.849563606,4748484.7035796791],[-10584033.019915061,4748743.5565384822],[-10584032.189962793,4749002.8472966887],[-10584031.342893157,4749261.8648028951],[-10584030.494922729,4749520.8531751055],[-10584029.214450838,4749780.9980062628],[-10584027.931571549,4750041.7431289405],[-10584026.651494449,4750302.6161632827],[-10584025.370414101,4750563.7590963719],[-10583765.54390754,4750564.0026793946],[-10583505.671749026,4750564.2410953762],[-10583246.153493632,4750564.4678808851],[-10582986.865500528,4750564.68639604],[-10582987.945773451,4750304.1519106673],[-10582989.027244108,4750044.0801595887],[-10582990.118322426,4749784.4258947391]]]},"attributes":{"objectid":4339,"field_kid":"1000149610","approxacre":952,"field_name":"JARBALO EAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":4133.1400000000003,"maxoilwell":3,"lastoilpro":107.16,"lastoilwel":2,"lastodate":"8-2008","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149610}},{"geometry":{"rings":[[[-10551796.209108498,4696975.5496583525],[-10551796.559950359,4696713.8678768184],[-10551551.198741464,4696715.6251542596],[-10551305.748430034,4696717.3766501071],[-10551060.235046111,4696719.1357284151],[-10550814.653283494,4696720.8896675026],[-10550557.586187236,4696719.7787172496],[-10550302.331776693,4696718.6689129882],[-10550046.149598556,4696717.5485769585],[-10549790.008868044,4696716.4211730752],[-10549533.895368805,4696715.2869584225],[-10549277.727306738,4696714.1483750381],[-10549021.630026046,4696713.0023381282],[-10548765.446546121,4696711.8500051266],[-10548763.347255671,4696451.8287737463],[-10548761.260889176,4696193.22879529],[-10548759.142982366,4695934.0165706668],[-10548757.026077095,4695674.8757080203],[-10548754.914376915,4695415.6070488514],[-10548752.801574918,4695156.2646939903],[-10548750.673655301,4694896.8990129065],[-10548748.543432847,4694637.5169449318],[-10549004.925348451,4694637.3350519259],[-10549261.790319862,4694637.1464755824],[-10549265.295553394,4694637.1604605336],[-10549519.148558995,4694636.9774249373],[-10549777.049822846,4694636.7861450538],[-10549781.603362666,4694636.8001243351],[-10550035.332325421,4694636.5996167371],[-10550294.082365826,4694636.3876476949],[-10550297.507807517,4694636.3970079375],[-10550553.292135272,4694636.1796589512],[-10550812.970143383,4694635.9517539423],[-10551058.250582829,4694635.4888158971],[-10551303.744467858,4694635.0202238169],[-10551549.450396815,4694634.5401963238],[-10551795.367468717,4694634.0563134812],[-10552041.504493656,4694633.5615090728],[-10552287.875988368,4694633.0606651111],[-10552534.466935551,4694632.5514691137],[-10552781.271128085,4694632.0359767172],[-10552780.750274904,4694892.4073887058],[-10552780.228718948,4695152.4726084555],[-10552779.690542122,4695412.2666892558],[-10552779.151962895,4695671.7599294111],[-10553037.924220003,4695671.4129730174],[-10553296.564925706,4695671.0585650643],[-10553555.031931419,4695670.6846278226],[-10553813.335348852,4695670.3033676911],[-10553813.157572221,4695929.082935961],[-10553812.979495466,4696187.903137546],[-10553812.799917085,4696446.7463713363],[-10553812.621440064,4696705.6099406229],[-10553812.817205437,4696966.3531866241],[-10553813.012269184,4697226.9742219308],[-10553813.200023502,4697487.4392386666],[-10553813.387676474,4697747.7160961283],[-10553554.293166205,4697748.3077946547],[-10553294.883092811,4697748.8931979369],[-10553035.690269243,4697749.4545676718],[-10552776.542697715,4697750.0097684981],[-10552531.379726492,4697752.0859908164],[-10552286.263308827,4697754.1563017862],[-10552040.823719205,4697756.2041251492],[-10551795.137846207,4697758.2457818734],[-10551795.499106126,4697497.5023074029],[-10551795.859465579,4697236.8538019974],[-10551796.209108498,4696975.5496583525]]]},"attributes":{"objectid":5275,"field_kid":"1000149152","approxacre":1710,"field_name":"PAOLA-RANTOUL NORTHEAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":394174.47999999998,"maxoilwell":77,"lastoilpro":158.53,"lastoilwel":23,"lastodate":"1-2003","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149152}},{"geometry":{"rings":[[[-10538205.025892269,4678020.324338627],[-10538353.775823893,4678020.4400408221],[-10538355.301699301,4678106.5556980269],[-10538354.938846847,4678278.40027331],[-10538354.396119967,4678536.2433700226],[-10538353.846685406,4678794.0447525019],[-10538353.296750262,4679051.8429012271],[-10538094.603645999,4679051.7598179383],[-10537836.172441104,4679051.671732395],[-10537577.458112575,4679051.5885207579],[-10537318.646172475,4679051.4983818457],[-10537060.047576457,4679052.0107677067],[-10536801.311823659,4679052.5172525346],[-10536542.850284297,4679053.0065487856],[-10536284.462228926,4679053.4887899747],[-10536284.963308014,4678795.6193736969],[-10536285.462985575,4678537.9624809381],[-10536285.941738768,4678279.0745576937],[-10536286.420591811,4678019.4686317006],[-10536544.875724137,4678019.524850986],[-10536644.686014291,4678019.5448665908],[-10536803.378210582,4678019.5541346092],[-10537061.844655829,4678019.5820072144],[-10537167.195679426,4678019.5906217713],[-10537320.332225256,4678019.6932524871],[-10537578.893979508,4678019.883124711],[-10537686.352612272,4678019.9593407419],[-10537837.31617422,4678020.0505500715],[-10538095.82586897,4678020.243885275],[-10538205.025892269,4678020.324338627]]]},"attributes":{"objectid":5443,"field_kid":"1024022816","approxacre":317,"field_name":"GUETTERMAN","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":93029,"maxgaswell":5,"lastgaspro":178,"lastgaswel":2,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1024022816}},{"geometry":{"rings":[[[-10593766.738104627,4696783.9336505765],[-10594025.499248188,4696782.4518755376],[-10594023.799538016,4697042.5885944497],[-10594022.099728033,4697302.8408125872],[-10594020.391008187,4697563.2607147489],[-10594018.680186262,4697823.8223538063],[-10593759.971376576,4697825.0595068084],[-10593501.097978992,4697826.291263626],[-10593242.934292534,4697827.5245577637],[-10592985.168260612,4697828.7498813597],[-10592727.236739766,4697829.9583709221],[-10592469.72239575,4697831.15799018],[-10592211.718692759,4697832.3587698527],[-10591953.51065645,4697833.5545391534],[-10591954.791138992,4697573.5132886916],[-10591956.073924471,4697313.5926731983],[-10591957.32637562,4697053.8191556986],[-10591958.578026172,4696794.1797458865],[-10592216.526739767,4696792.7399943005],[-10592474.592387198,4696791.2933031172],[-10592732.784279112,4696789.828235588],[-10592991.092404071,4696788.3555859728],[-10593249.514659688,4696786.8867909545],[-10593508.074272491,4696785.408614682],[-10593766.738104627,4696783.9336505765]]]},"attributes":{"objectid":5492,"field_kid":"1000147613","approxacre":318,"field_name":"VINLAND SOUTHEAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":49111.029999999999,"maxoilwell":14,"lastoilpro":335.5,"lastoilwel":9,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147613}},{"geometry":{"rings":[[[-10553579.503380055,4710224.122604453],[-10553838.82815239,4710222.5647540549],[-10553839.941963106,4710482.0117058344],[-10553841.057678936,4710741.9316226989],[-10553842.186209541,4711001.8679743009],[-10553843.318249527,4711262.6630127607],[-10553668.416671142,4711261.4766268274],[-10553584.121117398,4711261.8879947374],[-10553324.917190244,4711263.1455742763],[-10553065.791653348,4711264.4143491089],[-10552806.680733234,4711265.675788993],[-10552805.460693903,4711006.4572438197],[-10552804.241659546,4710747.8528141594],[-10552802.987980308,4710488.4610391622],[-10552801.73239685,4710228.7571683545],[-10553060.918109277,4710227.2186189117],[-10553320.219554802,4710225.672477169],[-10553579.503380055,4710224.122604453]]]},"attributes":{"objectid":5507,"field_kid":"1000149156","approxacre":159,"field_name":"WAY","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149156}},{"geometry":{"rings":[[[-10538383.809765734,4703042.0454282528],[-10538381.531262154,4702948.074874674],[-10538299.401197061,4702948.2651026081],[-10538119.622191176,4702948.3698913837],[-10537974.048661759,4702948.4534407388],[-10537860.721968364,4702949.0628644498],[-10537600.250048747,4702950.4074876038],[-10537429.771699091,4702951.2840137659],[-10537339.780129511,4702951.3968413724],[-10537079.968160918,4702951.823138115],[-10536928.491070714,4702952.0683180531],[-10536820.464946022,4702952.2693647491],[-10536561.172572728,4702952.7447791817],[-10536415.466692518,4702953.0075708013],[-10536302.032764103,4702951.2067417642],[-10536302.100756979,4702873.894300892],[-10536301.935354002,4702690.4466978107],[-10536301.701090727,4702430.4079607651],[-10536301.716791572,4702426.9660214195],[-10536301.506172474,4702170.3636618769],[-10536301.292734209,4701910.5652804002],[-10536301.303124525,4701906.2315130159],[-10536301.100418979,4701650.5387794729],[-10536300.895088589,4701390.4639053168],[-10536300.88035821,4701387.7510037059],[-10536300.675642377,4701130.4606062397],[-10536300.466706626,4700870.1466832478],[-10536301.287419014,4700804.4188889349],[-10536301.445834687,4700610.5293604601],[-10536301.657082522,4700350.7290585553],[-10536301.850610428,4700091.0103365295],[-10536302.043037098,4699831.3058321932],[-10536302.242873834,4699571.9284067713],[-10536302.443406111,4699311.5054088878],[-10536302.433580941,4699308.7107994882],[-10536302.620709712,4699050.6743079107],[-10536302.812417978,4698787.4781605909],[-10536300.545221765,4698707.0277607404],[-10536300.812419711,4698524.7737508118],[-10536301.1861785,4698270.038569483],[-10536301.199466692,4698264.6141746957],[-10536301.603035221,4698004.9966613734],[-10536301.996821413,4697751.1828439934],[-10536302.019624328,4697746.529432172],[-10536302.418501364,4697489.7204075018],[-10536302.819776701,4697232.031412418],[-10536303.220447708,4696973.6240451802],[-10536303.625108868,4696712.33708099],[-10536386.487447102,4696712.7612381121],[-10536562.208574701,4696715.6306326063],[-10536821.040229481,4696719.8478598287],[-10536984.395703763,4696722.4970074305],[-10537079.961977575,4696722.0820400417],[-10537338.869492318,4696720.954084821],[-10537354.068387279,4696720.9107742431],[-10537585.401723957,4696716.0464958046],[-10537599.433182385,4696715.9280118216],[-10537850.330223674,4696713.8064807402],[-10537859.244225087,4696713.6743773287],[-10538118.517442379,4696709.5632442078],[-10538376.347908258,4696705.4693326466],[-10538446.689814605,4696705.4614695981],[-10538633.37347178,4696704.9918580027],[-10538891.801839832,4696704.3358934643],[-10539150.788747126,4696703.6873819223],[-10539379.846300576,4696703.1067299284],[-10539410.635751365,4696705.3752956316],[-10539485.399047576,4696710.8385392772],[-10539669.199293841,4696708.3603108265],[-10539927.876731478,4696704.8671472184],[-10539998.860367045,4696703.9036137192],[-10540186.565288365,4696702.6059343899],[-10540445.134210771,4696700.8115701657],[-10540444.425640479,4696961.167543455],[-10540443.71247381,4697223.1439919695],[-10540443.006506078,4697483.4546042504],[-10540442.300334875,4697743.1963870134],[-10540441.610492203,4698004.7324954262],[-10540440.931138851,4698262.1822945755],[-10540440.935259921,4698265.1379106855],[-10540440.232088709,4698524.3031712109],[-10540439.724039694,4698710.9617668437],[-10540439.713122683,4698782.4554203236],[-10540440.206216108,4699040.7716732081],[-10540440.703124147,4699300.9397348035],[-10540441.221551463,4699560.1392332744],[-10540441.739678169,4699819.2918655174],[-10540442.25850918,4700079.0778868729],[-10540442.777539406,4700338.6796518695],[-10540443.314388867,4700598.0702792471],[-10540443.676370343,4700772.8950196616],[-10540443.686148291,4700857.2804775927],[-10540445.447103217,4701117.3518082248],[-10540447.211365623,4701378.0755547239],[-10540447.254154282,4701385.2450286588],[-10540448.959012736,4701639.4581956305],[-10540450.71467291,4701901.5284524616],[-10540450.773088874,4701910.3988632234],[-10540452.475036005,4702163.137466982],[-10540454.242010677,4702425.4545880388],[-10540454.307828175,4702433.0701828534],[-10540456.036521552,4702688.6015051026],[-10540457.81902173,4702952.2846035035],[-10540457.823597537,4703019.2717164857],[-10540456.758353684,4703213.826413719],[-10540455.5095849,4703441.8911556602],[-10540455.261984952,4703475.093733673],[-10540453.152635392,4703722.1570593733],[-10540453.401796509,4703735.8464628356],[-10540454.27025407,4703783.3612076631],[-10540454.867515584,4703996.2312850608],[-10540455.606002314,4704256.7308018673],[-10540455.830598375,4704336.0642560357],[-10540456.021923931,4704518.0241632396],[-10540456.348138271,4704778.501562818],[-10540456.671846103,4705038.325369142],[-10540196.532625098,4705037.7224089066],[-10539993.573510833,4705037.24685279],[-10539934.438764334,4705037.0196508504],[-10539673.58922711,4705035.9448304204],[-10539412.842307471,4705034.862164936],[-10539392.833985446,4705034.8008352453],[-10539152.732930318,4705036.0252424367],[-10538892.555676172,4705037.346507363],[-10538861.727760291,4705037.5047193365],[-10538632.300126031,4705037.496415453],[-10538372.886239231,4705037.480161991],[-10538371.321541291,4704884.1747554783],[-10538372.261454633,4704776.9380934602],[-10538374.544201691,4704516.5770860789],[-10538376.822439248,4704255.4280166356],[-10538379.105879586,4703993.7108420189],[-10538380.929961417,4703782.9594667722],[-10538380.802947924,4703731.965045576],[-10538380.604097545,4703651.5533136753],[-10538381.627417721,4703470.4254306769],[-10538382.22963563,4703361.6189895142],[-10538382.984097548,4703208.9900128804],[-10538383.809765734,4703042.0454282528]]]},"attributes":{"objectid":6652,"field_kid":"1000149154","approxacre":4469,"field_name":"STANLEY","status":"Abandoned","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":23848,"maxgaswell":1,"lastgaspro":19,"lastgaswel":1,"lastgdate":"10-1986","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149154}},{"geometry":{"rings":[[[-10633172.936182288,4572774.1953940718],[-10633171.895782286,4572519.2116286522],[-10632916.274680311,4572518.9929783363],[-10632660.886841232,4572518.7672167653],[-10632405.48808982,4572518.5297755441],[-10632150.157014683,4572518.2861130461],[-10631895.009946965,4572518.0442264564],[-10631639.96259162,4572517.795483565],[-10631385.005137583,4572517.5360758612],[-10631130.147496043,4572517.2700657696],[-10631128.379669776,4572261.5199302267],[-10631126.612744665,4572005.7701343521],[-10631124.84541928,4571750.0282946853],[-10631123.07669249,4571494.2947913734],[-10631378.103075877,4571494.5762963649],[-10631633.217959005,4571494.8524691388],[-10631888.438761463,4571495.1172163887],[-10632143.756873578,4571495.3753619259],[-10632399.224555161,4571495.8452441962],[-10632654.840503845,4571496.3091590712],[-10632910.613829928,4571496.7753576823],[-10633166.541329768,4571497.236223558],[-10633165.202481927,4571239.5485894112],[-10633163.88277244,4570985.6374495244],[-10633163.861637138,4570983.0380767668],[-10633162.526103754,4570727.7327770134],[-10633161.198384566,4570473.6238429621],[-10633159.391121922,4570218.7715140628],[-10633157.574742725,4569962.4669798054],[-10633157.550704347,4569959.9093670286],[-10633155.742038943,4569704.7262126841],[-10633153.905224284,4569445.5396738918],[-10633407.535935991,4569445.232314311],[-10633661.388597658,4569444.9178458154],[-10633915.462608598,4569444.5918263607],[-10634169.767179189,4569444.2578095328],[-10634424.199794004,4569443.9268377721],[-10634678.682164811,4569443.5895198733],[-10634933.255938482,4569443.2376059946],[-10635187.83742078,4569442.8812500369],[-10635442.169622649,4569442.6104373401],[-10635696.569801034,4569442.3339129407],[-10635951.057878403,4569442.0548496069],[-10636205.578992931,4569441.7704555895],[-10636206.780326493,4569698.5539638763],[-10636207.985568712,4569956.1755487779],[-10636209.182197746,4570213.0819595931],[-10636210.378925975,4570469.7874577353],[-10636210.929126386,4570726.6064430578],[-10636211.480627691,4570983.3063746355],[-10636212.029925877,4571239.8739152616],[-10636212.578422632,4571496.3312698994],[-10636213.691254891,4571752.6927708304],[-10636214.804086532,4572008.9167766068],[-10636215.915816313,4572265.0013728952],[-10636217.02724514,4572520.9475650825],[-10635962.887815041,4572521.1632117806],[-10635708.584800521,4572521.3732738122],[-10635454.22011647,4572521.5815589894],[-10635199.762227327,4572521.7836241834],[-10635201.441640982,4572776.2449499629],[-10635203.120154101,4573030.7782846075],[-10635204.80637634,4573285.3761426443],[-10635206.49179812,4573540.0375132533],[-10634953.249428028,4573539.5969213806],[-10634699.825253004,4573539.1482051071],[-10634446.241297843,4573538.6850159513],[-10634192.484447798,4573538.2152259182],[-10633938.7508261,4573538.2098778486],[-10633685.273793615,4573538.1976715652],[-10633430.914666757,4573538.1791239921],[-10633176.053674147,4573538.1549938796],[-10633175.013376266,4573283.6727386303],[-10633173.973778455,4573029.0103511009],[-10633172.936182288,4572774.1953940718]]]},"attributes":{"objectid":4919,"field_kid":"1000152659","approxacre":2055,"field_name":"PIQUA","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":94978.889999999999,"maxoilwell":22,"lastoilpro":118.86,"lastoilwel":16,"lastodate":"12-2008","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000152659}},{"geometry":{"rings":[[[-10575036.685790841,4572686.0722775487],[-10575037.712646833,4572430.9293243382],[-10575030.386063918,4572430.9074300649],[-10575031.007859146,4572174.8045390863],[-10575031.630558316,4571918.3671189491],[-10575032.256059881,4571662.0340395458],[-10575032.880460631,4571405.652964117],[-10575033.507869834,4571148.6931697],[-10575034.134578161,4570891.7459602039],[-10575034.7629903,4570634.5879353527],[-10575035.38889589,4570377.8647946408],[-10575036.290712385,4570122.1533778692],[-10575037.190926692,4569866.4863401521],[-10575038.094248686,4569610.3422954679],[-10575038.998073883,4569353.8957881434],[-10575296.527223315,4569355.6769598201],[-10575554.044252226,4569357.4518814664],[-10575811.537744204,4569359.2197888857],[-10576069.007508978,4569360.9818585068],[-10576069.01355534,4569356.3461342286],[-10576328.781866167,4569357.2530359197],[-10576587.977719856,4569358.1521981126],[-10576846.623041628,4569359.0381633323],[-10577104.715228457,4569359.9142314186],[-10577362.245570321,4569360.7858597646],[-10577619.222176537,4569361.6489870436],[-10577875.619918339,4569362.4961253125],[-10578131.421976348,4569363.3346357616],[-10578130.085412877,4569109.4615232088],[-10578128.724861024,4568851.0135681452],[-10578128.724589417,4568847.6570660081],[-10578127.393043177,4568592.451488479],[-10578126.045007667,4568333.7825262779],[-10578124.322515713,4568078.2222109549],[-10578122.598323351,4567822.4854567824],[-10578120.87032841,4567566.5438524857],[-10578119.140032483,4567310.4126400063],[-10578117.407936586,4567054.0403169254],[-10578115.673139164,4566797.4872979885],[-10578113.936841955,4566540.7121063191],[-10578112.19754312,4566283.7283342527],[-10578361.92165106,4566283.3742810534],[-10578612.548295248,4566283.013499896],[-10578617.642543873,4566283.0157642933],[-10578864.093794322,4566282.6581710242],[-10579116.560150756,4566282.2872326728],[-10579123.325117702,4566282.2667795224],[-10579369.926140247,4566281.8933259752],[-10579624.193464532,4566281.502080325],[-10579629.286411667,4566281.5033297082],[-10579879.37954355,4566281.1202201853],[-10580135.485578908,4566280.7219892861],[-10580136.104578925,4566026.1153434115],[-10580136.720865522,4565772.714514792],[-10580137.35558176,4565518.3337199148],[-10580137.991901973,4565263.7126574432],[-10580138.623619067,4565008.8462704448],[-10580139.256439405,4564753.7577921497],[-10580139.887561861,4564498.2026599217],[-10580140.518883727,4564242.7502250765],[-10580141.248921573,4563986.9979843972],[-10580141.979665194,4563730.6760300705],[-10580142.009044955,4563725.3247407787],[-10580142.712111177,4563474.3134695534],[-10580143.431544198,4563217.7287968351],[-10580143.440615252,4563210.6792498445],[-10580144.145572454,4562960.9837981183],[-10580144.870514933,4562704.0490595633],[-10580144.897171481,4562701.03382638],[-10580145.61277915,4562446.9067119109],[-10580146.33742483,4562189.5751606859],[-10580146.903884407,4561932.7713617627],[-10580147.214857232,4561791.4481036831],[-10580148.210493071,4561676.0612885142],[-10580150.355363881,4561419.3988984441],[-10580152.502337171,4561162.7384103704],[-10580411.990176022,4561163.3899937421],[-10580670.423003586,4561164.0323231835],[-10580928.698350368,4561164.6689464729],[-10581186.515471091,4561165.2959333453],[-10581443.322833467,4561165.7991516618],[-10581699.791406909,4561166.2938744966],[-10581955.487793872,4561166.7718603015],[-10582210.166712623,4561167.2430015206],[-10582467.073288644,4561167.7756407354],[-10582724.432984972,4561168.302952148],[-10582981.767152054,4561168.8218938326],[-10583239.217552638,4561169.3356356872],[-10583239.420355557,4561426.450353724],[-10583239.621956697,4561683.6168371513],[-10583239.821755398,4561940.8321729368],[-10583240.01995199,4562198.0852039335],[-10582982.753969662,4562197.5094126174],[-10582725.5463544,4562196.9267723924],[-10582468.80657639,4562196.3329696562],[-10582211.987106919,4562195.7337136082],[-10582211.016774345,4562452.2355189985],[-10582210.046843925,4562708.5489674937],[-10582209.070307741,4562964.6595858112],[-10582208.093973584,4563220.570783725],[-10582207.132158117,4563476.2556556463],[-10582206.17164577,4563731.7599767512],[-10582205.201923197,4563987.2326557692],[-10582204.233606186,4564242.2550750682],[-10582200.853320505,4564497.2188156787],[-10582197.456204163,4564753.5051095542],[-10582194.061499262,4565008.7985600047],[-10582190.671502028,4565263.8415114656],[-10582187.307635782,4565518.7809863649],[-10582183.946073262,4565773.6054319181],[-10582180.57580296,4566028.1858079694],[-10582177.207536178,4566282.6348912204],[-10582431.133864459,4566282.7672726801],[-10582685.355031295,4566282.8931822339],[-10582939.869134497,4566283.0130005097],[-10583194.657352464,4566283.1262200894],[-10583449.74701657,4566283.233855878],[-10583705.113498533,4566283.3348929537],[-10583960.741380604,4566283.4369440526],[-10584216.64277673,4566283.5342996111],[-10584222.005439356,4566029.7293720823],[-10584227.369604161,4565775.8851023894],[-10584229.647446701,4565669.189330671],[-10584232.818166275,4565522.0072021028],[-10584238.072218789,4565278.0683343895],[-10584238.260321518,4565268.0862858808],[-10584242.775215747,4565013.7667644778],[-10584247.226005556,4564763.0037610512],[-10584247.316742357,4564759.2507505976],[-10584252.232099174,4564504.6327652531],[-10584257.147657603,4564249.8684186256],[-10584257.933526006,4564000.7036667429],[-10584257.986246964,4563993.7524066363],[-10584259.915688066,4563737.7268063631],[-10584261.841826964,4563481.5270187808],[-10584263.769468503,4563225.2304294957],[-10584265.695207033,4562969.0379562806],[-10584267.620144965,4562712.8178103548],[-10584269.548186703,4562456.5783645026],[-10584271.475027196,4562200.3319224063],[-10584275.75786511,4561944.9798220061],[-10584278.336462392,4561791.2778518517],[-10584278.034104582,4561689.0061096698],[-10584278.03483564,4561685.531062332],[-10584277.358259097,4561432.5106407637],[-10584276.670503337,4561175.6293900535],[-10584276.667138373,4561171.1566022998],[-10584275.968435729,4560918.2264430076],[-10584275.255359905,4560660.3203524705],[-10584275.249781633,4560657.0858260877],[-10584274.562811362,4560401.9929456981],[-10584273.865961971,4560143.2013946604],[-10584272.170940466,4559887.4016692741],[-10584270.50911103,4559636.9003607063],[-10584270.480420291,4559632.0475912178],[-10584268.782488098,4559377.100962651],[-10584267.130248457,4559129.0470955083],[-10584267.07674329,4559122.5772219561],[-10584265.357587129,4558867.5922486475],[-10584263.684923058,4558619.6586882798],[-10584263.656042336,4558613.6297075422],[-10584261.971808558,4558360.6890164623],[-10584260.294173582,4558108.7621137276],[-10584512.683781834,4558109.1506526452],[-10584760.418645293,4558109.5261480976],[-10584764.751120036,4558109.5391925741],[-10585016.582086921,4558109.915182204],[-10585262.530799512,4558110.2762305792],[-10585268.016398365,4558110.2881304119],[-10585285.711718075,4558110.2084577763],[-10585519.405939253,4558112.8533287086],[-10585766.708785513,4558115.6453468716],[-10585770.642902611,4558115.6833679369],[-10586021.718881102,4558118.5106192054],[-10586272.664209614,4558121.3295041667],[-10586272.177992607,4557865.0074346773],[-10586271.694467532,4557609.966886213],[-10586271.190636735,4557352.9198827408],[-10586270.695484547,4557099.4649349172],[-10586270.691218913,4557094.9746333202],[-10586270.197591985,4556838.8365748813],[-10586269.710441425,4556586.2567584245],[-10586269.708969232,4556582.8836842254],[-10586269.225050414,4556327.1049197605],[-10586268.742131285,4556071.4978602258],[-10586521.51481563,4556069.0734516643],[-10586774.64060556,4556066.6396629605],[-10586777.741366498,4556066.6073315674],[-10587028.120201966,4556064.1867341045],[-10587281.931078888,4556061.725565983],[-10587286.067529172,4556061.6886684047],[-10587536.116185559,4556059.2666789833],[-10587790.652695889,4556056.7946092794],[-10587793.753456831,4556056.7620244157],[-10588045.557229025,4556054.3039064361],[-10588300.726466216,4556051.8052180549],[-10588556.003199322,4556052.4389798576],[-10588811.100826805,4556053.0665313015],[-10589066.033765215,4556053.6886328645],[-10589293.612893397,4556054.2390740784],[-10589320.803617666,4556054.1604056954],[-10589575.371849051,4556053.4465302015],[-10589829.758572061,4556052.7265711799],[-10590083.918334458,4556052.0063594142],[-10590337.876565501,4556051.2799374145],[-10590337.846466377,4556307.5300870473],[-10590337.815365292,4556563.8785792589],[-10590337.776754739,4556820.3296046034],[-10590337.739444826,4557076.8824101565],[-10590337.688225355,4557332.7160492893],[-10590337.637708656,4557588.334387037],[-10590337.601410056,4557843.7579451129],[-10590337.566214792,4558098.9538737871],[-10590338.598540319,4558354.7221422922],[-10590339.636658769,4558612.0493051317],[-10590340.640846668,4558868.4301578617],[-10590341.645736318,4559124.7086753352],[-10590342.673257573,4559380.3561202427],[-10590343.70737821,4559636.9363581911],[-10590344.727187954,4559892.8946372746],[-10590345.74559705,4560148.7489021476],[-10590588.696655156,4560149.2404717151],[-10590833.108891051,4560149.7286127619],[-10590837.205895325,4560149.7292331699],[-10591078.922335884,4560150.2119306326],[-10591326.158814628,4560150.7001891024],[-10591331.209113399,4560150.7125990335],[-10591574.734431021,4560151.1857802738],[-10591824.378274042,4560151.6637596972],[-10591827.756653043,4560151.6799792834],[-10592075.080432231,4560152.1433840645],[-10592326.851017319,4560152.6104513705],[-10592323.911077185,4560407.6530569838],[-10592320.968031447,4560662.935759115],[-10592318.032492338,4560918.4524885425],[-10592315.095249621,4561174.1659788862],[-10592312.143788317,4561430.1439659959],[-10592309.189321892,4561686.3202684922],[-10592307.997849848,4561788.1570478966],[-10592305.033173611,4561942.7432256173],[-10592300.110142242,4562199.467770854],[-10592296.919906342,4562455.5383715266],[-10592293.727667997,4562711.6358321179],[-10592290.555252217,4562967.7651013015],[-10592287.381234374,4563223.9301136481],[-10592284.187193312,4563480.1318867458],[-10592280.991750423,4563736.3687743265],[-10592277.813226793,4563992.6341828285],[-10592274.636705251,4564248.9339497602],[-10592032.171132289,4564247.8473224258],[-10591796.267693317,4564246.7835047897],[-10591790.022623466,4564246.7475012951],[-10591548.183870167,4564245.6598569984],[-10591314.915756786,4564244.6054170243],[-10591306.642258102,4564244.5609217705],[-10591065.638663746,4564243.4624920664],[-10590830.739678083,4564242.3858588897],[-10590824.813073754,4564242.3631738117],[-10590584.179204015,4564241.2476177504],[-10590343.701813975,4564240.1267333599],[-10590091.426875787,4564239.3434479591],[-10589847.925510632,4564238.5811881972],[-10589839.930431366,4564238.5647264626],[-10589589.216885943,4564237.7703992091],[-10589349.086991707,4564237.0041947644],[-10589339.301356837,4564236.9657939924],[-10589295.666759668,4564236.8363093417],[-10589089.946272219,4564236.0432134727],[-10588847.951338168,4564235.1037347149],[-10588841.149128646,4564235.0683675371],[-10588592.887900321,4564234.0973252822],[-10588345.187215609,4564233.121968044],[-10588336.100851893,4564487.1122681219],[-10588326.98484667,4564741.9709160998],[-10588326.796382098,4564747.4577046437],[-10588317.824583253,4564997.6888419893],[-10588308.623966036,4565254.2748630801],[-10588308.373614626,4565261.5583383087],[-10588299.4141281,4565512.0330208475],[-10588290.166640544,4565770.5376212206],[-10588289.986287389,4565775.7856730856],[-10588280.882504471,4566029.7944294326],[-10588271.564523153,4566289.7977924086],[-10588526.218279051,4566290.7808886282],[-10588780.600022696,4566291.7572613945],[-10588784.976447122,4566291.7680293536],[-10589034.685326077,4566292.7247538762],[-10589288.480095908,4566293.689963704],[-10589293.851062013,4566293.7160801394],[-10589542.030591326,4566293.9688906791],[-10589795.254011456,4566294.2219357602],[-10589798.954760164,4566294.2297881003],[-10590048.208723012,4566294.4834826933],[-10590225.238066439,4566294.659168697],[-10590300.881882545,4566298.0041498356],[-10590299.683054149,4566553.1134935524],[-10590298.507999167,4566803.0064187329],[-10590298.503451619,4566807.8011255367],[-10590297.277495285,4567062.5630183909],[-10590296.083634445,4567310.6884414749],[-10590296.066058364,4567317.0214240393],[-10590294.860638563,4567570.3314618338],[-10590293.671967423,4567820.3142297445],[-10590293.668631665,4567823.9309155913],[-10590292.450091917,4568077.8095279029],[-10590291.231349235,4568332.0019637812],[-10590036.940923456,4568330.8774711043],[-10589781.549934283,4568329.7401656611],[-10589526.724995047,4568328.5908022709],[-10589294.54965763,4568327.536145512],[-10589271.822364762,4568327.6505754068],[-10589016.85544068,4568328.9821663694],[-10588761.931365859,4568330.3065239154],[-10588506.944519076,4568331.6217449103],[-10588251.92012926,4568332.9298597025],[-10588250.906017698,4568588.8939768653],[-10588249.892107973,4568844.6824196074],[-10588248.891315004,4569100.2845143396],[-10588247.890423626,4569355.7007551081],[-10588246.881925136,4569610.9393780213],[-10588245.874028934,4569866.0044315504],[-10588244.858125271,4570120.8799104858],[-10588243.842924071,4570375.5732896738],[-10587989.238830727,4570376.6287341835],[-10587734.42259392,4570377.6770717595],[-10587479.213105751,4570378.7158914916],[-10587223.68945699,4570379.7496355418],[-10587222.233845513,4570635.6558739571],[-10587220.77943643,4570891.4543111296],[-10587219.309009749,4571147.1701998161],[-10587217.841887835,4571402.7837312091],[-10587215.987918226,4571658.8170191925],[-10587214.128133267,4571915.8506215671],[-10587212.275357585,4572172.7520912187],[-10587210.421378586,4572429.883362052],[-10586953.351876495,4572429.840795557],[-10586696.115282657,4572429.7898508683],[-10586438.791388731,4572429.7241799776],[-10586181.293395007,4572429.651908271],[-10585926.531343177,4572429.4449274363],[-10585671.13666518,4572429.2312207976],[-10585416.347582495,4572429.003546699],[-10585161.738106029,4572428.771174551],[-10584907.334866339,4572428.5346120624],[-10584653.135660917,4572428.2930975128],[-10584399.121067449,4572428.0479005221],[-10584145.289083656,4572427.7962281257],[-10583891.278703487,4572426.5753957247],[-10583637.310571846,4572425.3493581628],[-10583383.069727119,4572424.1244644513],[-10583128.654081775,4572422.89233525],[-10583126.024943633,4572679.2173742428],[-10583123.397307474,4572935.5225951402],[-10583120.771073226,4573191.8022832433],[-10583118.145540407,4573448.0197436921],[-10583114.604657164,4573704.2098924313],[-10583111.064274097,4573960.4560171552],[-10583107.507773658,4574216.5840393072],[-10583103.950873323,4574472.6576932464],[-10583101.183580942,4574728.5616724016],[-10583098.418594442,4574984.1015544953],[-10583095.650001768,4575239.886853463],[-10583092.878805513,4575495.7505946672],[-10583090.804810947,4575751.4639377845],[-10583088.726808434,4576007.5724543026],[-10583086.648105988,4576263.5898898412],[-10583084.56609918,4576519.6818501046],[-10582830.425493153,4576518.4312810348],[-10582576.223817065,4576517.1746162008],[-10582321.965976501,4576515.9169356935],[-10582067.642560693,4576514.6541754548],[-10582068.413726591,4576771.701846825],[-10582069.186787106,4577029.6297194753],[-10582069.190733626,4577036.3491642596],[-10582069.94652478,4577288.4377322886],[-10582070.726177713,4577548.1320479214],[-10582070.769849963,4577557.152343357],[-10582071.518837402,4577808.7777669532],[-10582072.298574558,4578070.320976885],[-10582072.305324981,4578076.9618345024],[-10582073.0734984,4578332.7730510421],[-10582073.864132445,4578596.1363450075],[-10581820.470096812,4578594.6974339159],[-10581566.186940717,4578593.246586524],[-10581559.73453483,4578593.2181630004],[-10581311.008957613,4578591.7850731518],[-10581054.926136088,4578590.3022234337],[-10581047.000138896,4578590.2623743899],[-10580798.033485044,4578588.8162020333],[-10580540.239099124,4578587.3118929658],[-10580534.742590472,4578587.277748582],[-10580281.56460301,4578585.8044125605],[-10580021.968348948,4578584.2888068883],[-10579777.643016225,4578583.5607059086],[-10579534.436267432,4578582.8304401124],[-10579291.815391058,4578582.1046175342],[-10579049.931560704,4578581.3744724663],[-10578808.525779108,4578580.6381007284],[-10578567.697460365,4578579.8965180833],[-10578326.996187484,4578579.149726673],[-10578085.940507874,4578578.3941720165],[-10577830.94502442,4578578.059911049],[-10577575.312710067,4578577.7173962761],[-10577320.904300548,4578577.3722080281],[-10577067.113099506,4578577.0218086597],[-10576813.114560513,4578576.66671021],[-10576560.229799967,4578576.3065252863],[-10576306.198924024,4578575.9308483629],[-10576051.750969408,4578575.5490760626],[-10575796.46196091,4578573.8131829584],[-10575540.461936394,4578572.0642095534],[-10575380.388411634,4578570.9765956225],[-10575285.877383925,4578570.598508155],[-10575032.001510004,4578569.5801533414],[-10574777.193456821,4578568.540722535],[-10574522.64840824,4578567.4974777307],[-10574268.177645668,4578566.4565184815],[-10574013.852151377,4578565.4089519652],[-10574013.42271878,4578311.026480956],[-10574012.992290521,4578056.0051085921],[-10574012.967641477,4578046.6631305348],[-10574012.56427045,4577800.3547894321],[-10574012.145366443,4577544.0659165978],[-10574012.142366625,4577531.8857214488],[-10574011.738580376,4577287.3238491546],[-10574011.455412954,4577115.7170214094],[-10574011.529627196,4577030.1414465969],[-10574011.534409665,4577021.1021677991],[-10574011.712531773,4576772.4942272706],[-10574011.89694231,4576514.3579724561],[-10574011.079382498,4576257.4196737586],[-10574010.266113523,4576002.1483583767],[-10574009.422214827,4575746.2091184547],[-10574008.579917105,4575490.3812189428],[-10574007.756843586,4575234.3321974305],[-10574006.935369089,4574978.622834377],[-10574006.126406137,4574723.2664374756],[-10574005.321144471,4574468.2692025807],[-10574008.199546257,4574213.4936789982],[-10574011.040074354,4573962.2250381932],[-10574011.093868453,4573958.4885019157],[-10574013.985890457,4573703.1954095969],[-10574016.814791843,4573453.4883734677],[-10574016.865300184,4573447.632198533],[-10574271.826200848,4573449.0070389938],[-10574526.25708794,4573450.3704576213],[-10574780.194403613,4573451.7258821288],[-10575033.620427389,4573453.0705194417],[-10575034.638976153,4573197.6307734679],[-10575035.658130111,4572941.6675171861],[-10575036.685790841,4572686.0722775487]]]},"attributes":{"objectid":5109,"field_kid":"1000146300","approxacre":30387,"field_name":"BRONSON-XENIA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":2677301.7400000002,"maxoilwell":308,"lastoilpro":890.12,"lastoilwel":121,"lastodate":"2-2009","cumm_gas":298296,"maxgaswell":5,"lastgaspro":625,"lastgaswel":5,"lastgdate":"2-2009","avgdepth":682.99592593,"avgdepthsl":-344.55962963000002,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146300}},{"geometry":{"rings":[[[-10645097.13067917,4566402.0326445941],[-10645352.555185884,4566404.6071368353],[-10645350.872998331,4566659.8912154539],[-10645349.189508205,4566915.0403493745],[-10645349.161006141,4566919.5332187898],[-10645347.501619987,4567171.2463881904],[-10645345.80933091,4567428.0961256456],[-10645345.761420609,4567434.627598526],[-10645344.101733197,4567686.2622766383],[-10645342.392638681,4567945.192046918],[-10645342.360132633,4567949.7653077757],[-10645340.681147702,4568205.0852354346],[-10645338.968857836,4568465.3110754713],[-10645084.934313964,4568461.9821981369],[-10644955.301596105,4568460.2821187647],[-10644831.957057601,4568458.1014093375],[-10644578.408654366,4568453.6171985287],[-10644324.817102907,4568449.124867822],[-10644071.240268422,4568444.6291122446],[-10643817.856952295,4568440.1285345592],[-10643563.838420985,4568435.6033438276],[-10643309.465290634,4568431.065213168],[-10643310.202097781,4568173.683114795],[-10643310.913827717,4567924.4123268444],[-10643310.940712908,4567917.2611587662],[-10643311.672626458,4567661.8028269336],[-10643312.376272522,4567416.5663986113],[-10643312.404846258,4567407.2981504835],[-10643313.141473547,4567153.212226768],[-10643313.85392637,4566907.5083162878],[-10643313.867595537,4566900.178306926],[-10643314.588117812,4566648.2068450898],[-10643315.306644423,4566397.2959874617],[-10643569.25147103,4566397.8215263877],[-10643823.389615323,4566398.3428769605],[-10643826.73097744,4566398.3406967577],[-10644077.716572175,4566398.852426501],[-10644332.2481595,4566399.3656540792],[-10644336.782564994,4566399.378437236],[-10644587.025723845,4566399.8815443842],[-10644841.96096571,4566400.3888058411],[-10644845.381416876,4566400.3870057119],[-10644955.392082324,4566400.6030750712],[-10645097.13067917,4566402.0326445941]]]},"attributes":{"objectid":5333,"field_kid":"1000152653","approxacre":633,"field_name":"MOERER","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":2967.1999999999998,"maxoilwell":1,"lastoilpro":26.52,"lastoilwel":1,"lastodate":"8-2002","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000152653}},{"geometry":{"rings":[[[-10594324.647036685,4564523.8163311249],[-10594329.011107888,4564270.382538056],[-10594072.129097179,4564267.7180330064],[-10593815.268811462,4564265.045663544],[-10593812.206095278,4564265.0209383266],[-10593558.435056096,4564262.3824279997],[-10593301.644250128,4564259.7057464309],[-10593297.547346698,4564259.6651683459],[-10593044.873867668,4564257.0184096992],[-10592788.101182619,4564254.321559581],[-10592784.997919895,4564254.2951854337],[-10592531.349621711,4564251.6339702448],[-10592274.636705251,4564248.9339497602],[-10592277.814729236,4563992.5528719788],[-10592280.991750423,4563736.3687743265],[-10592284.187193312,4563480.1318867458],[-10592287.381234374,4563223.9301136481],[-10592290.555252228,4562967.763832924],[-10592293.727667997,4562711.6358321179],[-10592296.919906342,4562455.5383715266],[-10592300.110142242,4562199.467770854],[-10592556.879738044,4562201.8962684879],[-10592813.647431681,4562204.3191861678],[-10593070.456973478,4562206.7267579567],[-10593327.306661393,4562209.1284959689],[-10593584.164558666,4562211.5344197368],[-10593841.042979533,4562213.9345097942],[-10594097.946529351,4562216.320014975],[-10594354.861292094,4562218.6972767226],[-10594610.244621515,4562218.2668190766],[-10594865.408899477,4562217.831542762],[-10595120.353525346,4562217.3839648953],[-10595375.081302308,4562216.9297927571],[-10595629.609650303,4562216.4744798969],[-10595883.917545235,4562216.01295326],[-10596138.011995204,4562215.5405201819],[-10596391.879184296,4562215.0614928612],[-10596646.314013951,4562215.8299461436],[-10596900.791692836,4562216.59370666],[-10597154.828866091,4562217.3408542424],[-10597408.591223855,4562218.0811540736],[-10597662.478725368,4562218.8135901308],[-10597916.271017617,4562219.5396851422],[-10598169.940568961,4562220.2622294007],[-10598423.473563587,4562220.9753888734],[-10598678.963012844,4562220.77043154],[-10598934.475788964,4562220.5572303059],[-10599190.034417739,4562220.3430142961],[-10599445.63749765,4562220.1186518911],[-10599701.064675651,4562219.8882023469],[-10599956.640023863,4562219.6484938366],[-10600212.11125261,4562219.3999077296],[-10600387.936733188,4562219.2242718544],[-10600468.17726953,4562218.5723486394],[-10600469.443940405,4561962.9052318158],[-10600470.307510722,4561788.6633084081],[-10600470.833355956,4561706.8323618965],[-10600470.838195521,4561703.0789388716],[-10600472.495989056,4561450.3441300374],[-10600474.180851663,4561193.4245889923],[-10600474.230555031,4561188.3151844963],[-10600475.888443723,4560936.1433907561],[-10600477.580621926,4560678.4471754562],[-10600477.588365559,4560674.6132195201],[-10600479.23856443,4560420.3605743451],[-10600480.914431218,4560161.8739791885],[-10600482.92185634,4559905.8643837832],[-10600484.904022614,4559653.1570541263],[-10600484.926876891,4559650.0634630434],[-10600486.946912827,4559394.4761463469],[-10600488.931268176,4559143.2687598458],[-10600488.949927412,4559139.0973463319],[-10600743.587805284,4559140.1412762655],[-10600998.360037468,4559141.1806413764],[-10601253.300763175,4559142.2127789278],[-10601508.366132034,4559143.2394641349],[-10601510.217083177,4558887.2866785452],[-10601512.060917908,4558632.2482262617],[-10601513.89664484,4558377.053624874],[-10601515.730868284,4558122.0601468533],[-10601770.227393491,4558122.6832185593],[-10602024.638120234,4558123.2998248599],[-10602278.958843654,4558123.9122477761],[-10602533.148116183,4558124.519219649],[-10602790.444348099,4558126.0284626801],[-10603047.640565233,4558127.5294655878],[-10603210.090192804,4558128.4652100159],[-10603304.765497198,4558129.1598758632],[-10603561.83203611,4558131.0413049897],[-10603818.816883223,4558132.9139867006],[-10604075.714332076,4558134.7784281215],[-10604332.548309639,4558136.6435037022],[-10604589.319216445,4558138.4997050762],[-10604842.276126781,4558138.6837025844],[-10605087.588296581,4558138.8550286405],[-10605094.883041671,4558138.8561635418],[-10605347.135656172,4558139.0245678956],[-10605589.296063812,4558139.1792885968],[-10605599.036673406,4558139.1808017958],[-10605850.573078534,4558139.3417267976],[-10606094.462640714,4558139.4908677991],[-10606101.757485921,4558139.491622366],[-10606352.590195887,4558139.6344186328],[-10606603.068405248,4558139.7715101624],[-10606605.74424972,4557884.4766888907],[-10606608.417990241,4557629.3116134191],[-10606611.086322999,4557374.2867959226],[-10606613.752151329,4557119.3952538585],[-10606616.427796643,4556863.6401143847],[-10606619.104544539,4556607.6282398291],[-10606621.788702259,4556351.3427904248],[-10606624.474663418,4556094.7896169713],[-10606626.663460789,4555838.4752337588],[-10606628.853461258,4555581.8655100046],[-10606628.889929416,4555578.2736216234],[-10606631.053975293,4555324.9651569854],[-10606633.250586649,4555067.7700137021],[-10606633.287063941,4555062.9608299239],[-10606635.451208949,4554809.6557915173],[-10606637.652830968,4554551.6638105912],[-10606639.860360229,4554293.5304601928],[-10606642.062378073,4554036.024484965],[-10606897.531435346,4554035.8125045849],[-10606908.989864409,4554035.8027424412],[-10607152.807474807,4554035.5963422554],[-10607407.927838698,4554035.3620578377],[-10607418.841152681,4554035.3521691635],[-10607662.831743779,4554037.1934456555],[-10607917.604100244,4554039.1149376128],[-10607928.474164816,4554039.1969270185],[-10608172.246110084,4554041.0395980682],[-10608426.749664167,4554042.9627380669],[-10608438.561891811,4554043.0516972281],[-10608681.141993362,4554044.8631939581],[-10608935.178326756,4554045.9186248649],[-10608949.078310335,4554045.9771684688],[-10609189.200944906,4554046.9773507528],[-10609443.203240415,4554048.0299937315],[-10609460.274602365,4554048.1007021349],[-10609697.17680715,4554048.5238909153],[-10609951.039849589,4554048.9689976675],[-10609969.046266852,4554049.0009268299],[-10610204.914605316,4554049.4195537353],[-10610458.693553036,4554049.8715038374],[-10610477.459126903,4554049.9040663671],[-10610712.592636513,4554050.3072326472],[-10610967.551817078,4554050.5915205423],[-10610985.520291628,4554050.6111570541],[-10611222.645349348,4554050.8675710214],[-10611478.081768673,4554051.1266397592],[-10611493.228158964,4554051.1422219705],[-10611733.803405555,4554052.2351693967],[-10611989.904070107,4554053.3971783826],[-10612009.740251761,4554053.4871485438],[-10612246.321792696,4554054.5589338513],[-10612503.064181929,4554055.7160003092],[-10612522.475284005,4554055.8030558731],[-10612760.130637173,4554056.8574791104],[-10613015.880610257,4554057.3281842973],[-10613031.539378678,4554057.3583401022],[-10613271.280788809,4554057.788497868],[-10613526.337880341,4554058.2500788346],[-10613536.968675507,4554058.2703516055],[-10613781.052286893,4554058.3303337609],[-10614035.375351978,4554058.3903122675],[-10614041.586960835,4554058.3923377022],[-10614289.34672028,4554058.4391387729],[-10614542.933554718,4554058.4851773949],[-10614548.569714276,4554058.4855555659],[-10614796.149971198,4554058.5329903457],[-10615052.256751742,4554057.8130809413],[-10615057.50417272,4554057.7983785588],[-10615307.948663952,4554057.1066050017],[-10615563.22570789,4554056.3941730615],[-10615569.837368209,4554056.3754148837],[-10615818.107302673,4554056.5602231286],[-10616059.444714904,4554056.7356559355],[-10616072.5854422,4554056.7454093406],[-10616326.649114158,4554056.9123467878],[-10616549.687178519,4554057.0533159617],[-10616580.341667427,4554057.0721875625],[-10616833.64137747,4554057.2307611899],[-10616834.205727087,4554313.0701784007],[-10616834.77167749,4554569.3445054162],[-10616834.78307616,4554574.6312452471],[-10616835.329918189,4554826.0527605861],[-10616835.888057748,4555083.1978911841],[-10616835.892245974,4555089.3444499904],[-10616836.44719624,4555341.2185911145],[-10616837.016144317,4555599.8523052968],[-10616837.018533681,4555604.8200389873],[-10616837.576781541,4555859.092361806],[-10616838.14862998,4556118.9272715086],[-10616838.223327991,4556374.6914172247],[-10616838.299728995,4556630.0739692571],[-10616838.375128418,4556885.6359523935],[-10616838.452730395,4557141.1868505599],[-10616838.528031139,4557396.2389820293],[-10616838.604533827,4557651.0883234628],[-10616838.683740167,4557905.7280141814],[-10616838.76384813,4558160.1561371963],[-10616582.293466767,4558158.6076263692],[-10616325.453468032,4558157.0480862707],[-10616319.709876245,4558157.00485963],[-10616068.233239941,4558155.4776436836],[-10615810.632782469,4558153.9074551072],[-10615802.940888572,4558153.8614409836],[-10615552.662307194,4558152.3239552556],[-10615294.320512641,4558150.7310742624],[-10615288.538577557,4558150.6865798896],[-10615035.611403381,4558149.1170217292],[-10614776.539884897,4558147.5017018756],[-10614520.578278942,4558146.6651789779],[-10614269.143289516,4558145.8365125721],[-10614264.792572057,4558145.8172458969],[-10614009.187769841,4558144.9689323585],[-10613759.521980543,4558144.134432693],[-10613753.75866648,4558144.108701515],[-10613498.45830884,4558143.2473295825],[-10613247.655034352,4558142.3935606144],[-10613243.342560126,4558142.3745474732],[-10612988.369272659,4558141.4977083532],[-10612733.5623735,4558140.6149105337],[-10612478.550740382,4558140.3140253322],[-10612223.069176223,4558140.0047731511],[-10612219.511254758,4558140.0092133638],[-10611967.128393099,4558139.6952677779],[-10611710.728190865,4558139.3676334899],[-10611705.978021916,4558139.3544525132],[-10611704.20451452,4558394.3040688457],[-10611702.428402962,4558649.4128408516],[-10611700.646383585,4558904.6672140732],[-10611698.86145984,4559160.0565489186],[-10611442.501380781,4559159.4540307485],[-10611186.148309829,4559158.8433979684],[-10610930.190586058,4559158.234539873],[-10610674.507472984,4559157.6202295255],[-10610420.702582382,4559157.2691349555],[-10610166.626585335,4559156.9123350466],[-10609913.277610531,4559156.5437428998],[-10609660.316574527,4559156.1679233061],[-10609407.084328974,4559156.2709925994],[-10609154.293582665,4559156.3674683617],[-10608900.847595509,4559156.449490604],[-10608647.117386986,4559156.5241592629],[-10608645.838071499,4559411.1042359537],[-10608644.559957579,4559665.6118081259],[-10608643.285848541,4559920.0251877215],[-10608642.012540344,4560174.4068818986],[-10608386.386159707,4560175.2298558438],[-10608131.933807055,4560176.0409091469],[-10607877.0421573,4560176.8452424565],[-10607622.253423821,4560177.6434892192],[-10607622.226497632,4560432.7678835671],[-10607622.198872149,4560687.6838535406],[-10607622.169039847,4560943.2203576835],[-10607622.139104567,4561199.1678155232],[-10607622.561584001,4561454.7449261872],[-10607622.985064533,4561710.3474742416],[-10607623.415753115,4561965.9870027415],[-10607623.847543044,4562221.6334562423],[-10607624.075694518,4562478.4185514348],[-10607624.303246375,4562735.0683204522],[-10607624.531099673,4562991.5747625772],[-10607624.757452307,4563247.9490292985],[-10607625.184533365,4563504.1894616541],[-10607625.610514468,4563760.2687780214],[-10607626.035495596,4564016.2029497102],[-10607626.461579114,4564271.9965327857],[-10607371.796289556,4564273.1822458114],[-10607116.926467964,4564274.3644074667],[-10606861.897565827,4564275.5458084615],[-10606606.694265816,4564276.7218820872],[-10606606.318001652,4564534.5493337298],[-10606605.942034608,4564792.7986522214],[-10606605.568567077,4565051.4842046425],[-10606605.193494311,4565310.6180759622],[-10606350.592567949,4565309.7384344032],[-10606096.036592795,4565308.8535912996],[-10605840.932796881,4565307.9597416446],[-10605585.487313885,4565307.0579000488],[-10605584.451971272,4565565.7365056332],[-10605583.415123018,4565824.8819756359],[-10605582.371263409,4566084.4276086548],[-10605581.325798444,4566344.3896752568],[-10605325.870986974,4566342.6176414955],[-10605070.464030242,4566340.8402789477],[-10604815.118343541,4566339.0504823895],[-10604559.841235109,4566337.253326958],[-10604300.269146018,4566336.6096318271],[-10604040.09096978,4566335.9561681449],[-10603779.791255895,4566335.2982639382],[-10603519.205818187,4566334.6331281699],[-10603258.386815893,4566333.9516254989],[-10603210.329112314,4566333.824325949],[-10602997.314970192,4566332.3725062367],[-10602736.003278453,4566330.5685298666],[-10602474.428184383,4566328.7538969461],[-10602219.5995255,4566328.0689639393],[-10601965.115061829,4566327.3774319654],[-10601710.714294378,4566326.671308673],[-10601456.479117097,4566325.9576989356],[-10601202.425748579,4566325.2397746677],[-10600948.519549076,4566324.5152521823],[-10600694.804068567,4566323.7862882465],[-10600441.275903163,4566323.050599061],[-10600439.736223491,4566578.3447130863],[-10600438.190127037,4566834.6872091228],[-10600436.649842279,4567090.4825512189],[-10600435.109557858,4567346.2494289642],[-10600433.588595664,4567602.0193100004],[-10600432.068634598,4567857.7999354452],[-10600430.531754866,4568113.505521683],[-10600428.995075783,4568369.1724844761],[-10600172.822391314,4568367.8548499672],[-10599916.474405633,4568366.5301096756],[-10599912.534682782,4568366.5180695187],[-10599659.954822876,4568365.212476776],[-10599403.275957389,4568363.8787278887],[-10599397.983982153,4568363.8607286597],[-10599146.398563959,4568362.5452337228],[-10598889.362588609,4568361.1958773872],[-10598885.34437567,4568361.1811725823],[-10598632.114670008,4568359.8357352354],[-10598374.614562025,4568358.4596043956],[-10598119.026036596,4568358.4159504753],[-10597864.99159536,4568358.3678487558],[-10597609.858893389,4568358.3074417794],[-10597354.493424257,4568358.2391677294],[-10597098.903497519,4568358.1622651424],[-10596843.158292571,4568358.0783834923],[-10596587.19984282,4568357.9939950649],[-10596331.026746694,4568357.9036430428],[-10596074.793582378,4568357.7273777211],[-10595818.344169866,4568357.54349906],[-10595814.007991822,4568357.5367904175],[-10595561.702636898,4568357.3481998593],[-10595304.867081197,4568357.1506171674],[-10595299.057010977,4568357.1534321345],[-10595047.905680975,4568356.9576034835],[-10594790.752660895,4568356.7505043009],[-10594786.374935174,4568356.7412577635],[-10594706.464595433,4568356.6829460915],[-10594533.410625143,4568356.3939137775],[-10594275.853543216,4568355.9578826409],[-10594115.338772181,4568355.2476084745],[-10594021.27427787,4568355.7538188938],[-10593767.494115958,4568357.1189112887],[-10593514.103301188,4568358.4676318355],[-10593513.13478935,4568358.4611636149],[-10593258.665863633,4568356.8016452193],[-10593004.142064014,4568356.3671248145],[-10592749.497025261,4568355.9258790212],[-10592494.755675962,4568355.4819686413],[-10592239.931731889,4568355.0314596137],[-10592241.856816126,4568098.6417271979],[-10592243.779997339,4567842.3556586169],[-10592243.810861478,4567839.1194039769],[-10592245.722600091,4567586.1633482752],[-10592247.655991521,4567330.0646623634],[-10592247.695978727,4567325.409548481],[-10592249.584679849,4567073.7153476663],[-10592251.509664433,4566817.3184378399],[-10592251.539727649,4566814.0828834372],[-10592253.442558592,4566560.8740631556],[-10592255.368345119,4566304.3791820081],[-10592509.854213597,4566304.7426063297],[-10592764.439996833,4566305.0996863497],[-10593019.104570534,4566305.4562585624],[-10593273.869259223,4566305.8062327122],[-10593528.781217063,4566306.1478323424],[-10593783.774968859,4566306.4838490169],[-10594039.724017521,4566306.8073010985],[-10594293.92175559,4566307.1239084285],[-10594298.316281699,4566051.3710775943],[-10594302.614748299,4565801.1486825095],[-10594302.710604647,4565795.9578399183],[-10594307.108529007,4565540.8620950431],[-10594311.3787414,4565293.1048276406],[-10594311.496939609,4565286.0970135508],[-10594315.884946752,4565031.6788093932],[-10594320.177094094,4564782.8494223235],[-10594320.275253797,4564777.5799284326],[-10594324.647036685,4564523.8163311249]]]},"attributes":{"objectid":5434,"field_kid":"1000146311","approxacre":22447,"field_name":"MORAN","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":4838163.8600000003,"maxoilwell":537,"lastoilpro":3480.6199999999999,"lastoilwel":373,"lastodate":"2-2009","cumm_gas":57713,"maxgaswell":5,"lastgaspro":253,"lastgaswel":2,"lastgdate":"2-2009","avgdepth":874.77499999999998,"avgdepthsl":-171.82857143000001,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146311}},{"geometry":{"rings":[[[-10561809.215791026,4582638.4495886788],[-10561865.648359446,4582638.5703429813],[-10561867.236282172,4582894.6935083913],[-10561868.825905491,4583150.9926675959],[-10561870.399812363,4583407.1051258249],[-10561871.973219654,4583663.1195785226],[-10561873.543125613,4583918.8366082041],[-10561875.1128322,4584174.4711139882],[-10561876.687646246,4584429.9449232016],[-10561878.263460634,4584685.5292625967],[-10561623.021844164,4584684.7937115133],[-10561466.218776152,4584684.3379529826],[-10561368.713608051,4584684.1836022977],[-10561113.433344012,4584683.7766139172],[-10560857.826101216,4584683.3632737342],[-10560602.004209787,4584682.9456142643],[-10560345.984889708,4584682.5210932847],[-10560089.424542874,4584682.089841322],[-10559832.42749018,4584681.6500778953],[-10559831.259648662,4584939.1508669341],[-10559830.084884157,4585198.3346364452],[-10559828.942967027,4585456.4689705651],[-10559827.801751725,4585714.4880927661],[-10559826.639811017,4585972.662504036],[-10559825.544679251,4586216.0347725824],[-10559825.730057189,4586231.4365056893],[-10559827.093666857,4586363.1500573251],[-10559826.403052337,4586488.5377642484],[-10559824.991039587,4586744.7173915887],[-10559566.658943588,4586748.2315547885],[-10559313.150337663,4586751.6737195607],[-10559308.483028423,4586751.7391063655],[-10559050.873269364,4586755.2214817898],[-10558800.233087618,4586758.603235187],[-10558793.690304728,4586758.6992771635],[-10558793.590810308,4586500.9650558745],[-10558793.493119596,4586243.0591552248],[-10558793.367197728,4585984.9865458757],[-10558793.24227865,4585726.7413925985],[-10558793.142181829,4585469.2249377053],[-10558793.044273309,4585213.2961339662],[-10558792.929853642,4584956.4886158677],[-10558792.814733647,4584699.6342128487],[-10558799.437307578,4584699.5220418805],[-10558798.659311291,4584443.5750344396],[-10558797.878614593,4584187.3370753694],[-10558797.083003409,4583930.8010690399],[-10558796.285993317,4583673.9754253756],[-10559054.31224769,4583670.0481974799],[-10559312.032146949,4583666.1179232756],[-10559569.413854223,4583662.1833322085],[-10559826.500719722,4583658.2463301755],[-10559825.020584729,4583401.780910613],[-10559823.539051579,4583144.9423704194],[-10559822.04670913,4582887.7581868907],[-10559820.551066134,4582630.2211421644],[-10560076.175661741,4582631.4103909656],[-10560331.836799802,4582632.592904605],[-10560587.560510421,4582633.7740200758],[-10560843.361110251,4582634.9476374816],[-10561098.970889209,4582636.1099473536],[-10561354.565650908,4582637.26399766],[-10561465.271283906,4582637.772647623],[-10561610.131682511,4582638.0589256808],[-10561809.215791026,4582638.4495886788]]]},"attributes":{"objectid":4851,"field_kid":"1000146846","approxacre":1118,"field_name":"MAPLETON NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":2760,"maxoilwell":15,"lastoilpro":80,"lastoilwel":2,"lastodate":"5-1987","cumm_gas":38718,"maxgaswell":2,"lastgaspro":255,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146846}},{"geometry":{"rings":[[[-10592981.306062913,4680396.7403177442],[-10592981.960222874,4680138.3920903169],[-10592976.971806334,4680138.383003233],[-10592977.736291949,4679880.981158278],[-10592978.502579942,4679623.2057011239],[-10592979.253550347,4679365.4839662621],[-10592980.004320586,4679107.6904931534],[-10592980.758094653,4678849.4361003106],[-10592981.511568643,4678590.8688484328],[-10592982.287268367,4678331.9810650116],[-10592983.062868241,4678072.7813682221],[-10592940.346716495,4678072.6121030506],[-10592682.473299358,4678071.5931835612],[-10592469.035403993,4678071.1576911965],[-10592423.45056472,4678071.0650121095],[-10592164.32280973,4678070.5410738336],[-10591955.511316141,4678070.0915817441],[-10591905.116164275,4678070.079729381],[-10591645.831629245,4678070.0154948421],[-10591646.507199025,4677826.5285025239],[-10591647.184571519,4677582.2389029041],[-10591647.86644968,4677337.3406768711],[-10591648.549229413,4677091.7796171298],[-10591649.249229699,4676845.198595182],[-10591649.951132782,4676597.8735439619],[-10591650.642324204,4676349.7847680114],[-10591651.335118067,4676100.9595099008],[-10591651.439547466,4675839.945967136],[-10591651.545077687,4675579.4765287442],[-10591651.633287629,4675319.5579492683],[-10591651.720696209,4675060.2005728986],[-10591651.984406499,4674801.2593344292],[-10591652.245513635,4674542.5361012304],[-10591652.490101632,4674284.0913754916],[-10591652.733888466,4674025.946419525],[-10591661.585232338,4674025.8074037023],[-10591910.781513454,4674027.4358750451],[-10592169.279854802,4674029.1182920542],[-10592427.987135606,4674030.7831430854],[-10592687.671436084,4674032.4460676108],[-10592947.022755131,4674033.8882078463],[-10593205.191819314,4674035.3145819698],[-10593463.001471614,4674036.7123655891],[-10593503.233678102,4674036.9299320634],[-10593720.165682899,4674039.7266824264],[-10593976.491533173,4674043.0123053016],[-10593977.893740108,4674043.0315325595],[-10594235.421167208,4674046.5424254062],[-10594492.775996489,4674050.0515248151],[-10594749.98615998,4674053.5504967328],[-10595008.482502202,4674051.3203121368],[-10595172.582464198,4674049.9010355575],[-10595267.356177032,4674048.8784442162],[-10595526.608486062,4674046.1161670415],[-10595786.202586811,4674043.3419656167],[-10595786.101253266,4674302.9091586489],[-10595786.001021018,4674562.4378181668],[-10595785.894782159,4674821.6499506598],[-10595785.788042895,4675080.6706823502],[-10595785.677999448,4675340.167056445],[-10595785.56565273,4675600.424302334],[-10595785.463418476,4675859.651384511],[-10595785.3610834,4676119.7210530732],[-10595789.545478754,4676119.6598663013],[-10595789.248234635,4676362.6338037848],[-10595788.951591643,4676605.0830973759],[-10595788.645537101,4676848.4535996942],[-10595788.33978254,4677092.2673776774],[-10595788.039533429,4677337.1132868985],[-10595787.738082319,4677582.7051272541],[-10595787.449044295,4677829.6731052501],[-10595787.160206974,4678076.0751262503],[-10595813.757286841,4678075.928410925],[-10596070.018658618,4678074.5090119578],[-10596070.00932255,4678104.7224764498],[-10596070.021045413,4678331.7002148908],[-10596070.035044467,4678590.1408559689],[-10596070.030035604,4678593.8572769137],[-10596070.030321663,4678849.0753617128],[-10596070.030904287,4679108.7859821338],[-10596070.042714091,4679113.2305720095],[-10596070.043901158,4679368.4810222937],[-10596070.04436717,4679528.723233589],[-10596070.189850012,4679628.6350064343],[-10596070.197455913,4679631.9883744353],[-10596070.52391408,4679889.2183349598],[-10596070.85397324,4680150.1846001549],[-10596071.536936896,4680411.0627316441],[-10596072.222602256,4680673.6011699475],[-10596072.902962515,4680934.977285265],[-10596073.581921374,4681196.1155513786],[-10596074.277399357,4681457.0206974298],[-10596074.97407892,4681717.6902677678],[-10596075.665052136,4681978.1319433348],[-10596076.357226914,4682238.3582818517],[-10595818.044015879,4682235.8665148839],[-10595564.326771537,4682233.4118109988],[-10595559.659623262,4682233.3750053151],[-10595301.237287158,4682230.8840096388],[-10595048.877798695,4682228.4432869852],[-10595042.761489771,4682228.3981473465],[-10594784.117099196,4682225.8879059236],[-10594530.047951564,4682223.4158825241],[-10594525.421950443,4682223.3804881778],[-10594266.636197861,4682220.8554917844],[-10594007.760842603,4682218.3233104739],[-10593750.052723786,4682217.169767525],[-10593490.449232984,4682216.0017334763],[-10593231.735862212,4682214.8271511961],[-10592972.978140615,4682213.6469231946],[-10592974.580689007,4681953.2231104365],[-10592976.182136036,4681692.9272030471],[-10592977.763659898,4681433.0664880527],[-10592979.342280148,4681173.5665154727],[-10592979.996540969,4680914.2725305902],[-10592980.650401009,4680655.379654496],[-10592981.306062913,4680396.7403177442]]]},"attributes":{"objectid":4917,"field_kid":"1000148259","approxacre":4389,"field_name":"LELOUP","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":117864.28999999999,"maxoilwell":40,"lastoilpro":112.36,"lastoilwel":40,"lastodate":"12-2008","cumm_gas":127054,"maxgaswell":11,"lastgaspro":889,"lastgaswel":2,"lastgdate":"7-2001","avgdepth":667,"avgdepthsl":-275,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000148259}},{"geometry":{"rings":[[[-10597009.976832097,4464104.6599527625],[-10597007.125463879,4463853.7640437214],[-10597004.317093393,4463606.7067506313],[-10597004.277087517,4463601.9993922515],[-10597001.393358761,4463349.3493500184],[-10596998.500708031,4463095.8193832077],[-10596995.598434182,4462841.3835494667],[-10596992.686237153,4462586.0642759576],[-10596989.76491785,4462329.8609985607],[-10596986.833875569,4462072.773279028],[-10596986.899520697,4461819.1970124394],[-10596986.966280188,4461566.6526147537],[-10596987.033410678,4461311.8041115804],[-10596987.10082633,4461055.7700990131],[-10596987.17456957,4460801.3361182036],[-10596987.249813575,4460546.8320260709],[-10596987.310439683,4460292.2471512547],[-10596987.371264933,4460037.5822533024],[-10597241.508421032,4460038.4986592187],[-10597483.226900408,4460039.3643640373],[-10597495.076722967,4460039.4081476582],[-10597748.092890035,4460040.3156172121],[-10597982.941671697,4460041.1521924054],[-10598000.539702304,4460041.2108941739],[-10598252.414156314,4460042.0928481128],[-10598490.452203849,4460042.9213137114],[-10598503.720557149,4460042.9726572987],[-10598754.471218798,4460043.8353758017],[-10599004.655228836,4460044.6918048495],[-10599006.929928204,4460299.1712502511],[-10599009.030392325,4460534.2974045044],[-10599009.215739083,4460553.5820936169],[-10599011.48022409,4460807.9159138994],[-10599013.578491494,4461043.5873620212],[-10599013.746810226,4461062.1792377438],[-10599016.01639848,4461316.3681661878],[-10599018.160472756,4461556.581042001],[-10599018.289089018,4461570.4863368291],[-10599020.545759741,4461824.5236948319],[-10599022.803830687,4462078.4816166144],[-10599279.605675556,4462078.3233973654],[-10599528.750523111,4462078.1650488479],[-10599535.562949995,4462078.1568728099],[-10599790.674252365,4462077.9781486671],[-10600035.839727737,4462077.8011409352],[-10600044.937980833,4462077.7892348357],[-10600298.571485316,4462077.6058377437],[-10600544.386907421,4462077.4228111589],[-10600551.199634651,4462077.4137557801],[-10600802.817923579,4462077.2067077551],[-10601053.445574312,4462076.9943669029],[-10601057.627970541,4462328.6263931422],[-10601061.623021699,4462569.0163267422],[-10601061.812579012,4462581.1650433261],[-10601066.036142157,4462834.6306098104],[-10601070.084782468,4463077.543988741],[-10601070.257612318,4463088.9796894426],[-10601074.553216893,4463347.6830696324],[-10601078.57541807,4463589.9546758523],[-10601078.776411548,4463604.1213418813],[-10601081.920140753,4463858.3751128279],[-10601085.036009699,4464110.2151895519],[-10600830.1557632,4464113.1154728113],[-10600575.383040516,4464116.0068378691],[-10600558.083978208,4464116.199665687],[-10600319.869267397,4464118.9030915592],[-10600081.725938851,4464121.5988549618],[-10600063.866322407,4464120.9003390763],[-10600045.92731479,4464120.2014449621],[-10599806.541717265,4464110.8668169212],[-10599548.414388293,4464100.7942146715],[-10599532.914682712,4464100.1948744208],[-10599289.00118063,4464090.679257527],[-10599028.793358371,4464080.521451273],[-10598774.286642339,4464083.5880876016],[-10598527.163604373,4464086.5589810619],[-10598520.38552211,4464086.6474476047],[-10598267.100109031,4464089.6784229334],[-10598021.869244261,4464092.6066304119],[-10598014.421392879,4464092.6918189721],[-10597762.394926121,4464095.7007036377],[-10597516.573784428,4464098.6278978623],[-10597510.978560261,4464098.6970348796],[-10597260.172996154,4464101.6858385392],[-10597009.976832097,4464104.6599527625]]]},"attributes":{"objectid":4717,"field_kid":"1000149403","approxacre":1917,"field_name":"OSWEGO WEST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149403}},{"geometry":{"rings":[[[-10560533.721373301,4536607.1772193899],[-10560794.122365747,4536610.3565236218],[-10560794.043818338,4536616.7480076822],[-10560790.443163237,4536868.1966363238],[-10560786.749844892,4537126.1953336373],[-10560786.695213621,4537130.8949854141],[-10560783.060331238,4537384.3274483923],[-10560779.354199115,4537642.6572684748],[-10560520.295275863,4537639.2405281505],[-10560262.521237683,4537635.8339157496],[-10560003.630709929,4537632.4008542122],[-10559744.419211809,4537628.9569100467],[-10559747.161611725,4537370.910096881],[-10559749.904112045,4537112.9803782543],[-10559752.636401281,4536855.2303736741],[-10559755.367589872,4536597.6479239641],[-10560014.333523285,4536600.8238051422],[-10560273.792326467,4536603.9994357023],[-10560533.721373301,4536607.1772193899]]]},"attributes":{"objectid":4739,"field_kid":"1033975104","approxacre":164,"field_name":"Pawnee Township","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":1557,"maxgaswell":1,"lastgaspro":239,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1033975104}},{"geometry":{"rings":[[[-10591291.902985061,4532826.0268439557],[-10591290.022708433,4532555.9889917141],[-10591035.097831775,4532553.9830637258],[-10590778.983889943,4532551.9610693464],[-10590521.755268438,4532549.9332527751],[-10590263.344689904,4532547.8879786897],[-10590003.255984595,4532545.8134835763],[-10589740.96645252,4532543.7153298892],[-10589478.616550965,4532541.5974468235],[-10589215.497266069,4532539.4674195731],[-10589218.962797221,4532281.493339981],[-10589222.431128899,4532023.305593865],[-10589225.870840577,4531766.2203763193],[-10589229.319354476,4531508.4816470854],[-10589229.240038369,4531252.4241249571],[-10589229.161227714,4530996.7849807385],[-10589229.094327334,4530740.8646842167],[-10589229.029035676,4530485.5319188414],[-10589228.960736116,4530229.8292388674],[-10589228.892039334,4529974.4056711821],[-10589228.805924658,4529719.1663698712],[-10589228.720015453,4529464.3763198899],[-10589090.360100223,4529464.3521454372],[-10588971.332964238,4529463.3385084393],[-10588867.341488292,4529462.4525251668],[-10588714.588152371,4529462.4813697645],[-10588458.128878796,4529462.5174647244],[-10588202.092090094,4529462.5472405599],[-10587943.202026177,4529462.5680236416],[-10587691.223695748,4529462.5822715461],[-10587686.862389762,4529462.5900855083],[-10587433.096607469,4529462.5915537719],[-10587181.901275557,4529462.5858300831],[-10586933.662951898,4529463.7837435547],[-10586682.166488482,4529464.9892248418],[-10586669.478825737,4529465.0451617008],[-10586427.326787584,4529466.1993655609],[-10586169.190602973,4529467.4227632917],[-10586163.083593419,4529467.4491526959],[-10586157.653760495,4529467.4191578105],[-10585914.806197247,4529466.2824319201],[-10585657.962668067,4529465.0738137765],[-10585647.855165647,4529465.0196440583],[-10585398.545784764,4529463.8339524418],[-10585136.591488818,4529462.5825713137],[-10585140.654478094,4529206.3643148718],[-10585144.717867289,4528950.1150503205],[-10585144.86973769,4528941.1639390681],[-10585148.788263716,4528693.8112654779],[-10585152.850449923,4528437.4547340078],[-10585153.063543461,4528424.4450243907],[-10585153.184088271,4528416.3876342215],[-10585152.213725394,4528179.6104898248],[-10585151.154010028,4527921.3109505204],[-10585151.134174719,4527911.618049114],[-10585150.129830169,4527662.5603241306],[-10585149.086122731,4527403.3695146032],[-10585143.67414844,4527148.2042086488],[-10585138.265180087,4526893.2480052495],[-10585132.858509352,4526637.853232611],[-10585131.937847618,4526594.3534077769],[-10585131.680889368,4526382.206510447],[-10585382.310757969,4526384.357785726],[-10585633.490457619,4526386.5057786563],[-10585637.570740998,4526386.5491613774],[-10585886.801603947,4526388.6876604669],[-10586141.718192842,4526390.8672787612],[-10586393.612813411,4526393.0363842528],[-10586645.982879655,4526395.2025860278],[-10586898.778834783,4526397.3719506143],[-10587152.150350524,4526399.5408137003],[-10587410.26708808,4526399.641532423],[-10587668.169980139,4526399.7364354534],[-10587926.009098848,4526399.817308303],[-10588183.752807982,4526399.8918607719],[-10588441.325721046,4526399.9619881995],[-10588699.495318836,4526400.0246627266],[-10588702.625811759,4526400.0339122415],[-10588957.151227068,4526400.0873335106],[-10589217.655404039,4526400.1354897534],[-10589471.736831415,4526402.0159256002],[-10589721.185541451,4526403.8557552695],[-10589724.038215641,4526403.8744822685],[-10589976.648554491,4526405.7316506859],[-10590228.479098311,4526407.5792073654],[-10590482.864181908,4526410.0935083004],[-10590737.195403662,4526412.6000987804],[-10590991.392271291,4526415.1075729672],[-10591245.751925755,4526417.6094869515],[-10591495.351672042,4526416.3107119361],[-10591744.858111134,4526415.0057434738],[-10591994.454052864,4526413.6962259989],[-10592244.082631949,4526412.381147963],[-10592491.61580638,4526411.0861517414],[-10592728.955982989,4526409.8374682395],[-10592736.883180348,4526409.7905075671],[-10592979.015055764,4526408.4988856707],[-10593220.608312979,4526407.2059964119],[-10593219.047050176,4526592.6187821683],[-10593221.047261866,4526660.4991177041],[-10593228.344111925,4526907.9985913774],[-10593228.516875342,4526913.4167029839],[-10593235.965859419,4527165.848324419],[-10593243.39351074,4527417.5823440086],[-10593250.066280754,4527709.6575829685],[-10593256.010130836,4527969.8413161971],[-10593256.295010349,4527982.5294463821],[-10593262.338019863,4528246.5010646433],[-10593266.976680038,4528449.1259717988],[-10593267.303911917,4528512.0332856467],[-10593268.677758077,4528767.3358508172],[-10593269.869590715,4528988.9857079526],[-10593270.074659776,4529025.0605116514],[-10593271.450265806,4529285.1815295378],[-10593272.836913364,4529547.7067961544],[-10593274.726894075,4529814.843789788],[-10593276.60524369,4530080.5075364616],[-10593276.796762018,4530105.3384271432],[-10593278.484076096,4530344.6955215381],[-10593280.33746146,4530607.4029545626],[-10593282.277777519,4530881.0037391447],[-10593283.874115748,4531106.1066783387],[-10593284.147195498,4531144.8981284341],[-10593285.93500472,4531399.2219564999],[-10593287.651910933,4531643.429369255],[-10593539.990933888,4531647.6191375451],[-10593787.077726504,4531651.7140400643],[-10593792.032014867,4531651.8038467877],[-10594044.027243195,4531655.9786927607],[-10594285.119052796,4531659.9674720131],[-10594291.261305109,4531660.0759997396],[-10594295.886205114,4531659.3175326008],[-10594547.027107541,4531618.3582513994],[-10594784.997415677,4531579.5393461483],[-10594796.520620992,4531577.6621622397],[-10595044.251513388,4531537.2438036716],[-10595290.248417582,4531497.1007697368],[-10595292.680912189,4531744.7828751644],[-10595295.192396199,4532000.610888497],[-10595295.217072805,4532004.5937750535],[-10595297.765551582,4532264.7372919871],[-10595300.214493407,4532514.7603056235],[-10595300.41519469,4532537.1084612189],[-10595302.70035436,4532771.1153466599],[-10595305.079438832,4533014.7739626896],[-10595305.237005847,4533030.1303476607],[-10595307.563263198,4533268.3051805273],[-10595310.13440617,4533531.6032239683],[-10595309.179121114,4533804.8462753454],[-10595308.414492957,4534023.4764016569],[-10595308.253108408,4534064.7926862584],[-10595307.415036993,4534311.5727587473],[-10595306.664255777,4534532.7776132058],[-10595306.61354403,4534544.8645225111],[-10595050.969105056,4534575.0693922415],[-10594800.070106663,4534604.7056614365],[-10594795.291427221,4534605.2811880177],[-10594541.056002157,4534635.3028383674],[-10594287.785282444,4534665.20378491],[-10594033.659081062,4534695.211330222],[-10593778.838382432,4534725.2920813514],[-10593522.484725133,4534755.5487500224],[-10593264.908765353,4534785.9418724282],[-10593265.240448356,4534744.5092229974],[-10593018.94539674,4534729.6370906672],[-10592772.180806009,4534714.7310739327],[-10592524.987222781,4534699.796612272],[-10592277.302775934,4534684.8262424944],[-10592030.220921634,4534669.8834676445],[-10591792.561492357,4534655.5048981849],[-10591784.802178321,4534655.0402654344],[-10591540.611746326,4534640.2579273535],[-10591297.926944345,4534625.5618790835],[-10591298.373286359,4534611.2579391114],[-10591298.104809498,4534362.1162810214],[-10591297.85151522,4534126.8398606237],[-10591297.819742715,4534098.6398926843],[-10591297.538858358,4533841.6835471783],[-10591297.270141266,4533597.5972205754],[-10591295.489551287,4533342.0027201176],[-10591293.720893878,4533087.9942696057],[-10591293.644266341,4533076.2824999774],[-10591291.902985061,4532826.0268439557]]]},"attributes":{"objectid":4784,"field_kid":"1000150012","approxacre":7305,"field_name":"KIMBALL","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":3292,"maxoilwell":2,"lastoilpro":27,"lastoilwel":2,"lastodate":"6-1993","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150012}},{"geometry":{"rings":[[[-10617247.619506279,4464222.83358966],[-10617247.579135498,4463971.8980428698],[-10617121.156031422,4463972.2487201169],[-10616996.818347614,4463973.9847837398],[-10616743.52444675,4463977.51637155],[-10616487.236789029,4463981.0889848527],[-10616239.521931313,4463984.5362611255],[-10616228.153403044,4463984.6879275599],[-10615976.847598845,4463988.1838812009],[-10615736.030206732,4463991.527398387],[-10615727.007387338,4463991.6534825191],[-10615478.587315964,4463995.0914534824],[-10615231.612914251,4463998.5024433816],[-10615231.676911643,4463739.9318056768],[-10615231.736711882,4463504.9564869003],[-10615231.740223182,4463483.0634839637],[-10615231.801347541,4463227.9437129665],[-10615231.849898089,4463022.882832339],[-10614979.806660039,4463010.3287913632],[-10614727.671014089,4462997.7635778366],[-10614476.469646541,4462985.2325668978],[-10614226.326100212,4462972.7481986564],[-10613976.915099343,4462960.3041844228],[-10613736.090819623,4462948.2834917493],[-10613729.780427689,4462947.9608603511],[-10613484.043770397,4462935.6797641339],[-10613240.609472489,4462923.506016653],[-10613235.200787578,4462678.7373725576],[-10613230.914462315,4462484.6839484265],[-10613229.836169321,4462435.746724301],[-10613224.72985453,4462204.3006003322],[-10613219.948148832,4461987.5676345536],[-10612968.552605305,4461985.2927415026],[-10612721.229466481,4461983.0483384226],[-10612717.449699538,4461983.0054182857],[-10612466.607895341,4461980.7319187718],[-10612223.749514356,4461978.5240438413],[-10612216.036302324,4461978.3738827286],[-10611965.343847776,4461973.6948899152],[-10611717.389956959,4461969.0610558251],[-10611714.792956375,4461969.0170313213],[-10611464.280909399,4461964.3330186997],[-10611213.846051173,4461959.6453653229],[-10610961.409237582,4461961.0252307169],[-10610708.472746843,4461962.4033270124],[-10610457.758523403,4461963.7729310626],[-10610208.356716115,4461965.1289978866],[-10609955.621370353,4461967.7710891003],[-10609706.603418862,4461970.36703608],[-10609703.628582411,4461970.3889536662],[-10609692.106472714,4461970.5074093053],[-10609452.327976005,4461971.1319549717],[-10609201.643580575,4461971.7776146317],[-10609199.775384987,4461723.5920501705],[-10609197.905786179,4461475.2650987841],[-10609196.015247192,4461225.3322682809],[-10609194.115285991,4460974.2678440101],[-10609194.04441824,4460965.526013447],[-10609195.163946776,4460724.7527680267],[-10609196.335923404,4460472.521160502],[-10609196.35390301,4460468.3295620149],[-10609197.510375585,4460217.5046360241],[-10609198.698115898,4459959.7134441743],[-10608947.825803213,4459958.8085284177],[-10608696.304840818,4459957.8976941658],[-10608446.230750326,4459956.9860145282],[-10608196.903622918,4459956.0732218642],[-10608197.094307652,4459702.2908688616],[-10608197.285195978,4459448.8490602979],[-10608197.46587535,4459195.6970340619],[-10608197.646557778,4458942.8541094223],[-10608197.878605597,4458690.6191485552],[-10608198.108560115,4458439.2998986952],[-10608198.341012647,4458187.4973865543],[-10608198.573064547,4457935.6824167604],[-10608194.498154311,4457935.6868360173],[-10608194.376980409,4457682.143747543],[-10608194.255103767,4457428.4139990332],[-10608194.126417255,4457174.4923300287],[-10608193.997528588,4456920.3847813047],[-10608193.878961716,4456667.2712268336],[-10608193.759594653,4456414.2388162026],[-10608193.635622893,4456161.2754904497],[-10608193.511751896,4455908.384759984],[-10608446.543321762,4455908.221907082],[-10608692.862830726,4455908.0588781834],[-10608700.085281782,4455908.0583143439],[-10608954.168968141,4455907.8887095693],[-10609208.723999452,4455907.7134675579],[-10609215.121634064,4455657.0205380376],[-10609221.569908276,4455404.349114717],[-10609221.979227297,4455388.6413155273],[-10609228.077732895,4455149.7482998995],[-10609234.627687598,4454893.1991509981],[-10609493.673463551,4454893.8312914018],[-10609750.915052922,4454894.4524614532],[-10610006.413726587,4454895.0655501103],[-10610260.140050489,4454895.6675437531],[-10610513.429168638,4454896.2589804363],[-10610765.274216685,4454896.8423438044],[-10611015.54984967,4454897.4168772623],[-10611264.28790441,4454897.9814518522],[-10611264.269514445,4454880.1861295467],[-10611512.841139132,4454876.6941436026],[-10611763.070881346,4454873.1729548527],[-10612015.007097032,4454869.6240710802],[-10612268.642277503,4454866.046236773],[-10612523.270206153,4454862.4487225944],[-10612765.533537725,4454859.0193461869],[-10612778.309510721,4454858.8381662918],[-10613033.738265872,4454855.216324782],[-10613289.647276601,4454851.5808153786],[-10613289.225198509,4454863.619756747],[-10613285.455775242,4455108.2612611894],[-10613281.499147378,4455365.1154199997],[-10613281.386483444,4455372.374590857],[-10613277.542521557,4455622.1618788159],[-10613273.586097321,4455879.325574467],[-10613526.818080343,4455876.9680401934],[-10613781.331845475,4455874.5914577162],[-10613795.700658537,4455874.4613913475],[-10614036.917349923,4455872.2020989247],[-10614293.66419722,4455869.7926844303],[-10614315.474814333,4455869.5834678058],[-10614560.743090363,4455867.2691692188],[-10614819.441294059,4455864.823023526],[-10614827.15711504,4455864.7543008095],[-10615074.415692577,4455862.4153243816],[-10615331.162039923,4455859.9805550203],[-10615586.085956967,4455854.8848985657],[-10615835.078116689,4455849.9023336973],[-10615841.969283592,4455849.7676774738],[-10616098.657441067,4455844.6262512617],[-10616340.469800971,4455839.7772131655],[-10616353.183801107,4455839.6894135112],[-10616608.004037313,4455838.9408209361],[-10616847.142241163,4455838.2336236024],[-10616859.895286888,4455838.1952903746],[-10617107.532017214,4455837.4608219629],[-10617125.727856178,4455837.4064362794],[-10617354.780071195,4455833.5334454887],[-10617604.934085019,4455829.5365954498],[-10617853.271298653,4455825.5640565166],[-10618103.617635375,4455821.5483853035],[-10618354.695017569,4455817.514531998],[-10618357.662744809,4456070.4790205723],[-10618360.633076496,4456323.6529578418],[-10618363.608815774,4456577.0255612833],[-10618366.587259604,4456830.6075176718],[-10618369.570912836,4457084.6330139684],[-10618372.563682068,4457339.3562244307],[-10618375.566369636,4457594.9459621124],[-10618378.57897515,4457851.3552011047],[-10618615.380792322,4457850.0205148356],[-10618870.823256139,4457848.575666422],[-10618876.472185723,4457848.547177217],[-10619125.047311716,4457847.135434431],[-10619378.027729822,4457845.6929118559],[-10619630.578265181,4457845.9902795814],[-10619875.557448378,4457846.2740224516],[-10619882.288028549,4457846.2778317705],[-10620133.147308733,4457846.558330751],[-10620369.861037329,4457846.8171300879],[-10620383.184438489,4457846.8329073526],[-10620383.998187864,4458099.7573007382],[-10620384.811936341,4458352.5843998585],[-10620385.635399999,4458605.9238848509],[-10620386.458966235,4458859.5871680221],[-10620386.730696671,4459113.5148577159],[-10620387.002936643,4459368.5774385259],[-10620387.008781938,4459373.4305453161],[-10620387.272082355,4459624.8223405806],[-10620387.542037681,4459882.169772163],[-10620387.413983453,4460133.2748712851],[-10620387.287577685,4460377.6531390306],[-10620387.285421027,4460383.425726587],[-10620387.150543215,4460632.5632367106],[-10620387.015056901,4460880.72224868],[-10620386.890925145,4461134.105023914],[-10620386.76480115,4461388.760050687],[-10620386.756528791,4461393.4452626612],[-10620386.625872508,4461644.6978469929],[-10620386.493361454,4461901.9225264434],[-10620375.334969275,4461901.7494278084],[-10620377.707434639,4462156.7306734081],[-10620380.017274821,4462405.0890022684],[-10620380.069972459,4462409.7187637631],[-10620382.392548127,4462660.7249871502],[-10620384.696886986,4462909.7780977879],[-10620387.861943875,4463161.866623912],[-10620391.010370996,4463412.6658582473],[-10620394.154089954,4463663.1599675547],[-10620397.288892675,4463912.9454927612],[-10620651.915851366,4463911.1018517874],[-10620906.728524644,4463909.2516822629],[-10621161.773266003,4463907.3884517448],[-10621417.033456288,4463905.5179394474],[-10621670.323120777,4463910.1027525598],[-10621849.468443923,4463913.341648642],[-10621924.631662363,4463914.7870959537],[-10621931.028751411,4463914.908599698],[-10621968.679140056,4463915.6324555939],[-10622179.800659893,4463914.5719153378],[-10622435.674263032,4463913.2806247491],[-10622434.484398903,4464164.8517755503],[-10622433.297433911,4464415.860114417],[-10622433.288750006,4464419.3012392111],[-10622432.095995646,4464672.5837589307],[-10622430.901440727,4464926.0593313519],[-10622429.686091796,4465183.4792149179],[-10622428.46494488,4465442.0382061452],[-10622427.245811328,4465702.0432590879],[-10622426.025580555,4465962.5733451294],[-10622390.627306599,4465962.0397039289],[-10622173.576280432,4465958.7846090486],[-10621921.977562122,4465955.0054402659],[-10621897.307575885,4465954.6279602023],[-10621770.419059003,4465952.7290553041],[-10621671.18637046,4465950.5299695488],[-10621421.176171824,4465944.9823287474],[-10621417.329410614,4466032.6080325283],[-10621409.702038469,4466088.5274020517],[-10621381.068708546,4466233.8307121862],[-10621324.173667228,4466522.5543646468],[-10621315.917962093,4466564.4508707859],[-10621307.941668786,4466604.9509309242],[-10621266.43215229,4466811.0358281592],[-10621209.260664683,4467094.8685131837],[-10621208.395700514,4467099.2725801812],[-10620962.412959132,4467101.4001411088],[-10620716.488284905,4467103.521168882],[-10620711.16914499,4467103.5720955282],[-10620461.77857016,4467105.7164361505],[-10620211.872800771,4467107.8601398906],[-10620028.726392709,4467109.4355101911],[-10619824.163263153,4467111.191208926],[-10619746.034478165,4467111.8533400446],[-10619593.323802544,4467113.1561776008],[-10619351.212230589,4467115.2195956251],[-10619322.0869826,4467210.563857018],[-10619077.247705974,4467180.7473931499],[-10618866.479091097,4467155.0755939884],[-10618811.609396242,4467148.3939963533],[-10618552.267458282,4467116.8010468371],[-10618299.978566568,4467086.0615561325],[-10618041.814483961,4467054.5982438838],[-10617792.337035235,4467024.1877437523],[-10617776.069139075,4467022.2064775256],[-10617506.090600155,4466989.2998119676],[-10617241.235778313,4466957.0085311662],[-10617242.944247331,4466708.5026534144],[-10617244.389438141,4466498.4729223037],[-10617244.677012263,4466456.18858469],[-10617246.342794346,4466215.0268405005],[-10617247.88128555,4465992.2973133819],[-10617247.840175839,4465736.8187699802],[-10617247.799188344,4465483.9550137632],[-10617247.797939353,4465478.3370775981],[-10617247.762303326,4465230.8307958525],[-10617247.726225128,4464978.4086538544],[-10617247.729353903,4464969.5673041092],[-10617247.692150054,4464726.0885478929],[-10617247.652472373,4464474.2308323812],[-10617247.658024199,4464467.7823903169],[-10617247.619506279,4464222.83358966]]]},"attributes":{"objectid":4954,"field_kid":"1000149400","approxacre":15491,"field_name":"MOUND VALLEY SOUTH","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1358,"maxoilwell":4,"lastoilpro":117,"lastoilwel":4,"lastodate":"9-1972","cumm_gas":614369,"maxgaswell":26,"lastgaspro":30236,"lastgaswel":26,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149400}},{"geometry":{"rings":[[[-10572439.031182928,4544746.1846006494],[-10572695.95833548,4544744.5276684985],[-10572953.598212928,4544742.8593421085],[-10572953.418696018,4544755.6132246861],[-10573220.330862468,4544758.8265783256],[-10573456.016694378,4544761.6587924417],[-10573477.092983622,4544761.9007729916],[-10573729.37682269,4544764.9122893615],[-10573982.748420577,4544767.9305175925],[-10573970.526572684,4545014.3264685627],[-10573958.386633854,4545259.0415190756],[-10573946.309778698,4545502.4997441312],[-10573934.314432073,4545744.2857162971],[-10573678.607397642,4545744.6229329742],[-10573456.209112065,4545744.9123000018],[-10573423.96169162,4545744.9448282523],[-10573176.014437782,4545745.2638142891],[-10572940.218146509,4545745.5627988894],[-10572683.77872422,4545750.5995587893],[-10572436.999383235,4545755.4406862305],[-10572428.05733303,4545755.6160619352],[-10572173.079902891,4545760.6200325899],[-10571930.519445091,4545765.3748080237],[-10571925.194481561,4545765.48129988],[-10571918.84142939,4545765.450399668],[-10571920.928002873,4545513.8337102346],[-10571923.025602477,4545260.6642550519],[-10571923.08862826,4545254.5052331574],[-10571925.17237301,4545005.8635168793],[-10571927.321359823,4544749.4680806724],[-10572182.80844566,4544747.8311514677],[-10572439.031182928,4544746.1846006494]]]},"attributes":{"objectid":4989,"field_kid":"1000146841","approxacre":309,"field_name":"HINTON CREEK","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146841}},{"geometry":{"rings":[[[-10604138.813908393,4530442.759242259],[-10604393.762877384,4530442.4584130729],[-10604395.161303328,4530699.4955381909],[-10604396.574981134,4530959.3819145365],[-10604396.624066247,4530969.9741911804],[-10604398.019128131,4531222.1330556553],[-10604399.489239132,4531487.7413377594],[-10604388.829527592,4531487.5079765311],[-10604390.803361623,4531741.3017907534],[-10604392.679430611,4531982.4788998011],[-10604392.75895367,4531993.371166694],[-10604394.684769701,4532241.9983556224],[-10604396.588225238,4532487.767891489],[-10604398.5734892,4532743.0511728814],[-10604400.56025633,4532998.4800706441],[-10604402.556435494,4533254.0508013451],[-10604404.552215558,4533509.75654562],[-10604153.269338308,4533508.9270200375],[-10603909.516040195,4533508.1176371723],[-10603902.97237123,4533508.1007871069],[-10603653.663516557,4533507.2581161764],[-10603405.358592274,4533506.4126670025],[-10603404.917997312,4533762.9842387056],[-10603404.472415721,4534021.0793043291],[-10603404.026207717,4534277.1162173618],[-10603403.581690788,4534532.2870043479],[-10603149.361700431,4534530.5213707136],[-10602894.587372748,4534528.7450480787],[-10602639.136368049,4534526.9540502708],[-10602383.053838205,4534525.1521721613],[-10602126.546535568,4534524.5410790071],[-10601869.694637235,4534523.9231541725],[-10601611.827773539,4534523.2972572101],[-10601353.163093787,4534522.662250353],[-10601101.074330507,4534527.3997193798],[-10600848.413009837,4534532.1432616664],[-10600595.726660319,4534536.8871867703],[-10600342.826164806,4534541.6308616595],[-10600089.139466615,4534546.3809886705],[-10599833.787156334,4534551.1560329227],[-10599827.873268101,4534551.276435066],[-10599576.72648496,4534555.9637103416],[-10599317.960655972,4534560.7875770908],[-10599066.586914849,4534557.5807660883],[-10598823.16750733,4534554.4693537662],[-10598817.498297641,4534554.3973630257],[-10598570.633133586,4534551.2411624752],[-10598326.036874808,4534548.1074843789],[-10598077.356535379,4534545.6417959658],[-10597829.611469835,4534543.1791461101],[-10597582.562103068,4534540.715233379],[-10597336.319863027,4534538.2522084545],[-10597336.3234937,4534532.2384244911],[-10597337.031053971,4534282.5150695154],[-10597337.75018795,4534029.5605512196],[-10597337.756563891,4534026.9927726677],[-10597338.499795208,4533771.565270422],[-10597339.241831388,4533516.6551224086],[-10597339.198751185,4533260.5224834429],[-10597339.155575046,4533004.7371014105],[-10597339.125423372,4532749.7362833759],[-10597339.096455529,4532501.4880657624],[-10597339.103188531,4532495.3751672916],[-10597339.084972786,4532242.2048349846],[-10597339.066530103,4531995.0382922739],[-10597339.053247178,4531989.5027300958],[-10597339.016621551,4531737.2646454414],[-10597338.981803788,4531485.5063541429],[-10597590.316723503,4531485.6576147927],[-10597842.431137953,4531485.8015446393],[-10597849.092384746,4531485.8075187216],[-10598095.331554793,4531485.9539505318],[-10598349.011366216,4531486.0971288029],[-10598357.85461776,4531486.0971695837],[-10598518.678635534,4531486.1909817299],[-10598603.478877109,4531485.8515897281],[-10598858.736985903,4531484.821784135],[-10598865.280897707,4531484.8032255191],[-10599114.735544808,4531483.8033632236],[-10599371.502085054,4531482.766610357],[-10599623.474238295,4531483.0828970177],[-10599875.411351254,4531483.3938723505],[-10600127.374894368,4531483.6892938623],[-10600379.363466131,4531483.9770017099],[-10600631.316296924,4531484.2691352172],[-10600883.233887171,4531484.553428337],[-10601135.16699517,4531484.8319045566],[-10601387.106009886,4531485.105069669],[-10601641.738114253,4531477.1916037481],[-10601878.532949101,4531469.82598879],[-10601894.528104344,4531469.3236608775],[-10602145.381371638,4531461.5080689946],[-10602374.007732153,4531454.3796585212],[-10602371.880107967,4531199.446332654],[-10602369.865582509,4530958.0472400114],[-10602369.77554768,4530947.5128794778],[-10602367.702647107,4530697.4542302545],[-10602365.646393815,4530449.6540004788],[-10602616.101670008,4530448.1551884441],[-10602867.083049951,4530446.6467701681],[-10603118.635285074,4530445.1334242327],[-10603370.737461969,4530443.609366117],[-10603627.297947014,4530443.3342129989],[-10603883.340848807,4530443.0528615396],[-10604138.813908393,4530442.759242259]]]},"attributes":{"objectid":5133,"field_kid":"1000150003","approxacre":3466,"field_name":"CANVILLE CREEK","status":"Abandoned","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":1056,"maxgaswell":1,"lastgaspro":5,"lastgaswel":1,"lastgdate":"12-1982","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000150003}},{"geometry":{"rings":[[[-10568180.82345124,4749511.6928234166],[-10568444.662967261,4749510.9644324007],[-10568441.739782274,4749771.1086233817],[-10568438.819703076,4750030.9859155659],[-10568435.874497261,4750290.6204459723],[-10568432.931095582,4750550.0137460204],[-10568436.475170629,4750814.2935856897],[-10568440.032252965,4751079.6330190804],[-10568443.589239091,4751344.3240125086],[-10568447.145624731,4751608.9158762805],[-10568189.421042841,4751609.1410572277],[-10567930.566771111,4751609.3593972642],[-10567670.676917095,4751609.5531953201],[-10567409.692313105,4751609.7418318549],[-10567147.326528233,4751610.531647291],[-10566883.3431965,4751611.3199219378],[-10566618.7955206,4751612.090757858],[-10566353.308372121,4751612.8551393226],[-10566354.494445639,4751349.5121826511],[-10566355.680718176,4751086.3992166957],[-10566356.855676921,4750823.4627385503],[-10566358.027431127,4750560.7024759091],[-10566357.787860554,4750300.0535978144],[-10566357.547290104,4750039.1988205193],[-10566357.291104043,4749777.9837932503],[-10566357.032817494,4749516.4600841766],[-10566615.070003783,4749515.8029045025],[-10566873.947650367,4749515.1362898415],[-10567133.644432841,4749514.4669573754],[-10567394.182876999,4749513.786510651],[-10567655.564084049,4749513.1025709193],[-10567917.781346356,4749512.4106171494],[-10568180.82345124,4749511.6928234166]]]},"attributes":{"objectid":5027,"field_kid":"1000149603","approxacre":640,"field_name":"FAIRMOUNT TOWNSITE","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":210554,"maxgaswell":4,"lastgaspro":489,"lastgaswel":4,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149603}},{"geometry":{"rings":[[[-10566098.758226821,4748470.2245222479],[-10566356.032322852,4748468.0537413619],[-10566356.273483967,4748730.5287024854],[-10566356.513445146,4748992.7711422825],[-10566356.773931576,4749254.7221408291],[-10566357.032817494,4749516.4600841766],[-10566357.291404428,4749777.9779802756],[-10566357.547290104,4750039.1988205193],[-10566357.788260384,4750300.1548779653],[-10566358.027431127,4750560.7024759091],[-10566356.856681447,4750822.9129034868],[-10566355.680718176,4751086.3992166957],[-10566354.494545767,4751349.5097279008],[-10566353.308372121,4751612.8551393226],[-10566352.126702501,4751876.4167348407],[-10566350.946434105,4752140.0725596687],[-10566349.885382451,4752374.3756493917],[-10566350.042378772,4752404.1322088074],[-10566351.432042008,4752668.1932001794],[-10566311.316742703,4752669.0769989826],[-10566092.0924796,4752670.1117225597],[-10565835.345781641,4752671.3170968108],[-10565831.981641298,4752671.3155657006],[-10565572.162235703,4752672.543441046],[-10565316.525705423,4752673.7445448916],[-10565312.271048469,4752673.7503841445],[-10565052.691517184,4752674.9549996266],[-10564796.410852028,4752676.1373712271],[-10564793.208696576,4752676.1406201068],[-10564533.817480652,4752677.3343805894],[-10564274.510761419,4752678.5180619173],[-10564012.7430452,4752677.488446109],[-10563756.907000078,4752676.4744311003],[-10563751.680734184,4752676.4431914808],[-10563491.296997534,4752675.4195119049],[-10563238.614451943,4752674.4193049576],[-10563231.602447441,4752674.4031937448],[-10563230.794907672,4752414.1292089652],[-10563229.983568735,4752152.8666533157],[-10563229.168030189,4751890.6137946518],[-10563228.349193063,4751627.3683844954],[-10563227.526154788,4751363.4206778388],[-10563226.700916616,4751098.9662002809],[-10563225.884594625,4750833.3662729794],[-10563225.062976338,4750565.9145906884],[-10563264.05450491,4750566.7510976465],[-10563487.156388732,4750571.4635168128],[-10563750.00866708,4750577.0084369946],[-10563771.346234545,4750577.4745436488],[-10563994.805825459,4750582.2165503204],[-10564013.511988945,4750582.4205520283],[-10564277.64754614,4750585.3268166678],[-10564278.929573094,4750323.7699904628],[-10564280.211299876,4750062.2223975211],[-10564281.483019177,4749800.0068890117],[-10564282.75694366,4749537.354221696],[-10564284.021457653,4749274.6935347645],[-10564285.289276816,4749011.822165112],[-10564286.572515296,4748748.6867843028],[-10564287.856856661,4748485.2995540975],[-10564547.616991268,4748483.1415420733],[-10564804.021892099,4748481.0049926378],[-10564807.019417372,4748480.9941238044],[-10565066.058528686,4748478.8354711989],[-10565320.751173496,4748476.7064246666],[-10565324.763458343,4748476.6918036416],[-10565583.1229937,4748474.5353517057],[-10565838.088350752,4748472.4023000058],[-10565841.127523614,4748472.3934974782],[-10566098.758226821,4748470.2245222479]]]},"attributes":{"objectid":5060,"field_kid":"1000149602","approxacre":1599,"field_name":"FAIRMOUNT","status":"Abandoned","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":94,"maxoilwell":1,"lastoilpro":94,"lastoilwel":1,"lastodate":"5-1989","cumm_gas":1323883,"maxgaswell":16,"lastgaspro":13,"lastgaswel":2,"lastgdate":"1-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149602}},{"geometry":{"rings":[[[-10576498.343498958,4694658.4404307241],[-10576498.541430881,4694397.1758768428],[-10576498.739167068,4694136.7550050681],[-10576498.93860966,4693877.1704279725],[-10576499.137255769,4693618.4152730033],[-10576745.401532944,4693618.6196067808],[-10576992.061362498,4693618.8195702732],[-10577239.121750079,4693618.9997479627],[-10577486.59751272,4693619.1749129156],[-10577486.5788229,4693625.4054678241],[-10577485.504981952,4693879.5270039169],[-10577484.402644379,4694140.7264559846],[-10577484.39856329,4694145.3798591085],[-10577483.31642965,4694402.768837777],[-10577482.209695891,4694665.6630795458],[-10577741.18344776,4694668.3540773271],[-10578000.191238133,4694671.0377522362],[-10578259.24758362,4694673.7171875825],[-10578518.335364653,4694676.3909702552],[-10578517.178883744,4694936.073705974],[-10578516.02130292,4695196.0074420655],[-10578514.847705085,4695456.1852597538],[-10578513.672907239,4695716.6202836176],[-10578513.106005691,4695977.3152276212],[-10578512.539305488,4696238.2342657773],[-10578511.975009402,4696499.4277868662],[-10578511.410614517,4696760.8861745168],[-10578252.334190503,4696757.2393085286],[-10577992.987557091,4696753.5831932658],[-10577733.367710875,4696749.9229688412],[-10577473.477054572,4696746.2543946765],[-10577227.978463912,4696745.8888598364],[-10576982.873523077,4696745.517282635],[-10576737.8370605,4696745.1521300208],[-10576492.953672796,4696744.7815792374],[-10576248.241080174,4696744.3962495318],[-10576003.680761497,4696744.00462214],[-10575759.302550837,4696743.5991152497],[-10575515.091931628,4696743.1883385926],[-10575515.456188705,4696482.9278744496],[-10575515.822346803,4696222.4599950025],[-10575516.180592462,4695961.3840781543],[-10575516.540036965,4695699.8551278887],[-10575516.892872006,4695437.9834195497],[-10575517.246503841,4695175.3749249997],[-10575517.614654858,4694913.22468179],[-10575517.983707212,4694651.1256443141],[-10575762.762825089,4694652.9551778212],[-10576007.741070392,4694654.7798281014],[-10576252.936463805,4694656.6123141199],[-10576498.343498958,4694658.4404307241]]]},"attributes":{"objectid":4388,"field_kid":"1000149144","approxacre":1078,"field_name":"LONGANECKER","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":482392.03000000003,"maxoilwell":58,"lastoilpro":2093.1999999999998,"lastoilwel":56,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":914.01999999999998,"avgdepthsl":-132.69428571,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149144}},{"geometry":{"rings":[[[-10594880.331702981,4464093.7908829525],[-10594973.561530922,4464091.6408869652],[-10594972.015490348,4464169.1224582531],[-10594973.916610625,4464344.1440811157],[-10594976.673966715,4464598.020575488],[-10594976.726200147,4464603.5216199076],[-10594979.446641941,4464852.0511989854],[-10594982.234040825,4465106.6261309357],[-10594985.007723901,4465361.2356035355],[-10594987.703320205,4465608.6058077831],[-10594987.794013062,4465615.2549437834],[-10594990.54004758,4465868.6809666194],[-10594993.278764758,4466121.4751749057],[-10594740.450573524,4466119.7099411404],[-10594486.780215297,4466117.932000896],[-10594481.698983163,4466117.8974825135],[-10594232.23264985,4466116.1404739115],[-10593986.743481116,4466114.4051471716],[-10593976.819188923,4466114.2446266301],[-10593975.895059993,4465860.3084217785],[-10593974.966918333,4465605.7937393719],[-10593974.042272223,4465350.6763687143],[-10593973.116616469,4465094.9548454564],[-10593971.345027901,4464842.0595762488],[-10593969.585274745,4464590.7878837474],[-10593967.842123276,4464338.270334255],[-10593966.088241097,4464084.4330112254],[-10594218.248234628,4464087.0242919568],[-10594470.304808902,4464089.6086610015],[-10594721.783619082,4464092.174676613],[-10594880.331702981,4464093.7908829525]]]},"attributes":{"objectid":4398,"field_kid":"1000149402","approxacre":318,"field_name":"OSWEGO NORTHWEST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":559,"avgdepthsl":-296,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149402}},{"geometry":{"rings":[[[-10588580.820499852,4694695.265841594],[-10588839.634553131,4694695.0541901113],[-10588839.769012615,4694956.0885157771],[-10588839.902670929,4695217.0106915608],[-10588840.045038966,4695477.8273901176],[-10588840.186005179,4695738.548111679],[-10588581.398857499,4695738.9817329561],[-10588322.55334314,4695739.4100866485],[-10588064.01758297,4695739.8444772661],[-10587805.685355527,4695740.2709002262],[-10587805.436491171,4695479.3297344968],[-10587805.18832732,4695218.2783414824],[-10587804.967694668,4694957.1213546246],[-10587804.747462211,4694695.8702164972],[-10588063.377104566,4694695.6748825852],[-10588322.069718942,4694695.4718397399],[-10588580.820499852,4694695.265841594]]]},"attributes":{"objectid":4436,"field_kid":"1000147598","approxacre":160,"field_name":"CHANAY EAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":349,"maxoilwell":1,"lastoilpro":54,"lastoilwel":1,"lastodate":"11-1987","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147598}},{"geometry":{"rings":[[[-10614202.988404075,4492779.8665553648],[-10614207.245850202,4492516.2396077635],[-10614211.496797651,4492253.0691564586],[-10614215.745751848,4491990.3726780973],[-10614219.986605689,4491728.1422004914],[-10614473.88602774,4491727.6953271683],[-10614727.580115261,4491727.2411445854],[-10614981.053851072,4491726.777510955],[-10615234.323553842,4491726.3068200266],[-10615234.239738882,4491731.4408232942],[-10615230.46959288,4491989.4817058239],[-10615226.616841765,4492253.1218838012],[-10615226.569240768,4492256.5126827294],[-10615222.768504087,4492517.2224757224],[-10615218.911865406,4492781.7884298172],[-10615319.389377676,4492781.9178856844],[-10615577.44449153,4492782.2421828452],[-10615576.724133886,4493037.6782172685],[-10615576.001886727,4493293.9196446417],[-10615575.268911198,4493549.1138594495],[-10615574.53562877,4493803.877431321],[-10615573.820956636,4494057.9279556554],[-10615573.107577456,4494311.4207465155],[-10615572.387682719,4494564.3818474989],[-10615571.66878093,4494816.8071879707],[-10615316.071406612,4494817.333595572],[-10615067.356580991,4494817.8406874631],[-10615061.153106891,4494817.8610202149],[-10614806.898363816,4494818.3733320879],[-10614561.583215179,4494818.8610626627],[-10614553.345320947,4494818.875320157],[-10614300.414587835,4494819.3724019323],[-10614054.32605738,4494819.8501674542],[-10614048.142005423,4494819.8689883128],[-10613796.546695279,4494820.3505881103],[-10613545.588812063,4494820.8240054753],[-10613290.911881279,4494820.9111456098],[-10613035.985766232,4494820.9914778005],[-10613032.72735025,4494820.9853865029],[-10612780.805861695,4494821.0658840723],[-10612525.376873102,4494821.1391529767],[-10612520.853814917,4494821.1325410632],[-10612402.272386033,4494821.1747137178],[-10612269.63211233,4494820.5230029374],[-10612013.547151919,4494819.2585138148],[-10612010.051565316,4494819.2442285912],[-10611757.156742562,4494817.9820496207],[-10611500.355764357,4494816.6926008826],[-10611247.09523814,4494816.2207679125],[-10610993.730492804,4494815.742380931],[-10610740.2475124,4494815.2595819756],[-10610486.649700791,4494814.7711109584],[-10610486.295452962,4494560.4660610957],[-10610485.940701608,4494306.0152053684],[-10610485.584946085,4494051.4141441407],[-10610485.230389012,4493796.6686842749],[-10610484.878430961,4493541.7237753952],[-10610484.527068449,4493286.5155528393],[-10610484.18190342,4493030.8055345984],[-10610483.838143902,4492775.3166765273],[-10610654.950705651,4492775.8707623584],[-10610736.910880756,4492776.135788966],[-10610989.847862286,4492776.9504900705],[-10611169.037144773,4492777.5191711774],[-10611242.680331992,4492778.1912815114],[-10611495.440938348,4492780.4892382668],[-10611668.834486192,4492780.0891204979],[-10611750.919094842,4492779.8993317876],[-10612006.121336496,4492779.3076578742],[-10612170.628239172,4492778.9094387116],[-10612261.028941577,4492778.6940582059],[-10612515.65682758,4492778.0841085408],[-10612675.935303316,4492777.6983064609],[-10612770.004794069,4492777.4667219454],[-10613024.007366177,4492776.8342122743],[-10613184.760283628,4492776.437959508],[-10613277.699798055,4492777.0072661377],[-10613531.098017048,4492778.5547198746],[-10613694.335583167,4492778.88381314],[-10613784.581415493,4492779.0602535084],[-10614038.723165154,4492779.552063141],[-10614202.988404075,4492779.8665553648]]]},"attributes":{"objectid":4513,"field_kid":"1000150013","approxacre":1765,"field_name":"LADORE","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":100076.38,"maxoilwell":28,"lastoilpro":58.270000000000003,"lastoilwel":26,"lastodate":"3-2008","cumm_gas":29923,"maxgaswell":3,"lastgaspro":32,"lastgaswel":2,"lastgdate":"10-1998","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150013}},{"geometry":{"rings":[[[-10602402.565814482,4750590.0422238614],[-10602662.151357979,4750587.9270974481],[-10602662.239304347,4750848.9994603693],[-10602662.327447103,4751110.7239050101],[-10602662.417288555,4751373.0015165489],[-10602662.506826194,4751635.8683854099],[-10602662.443686254,4751899.3617702257],[-10602662.382744953,4752163.5107904244],[-10602662.328407411,4752428.2983124228],[-10602662.274166102,4752693.7445441838],[-10602662.617997887,4752955.8932585409],[-10602662.960229559,4753217.7648857823],[-10602663.301962344,4753479.3637980595],[-10602663.642095087,4753740.6727868775],[-10602403.556214983,4753740.7976511586],[-10602143.113828801,4753740.9150237748],[-10601883.346912105,4753741.0270912452],[-10601623.902262554,4753741.1338571059],[-10601623.656566909,4753479.2552442346],[-10601623.411373368,4753217.130931248],[-10601623.16447979,4752954.702013718],[-10601622.916786909,4752692.015807962],[-10601622.968944451,4752427.8711811677],[-10601623.019660465,4752170.3248931691],[-10601623.012288015,4752164.383516212],[-10601623.052724443,4751901.5350604281],[-10601623.092008606,4751647.1132494686],[-10601623.084947582,4751639.3421723964],[-10601623.128880983,4751377.6660420615],[-10601623.171974275,4751122.4643137632],[-10601623.163199734,4751116.6059800405],[-10601623.212431705,4750856.1747281188],[-10601623.260158163,4750596.3780511515],[-10601883.126121309,4750594.2669255277],[-10602142.889367392,4750592.1516673239],[-10602402.565814482,4750590.0422238614]]]},"attributes":{"objectid":4521,"field_kid":"1000149128","approxacre":480,"field_name":"MCLOUTH WEST","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":303208,"maxgaswell":4,"lastgaspro":145,"lastgaswel":1,"lastgdate":"11-1997","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149128}},{"geometry":{"rings":[[[-10594008.195710108,4700168.4669233318],[-10594008.906187877,4699908.1479279436],[-10593751.044393366,4699908.2542593284],[-10593492.503323086,4699908.3548115138],[-10593234.733033104,4699908.4661553502],[-10592977.229547847,4699908.5727411387],[-10592719.070113869,4699909.1433665762],[-10592461.157762155,4699909.7080773143],[-10592202.186300954,4699910.2830794947],[-10591942.584219631,4699910.8537161313],[-10591944.055419467,4699651.6740217619],[-10591945.507200757,4699395.6551816016],[-10591945.529022437,4699392.6605736967],[-10591946.989911295,4699133.839194132],[-10591948.44799733,4698875.1800496383],[-10591949.708555833,4698614.6052633878],[-10591950.966311436,4698354.1506380877],[-10591952.238884248,4698093.7921313122],[-10591953.51065645,4697833.5545391534],[-10592211.708280863,4697832.3596695298],[-10592469.72239575,4697831.15799018],[-10592727.53588157,4697829.9565695515],[-10592985.168260612,4697828.7498813597],[-10593242.923179833,4697827.525071905],[-10593501.097978992,4697826.291263626],[-10593759.699966449,4697825.0605368847],[-10594018.680186262,4697823.8223538063],[-10594020.390807962,4697563.2662407514],[-10594022.099728033,4697302.8408125872],[-10594023.799037438,4697042.5720172841],[-10594025.499248188,4696782.4518755376],[-10594287.20565882,4696782.4495226098],[-10594548.30397445,4696782.4411343616],[-10594808.822227102,4696782.4265821017],[-10595068.771529498,4696782.4050947316],[-10595068.255096963,4697042.878439432],[-10595067.739665678,4697303.4807938403],[-10595067.23504686,4697564.2417255957],[-10595066.729627227,4697825.1501947856],[-10595066.216899272,4698085.8421203522],[-10595065.706373781,4698345.9963100785],[-10595065.211065626,4698605.6096380707],[-10595064.71785982,4698864.6838625129],[-10595321.587595453,4698866.3118283739],[-10595583.68670463,4698867.9668751257],[-10595587.677763822,4698867.9812407549],[-10595845.875215702,4698869.6242348319],[-10596108.096764268,4698871.2876352388],[-10596107.215540729,4699132.6288101627],[-10596106.33501811,4699394.1821001302],[-10596105.469713084,4699654.3591752751],[-10596104.606010061,4699913.7050743913],[-10596103.732395887,4700172.4687251793],[-10596102.856979756,4700431.4734330308],[-10596101.989272546,4700690.6937632458],[-10596101.11966328,4700950.0770251164],[-10596103.481543336,4701212.7546179732],[-10596105.852633489,4701476.5783071117],[-10596108.207104404,4701739.2471339153],[-10596110.557770658,4702001.5266303308],[-10595848.078453841,4701999.3629940152],[-10595585.979570968,4701997.1945979195],[-10595324.346219173,4701995.006141807],[-10595063.178298352,4701992.8147251951],[-10594802.328540761,4701991.8723419467],[-10594541.864523353,4701990.9269985659],[-10594281.713763395,4701989.9956665793],[-10594021.838818142,4701989.0576468715],[-10594017.879965615,4701727.5506739812],[-10594013.943138378,4701467.43747361],[-10594009.994797511,4701207.4908542167],[-10594006.053364256,4700948.1107360311],[-10594006.767546512,4700688.8636933072],[-10594007.485232323,4700428.5619685324],[-10594008.195710108,4700168.4669233318]]]},"attributes":{"objectid":4565,"field_kid":"1000147610","approxacre":1929,"field_name":"VINLAND","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":499308.59999999998,"maxoilwell":83,"lastoilpro":632.44000000000005,"lastoilwel":52,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":697.66666667000004,"avgdepthsl":-174.58333332999999,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147610}},{"geometry":{"rings":[[[-10572022.544929849,4604476.3391760308],[-10572021.59524639,4604219.4739057077],[-10571764.543754404,4604218.8329748027],[-10571508.082848072,4604218.1872035274],[-10571251.280044872,4604217.5429614],[-10570994.449709818,4604216.8901874367],[-10570992.990872895,4603959.0799857257],[-10570991.531437648,4603700.9746887498],[-10570990.053282699,4603442.6209230702],[-10570988.573828403,4603183.999989491],[-10570731.933649097,4603182.7519806391],[-10570475.634665947,4603181.4981139712],[-10570219.650248028,4603180.2396628801],[-10569963.97438838,4603178.9753540782],[-10569709.890979968,4603177.3545134598],[-10569456.931576304,4603175.7334155459],[-10569202.387032881,4603174.106083489],[-10568947.173413029,4603172.4665301163],[-10568691.024007184,4603170.8142468818],[-10568435.259348074,4603169.1555965785],[-10568178.420842683,4603167.4893100606],[-10567920.990951033,4603165.8128393553],[-10567670.87873725,4603166.1479244456],[-10567420.991384495,4603166.477151609],[-10567416.080183955,4603166.4762742994],[-10567171.35352141,4603166.7941542258],[-10566921.99267984,4603167.1120473212],[-10566916.721461365,4603167.1181742474],[-10566674.072410427,4603167.422041731],[-10566426.865268793,4603167.7251581829],[-10566422.87223387,4603167.7385393279],[-10566180.393781032,4603168.0281451577],[-10565934.574850807,4603168.3173784679],[-10565680.650418406,4603167.8642951213],[-10565425.444298411,4603167.4026843635],[-10565170.622624665,4603166.9432372497],[-10564915.635358801,4603166.4764055172],[-10564660.403509162,4603165.9984968128],[-10564404.947699672,4603165.5116756968],[-10564149.496996131,4603165.0256186677],[-10563893.980516322,4603164.5321767591],[-10563893.168623645,4602908.7704182127],[-10563892.375505621,4602658.6288658055],[-10563892.375651632,4602653.1750441901],[-10563891.560252266,4602397.7482068241],[-10563890.767217914,4602149.5831780313],[-10563890.748255409,4602142.5044077076],[-10563889.937460398,4601887.2201951547],[-10563889.145439018,4601637.6749001751],[-10563889.149189556,4601632.181514658],[-10563888.330181306,4601377.3614859506],[-10563887.82522073,4601219.7049713284],[-10563887.875894604,4601122.7563994573],[-10564142.804539368,4601122.4089459507],[-10564390.895448973,4601122.0634268457],[-10564397.165024819,4601122.054874558],[-10564651.110428635,4601121.6913839998],[-10564896.311885139,4601121.3327628057],[-10564904.577877851,4601121.3178379619],[-10565157.644862255,4601120.9509132234],[-10565403.644745311,4601120.5885971515],[-10565410.232991042,4601120.5703684632],[-10565649.344780479,4601120.2131696278],[-10565662.394924665,4601120.2570426231],[-10565914.164693736,4601121.097362916],[-10565915.882473677,4600865.8539837189],[-10565917.60316184,4600610.012623366],[-10565917.64633929,4600606.6669392837],[-10565919.342977015,4600353.5751083167],[-10565919.760871828,4600291.2004896486],[-10565922.010073161,4600096.5230216971],[-10565922.040542264,4600092.3940150831],[-10565922.154043734,4600083.8592716567],[-10565923.123070279,4599838.936357378],[-10565924.144265771,4599580.749978696],[-10565924.175226426,4599577.7243723897],[-10565925.201006858,4599322.0301174894],[-10565926.240532484,4599062.7569582229],[-10565670.971557776,4599062.5503671337],[-10565416.140791545,4599062.3393193455],[-10565412.068867171,4599062.3292822326],[-10565160.900950771,4599062.1189819435],[-10564905.521648211,4599061.8980088094],[-10564899.33366866,4599061.8903994011],[-10564650.011393838,4599061.6637991527],[-10564394.223617507,4599061.4257723577],[-10564389.393513365,4599061.4263028735],[-10564138.156517064,4599061.1932199104],[-10563881.807890113,4599060.9461588161],[-10563882.837451154,4598803.325831756],[-10563883.867512478,4598545.7409486845],[-10563884.905384479,4598287.9621649478],[-10563885.944659131,4598030.0610193657],[-10563886.96671992,4597771.4330152599],[-10563887.980457246,4597514.4460289516],[-10563889.014825033,4597256.6820347384],[-10563889.628121855,4597103.8489314048],[-10563888.586197864,4596998.6630978156],[-10563635.301278992,4596999.1992722908],[-10563381.365004558,4596999.7299781414],[-10563377.493513422,4596999.7471777527],[-10563126.705891464,4597000.2751947334],[-10562871.34936945,4597000.8067986239],[-10562865.961519282,4597000.8276965423],[-10562615.979431866,4597001.335221136],[-10562359.457958572,4597001.8502878211],[-10562354.827687321,4597001.8580745375],[-10562101.792658485,4597002.3544164915],[-10561842.975422127,4597002.8554969793],[-10561844.126068598,4596747.0348760365],[-10561845.234287636,4596500.2608363731],[-10561845.294136206,4596491.1060653394],[-10561846.450391084,4596235.0628379863],[-10561847.588488316,4595983.2496337714],[-10561847.589126647,4595978.9017668776],[-10561848.719441539,4595724.0002233665],[-10561849.220299635,4595610.9807423782],[-10561848.304560525,4595469.5291809868],[-10561846.636747057,4595212.6712910505],[-10561844.961136414,4594954.4589379113],[-10561844.47759776,4594697.4806369245],[-10561843.999935301,4594444.0534206927],[-10561843.986644672,4594441.1874618279],[-10561843.486875312,4594185.6023884052],[-10561842.988901997,4593930.7262544874],[-10561842.511967959,4593674.1387640713],[-10561842.034529131,4593418.0466407686],[-10561842.011944363,4593413.2575417571],[-10561842.929500671,4593159.7732652007],[-10561843.867633937,4592900.149580623],[-10561843.132901907,4592643.4840023331],[-10561842.400267705,4592387.3622077154],[-10561841.684548203,4592131.8188803392],[-10561840.970826183,4591876.846473014],[-10561840.269632429,4591620.2966012033],[-10561839.567640388,4591363.4524285281],[-10561838.849332051,4591106.317156476],[-10561838.129824845,4590848.9014896136],[-10562092.454969687,4590848.4882647004],[-10562347.110697804,4590848.0694413362],[-10562602.075083761,4590847.6468002051],[-10562857.328905284,4590847.2180522084],[-10563112.812693462,4590846.780908579],[-10563368.625162698,4590846.3385480531],[-10563624.693528691,4590845.8815599279],[-10563881.037013683,4590845.4156670999],[-10564136.825545799,4590846.0811640294],[-10564386.826168163,4590846.7249573693],[-10564392.210409999,4590846.7446293188],[-10564647.198414175,4590847.4050454944],[-10564896.282474065,4590848.0452851057],[-10564901.785853995,4590848.0674997466],[-10565155.987146353,4590848.7103715027],[-10565405.698533701,4590849.3366169669],[-10565409.767150402,4590849.3462517494],[-10565663.160406159,4590849.9785740776],[-10565916.153197769,4590850.6012339713],[-10565917.556424156,4591107.3021944882],[-10565918.91876596,4591356.3417653628],[-10565918.973470382,4591363.5534401797],[-10565920.361887375,4591619.3371316027],[-10565921.696524357,4591865.0716197575],[-10565921.742699074,4591874.7064002147],[-10565923.134226816,4592129.6492589302],[-10565924.483869784,4592376.8104461236],[-10565924.53657122,4592384.1047483878],[-10565925.93071002,4592638.0987819061],[-10565927.32305136,4592891.5433000689],[-10565926.015436728,4593148.082776363],[-10565924.705917431,4593404.9190410571],[-10565924.67946301,4593407.8216084745],[-10565923.390989348,4593662.059113171],[-10565922.084368087,4593919.5402899664],[-10565922.064313369,4593923.3866982004],[-10565920.771136416,4594177.3543278398],[-10565919.457201581,4594435.4520162875],[-10565919.434051638,4594438.2751039751],[-10565918.138959292,4594693.8468627036],[-10565916.828924645,4594952.46904027],[-10566166.245198619,4594951.73800682],[-10566415.936992154,4594951.0003556684],[-10566420.087906361,4594950.9926969456],[-10566665.92112471,4594950.2601580741],[-10566916.201500895,4594949.508635168],[-10566921.749034951,4594949.4915530588],[-10567166.794739978,4594948.7456596103],[-10567417.662697691,4594947.9754302194],[-10567421.814012364,4594947.9678987265],[-10567668.821392484,4594947.2141050743],[-10567920.282137636,4594946.4404367255],[-10568175.922406811,4594948.6040977053],[-10568431.345624443,4594950.7593636932],[-10568686.539976852,4594952.904326302],[-10568941.53299596,4594955.0396215096],[-10569196.3865535,4594957.1680480056],[-10569450.961287864,4594959.2874436909],[-10569705.233871967,4594961.4012439176],[-10569959.233739965,4594963.5069039026],[-10569960.359572189,4595219.3260159791],[-10569961.485406002,4595474.953863116],[-10569962.611836979,4595731.0542398933],[-10569963.73956779,4595987.3868200807],[-10569964.87470964,4596243.4178246548],[-10569966.009651233,4596499.4670080859],[-10569967.153903488,4596755.5483695082],[-10569967.361086238,4596801.9135611635],[-10569967.357864736,4597011.6785868127],[-10570225.356833041,4597013.6045232918],[-10570479.658112347,4597015.4947210327],[-10570482.530744461,4597015.5196481096],[-10570739.553881221,4597017.4182312395],[-10570992.358524846,4597019.2799330065],[-10570996.189869121,4597019.2993831141],[-10571252.454826765,4597021.1765927123],[-10571505.778172413,4597023.0254403763],[-10571508.492020385,4597023.0434965221],[-10571764.139762361,4597024.9090032494],[-10572019.916253829,4597026.76941978],[-10572276.839377435,4597028.3725201376],[-10572533.473766275,4597029.9658238906],[-10572537.704173375,4597029.9996518604],[-10572790.377667816,4597031.5637079971],[-10573047.391497063,4597033.1489937752],[-10573053.177608844,4597033.1789960004],[-10573304.683949701,4597034.7219348531],[-10573562.107454443,4597036.2958938507],[-10573566.29771501,4597036.3264134219],[-10573819.644290775,4597037.8671804303],[-10574077.143083144,4597039.4262511982],[-10574077.417239603,4597103.1793415081],[-10574077.231322898,4597296.6956262281],[-10574076.982864538,4597555.0108876927],[-10574076.721795099,4597812.8394553121],[-10574076.460525464,4598070.6678403802],[-10574076.207268622,4598328.016610302],[-10574075.955517886,4598584.7686364595],[-10574075.68545044,4598840.8974006977],[-10574075.416588323,4599096.4867349761],[-10574076.037243081,4599354.1827101456],[-10574076.659691114,4599613.1070764484],[-10574077.291464888,4599869.9818074582],[-10574077.920942966,4600125.9054238861],[-10574078.532091938,4600382.9236460589],[-10574079.143041708,4600639.8105271626],[-10574079.785529131,4600896.5627474729],[-10574080.426215515,4601153.1823340943],[-10574337.01367504,4601154.3284359202],[-10574588.433738107,4601155.4469313081],[-10574593.064411778,4601155.4728850676],[-10574848.578425834,4601156.602187017],[-10575097.279734116,4601157.6959954444],[-10575103.587854456,4601157.7220704509],[-10575358.020513844,4601158.8368640458],[-10575379.329239504,4601158.931374955],[-10575607.142905969,4601159.2933305362],[-10575611.894350935,4601159.3042395599],[-10575865.225159079,4601159.7143603181],[-10576117.988116514,4601160.1169746593],[-10576374.468337025,4601160.0732209533],[-10576625.230204478,4601160.0245496435],[-10576630.54139105,4601160.0135572823],[-10576886.203474114,4601159.9545335472],[-10577134.309598254,4601159.8913712911],[-10577141.456989028,4601159.8867290458],[-10577142.713487042,4601414.4786262829],[-10577143.975786174,4601669.8346958319],[-10577145.23717864,4601925.9667076282],[-10577146.503471101,4602182.8748467974],[-10577147.772260912,4602440.5435107434],[-10577149.044348873,4602698.9894361878],[-10577150.340258585,4602958.2002031924],[-10577151.63866559,4603218.1793076303],[-10577396.767113525,4603221.1194597632],[-10577655.969486112,4603224.2223491361],[-10577663.833195647,4603224.3224918153],[-10577915.159043785,4603227.3373358417],[-10578174.34980279,4603230.4407360004],[-10578382.163215414,4603230.5352099352],[-10578590.469392668,4603230.6261143219],[-10578799.29246228,4603230.7035170365],[-10579003.196195349,4603230.7730675107],[-10579008.62851977,4603230.767036126],[-10579215.064354187,4603230.8290521968],[-10579416.562731272,4603230.887036141],[-10579420.635898292,4603230.8909483748],[-10579625.352663027,4603230.9475039495],[-10579829.208841734,4603230.9993556449],[-10579829.441403277,4603486.4429254634],[-10579829.673964359,4603741.9529215852],[-10579829.901819579,4603997.5311318832],[-10579830.130174918,4604253.1747598825],[-10579830.35382439,4604508.8875036901],[-10579830.577974027,4604764.6600718508],[-10579830.817741031,4605020.5088974871],[-10579831.057507493,4605276.4338591369],[-10579827.26073776,4605533.9592501055],[-10579823.459460149,4605791.8777459217],[-10579823.350587163,4605798.3517764714],[-10579819.629647126,4606050.1892490303],[-10579815.806038832,4606308.8493365459],[-10579815.662109695,4606317.4694982963],[-10579811.954096684,4606567.7236562334],[-10579808.110560721,4606827.0904143583],[-10579807.990973391,4606833.8449411886],[-10579804.262416184,4607086.9276115941],[-10579800.426482297,4607347.2415252058],[-10579591.112635309,4607345.4026521109],[-10579387.297686692,4607343.6072932705],[-10579383.663023539,4607343.579557444],[-10579178.09456642,4607341.7666361919],[-10578974.408064855,4607339.9661812522],[-10578770.43473476,4607338.1543920869],[-10578567.031557692,4607336.3431073772],[-10578365.657404546,4607334.5565163512],[-10578209.17767328,4607333.1638871729],[-10578165.835819812,4607334.1279395418],[-10577914.060428575,4607333.0712093562],[-10577661.443173047,4607332.0044237524],[-10577654.612248657,4607331.9802842448],[-10577408.000772363,4607330.9279647134],[-10577153.734528065,4607329.8364821607],[-10577143.388677638,4607329.7882998455],[-10576898.647443561,4607328.7345618438],[-10576642.711386586,4607327.6260255016],[-10576635.042402301,4607327.592340054],[-10576408.790045898,4607326.612695138],[-10576385.941875301,4607326.4582639178],[-10576252.296195693,4607325.5599237615],[-10576128.338901812,4607326.333010749],[-10575870.878110152,4607323.5459658401],[-10575622.743900938,4607320.8541174149],[-10575614.197111521,4607320.7682131799],[-10575482.208533851,4607319.319182477],[-10575379.245368455,4607322.8429049449],[-10575358.36652742,4607322.6126241097],[-10575114.784999564,4607319.9173844848],[-10575103.48337701,4607319.7919267295],[-10574849.396551404,4607316.9790000273],[-10574604.793537846,4607314.266312792],[-10574596.086928401,4607314.1737166056],[-10574343.556610506,4607311.3649941785],[-10574091.64521146,4607308.5567818172],[-10573835.090807766,4607307.5893808743],[-10573578.003485365,4607306.6133188875],[-10573573.609182833,4607306.5954908868],[-10573320.411076598,4607305.6257933956],[-10573062.325295039,4607304.6306258803],[-10573056.970877595,4607304.6176396413],[-10572803.453600902,4607303.6405549403],[-10572544.20917413,4607302.6343072085],[-10572540.813931754,4607302.611000522],[-10572284.598121865,4607301.604494499],[-10572024.616239047,4607300.5760837765],[-10572024.409313023,4607044.2647715546],[-10572024.202187918,4606787.8072317746],[-10572024.183103062,4606782.812311097],[-10572023.979746275,4606531.191247494],[-10572023.773424558,4606274.4209062196],[-10572023.779674659,4606268.6846883781],[-10572023.574913334,4606017.4680713834],[-10572023.367092222,4605760.400131749],[-10572023.357712492,4605756.2283476908],[-10572023.242875213,4605609.4961021543],[-10572023.890921855,4605503.1651314432],[-10572025.461668411,4605245.7335351873],[-10572024.475242849,4604988.7524495665],[-10572023.494114282,4604733.0100087542],[-10572022.544929849,4604476.3391760308]]]},"attributes":{"objectid":4600,"field_kid":"1000149638","approxacre":19841,"field_name":"CRITZER","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":7923,"maxoilwell":7,"lastoilpro":80,"lastoilwel":4,"lastodate":"11-1992","cumm_gas":301299,"maxgaswell":5,"lastgaspro":432,"lastgaswel":5,"lastgdate":"2-2009","avgdepth":437.66666666999998,"avgdepthsl":-579.66666667000004,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149638}},{"geometry":{"rings":[[[-10554942.924917599,4637602.0462493338],[-10554943.515528686,4637344.6035035839],[-10554944.106740337,4637087.4035540875],[-10554944.67722789,4636830.4762756601],[-10554945.249217004,4636573.8305898942],[-10554934.907961912,4636573.8806745671],[-10554931.381012799,4636315.7763313297],[-10554927.855364637,4636057.7293157466],[-10554924.34403247,4635799.7499699704],[-10554920.832499515,4635541.8471023543],[-10554917.327473063,4635284.539415569],[-10554913.902833877,4635033.1547036003],[-10554913.842868743,4635028.3644637903],[-10554910.381589592,4634773.6952407844],[-10554906.925515667,4634519.3764092959],[-10554907.407800624,4634260.617292908],[-10554907.891988525,4634001.0986708011],[-10554907.893895466,4633995.7092986228],[-10554908.378380613,4633739.8023681408],[-10554908.874885749,4633477.056726926],[-10555164.437347971,4633476.8954393612],[-10555417.746203003,4633476.7312156297],[-10555420.309668683,4633476.7476885803],[-10555675.46135574,4633476.5667343987],[-10555932.908098001,4633476.3773504831],[-10555935.75789489,4633218.1208697585],[-10555938.607391937,4632959.7812358793],[-10555941.450982848,4632701.199855173],[-10555943.218314942,4632540.4200869221],[-10555949.863418635,4632442.4173504729],[-10556206.455042822,4632443.8065679707],[-10556458.36705165,4632445.1638637818],[-10556463.212859148,4632445.1864638617],[-10556719.235024014,4632446.5427367473],[-10556968.153668627,4632447.8539363304],[-10556973.839948721,4632447.8690021699],[-10557229.049873307,4632449.2141661672],[-10557418.511014404,4632450.208706283],[-10557479.258610303,4632450.6079834858],[-10557483.743600214,4632450.65727174],[-10557737.602560459,4632452.3874338688],[-10557991.696992952,4632454.1109560141],[-10557988.911420243,4632540.5168876862],[-10557989.198355466,4632712.317396027],[-10557989.627012439,4632966.4312688084],[-10557989.648230597,4632970.1330484832],[-10557990.060162127,4633227.7421615049],[-10557990.46379281,4633480.2548258035],[-10558247.952582285,4633480.7812382467],[-10558505.808095962,4633481.304202429],[-10558762.922452139,4633481.8104373654],[-10559019.632640682,4633482.3109256914],[-10559276.046584841,4633483.5678215241],[-10559532.358010236,4633484.8193537993],[-10559788.168355787,4633486.0550507568],[-10560043.522072913,4633487.2824470522],[-10560299.655591777,4633488.6089435825],[-10560555.959707841,4633489.9289270658],[-10560812.423708675,4633491.2544019651],[-10561069.078029517,4633492.5743854679],[-10561325.973929634,4633493.9025421953],[-10561582.997777605,4633495.224313614],[-10561839.376479056,4633496.5307606012],[-10562095.354817169,4633497.829800861],[-10562096.405496139,4633755.3890673704],[-10562097.458476335,4634013.4072803855],[-10562098.4913336,4634271.2580248546],[-10562099.533896957,4634530.8597669704],[-10562097.772920486,4634789.5068292096],[-10562096.122918814,4635032.0020296238],[-10562096.081530578,4635046.1208733339],[-10562095.206685299,4635302.693558339],[-10562094.335546309,4635558.6168746967],[-10562094.232635662,4635590.6762664244],[-10562095.152858997,4635814.803700095],[-10562096.207543507,4636071.8756330358],[-10562097.255523166,4636327.8854389619],[-10562098.305803673,4636584.4841467468],[-10561842.605707632,4636582.2490700521],[-10561586.14182834,4636580.0001978567],[-10561463.289607694,4636578.9175301595],[-10561330.17111605,4636578.809695119],[-10561074.264375025,4636578.5989985717],[-10561042.170773225,4636578.5675996831],[-10560818.312680252,4636579.0848970506],[-10560562.456395613,4636579.6695426172],[-10560306.610623239,4636580.2382200686],[-10560050.80299506,4636580.8005102891],[-10560052.88911771,4636837.3723823261],[-10560054.976240745,4637094.1599233318],[-10560057.073174339,4637351.1642993605],[-10560059.125468487,4637602.7561232783],[-10560059.15809335,4637608.3505211156],[-10559803.535854081,4637607.9572663913],[-10559547.243840668,4637607.5577521473],[-10559291.352890745,4637607.1541492576],[-10559035.490273524,4637606.7423698111],[-10558779.153307784,4637606.4499168722],[-10558522.805429397,4637606.150692747],[-10558265.726305859,4637605.8265564786],[-10558008.159418548,4637605.4969270593],[-10558008.178532206,4637610.3666834105],[-10557751.14846576,4637609.9577156473],[-10557493.977136003,4637609.5423601093],[-10557237.340624347,4637609.1050296519],[-10556981.020478284,4637608.6596501311],[-10556724.330304462,4637608.237267416],[-10556467.45942173,4637607.8079859279],[-10556210.440467823,4637607.3608184364],[-10555953.299272578,4637606.9068798618],[-10555953.276352847,4637601.1125388555],[-10555701.858070744,4637601.3461889243],[-10555450.285109913,4637601.5740900449],[-10555197.149843432,4637601.8128520884],[-10554942.924917599,4637602.0462493338]]]},"attributes":{"objectid":4645,"field_kid":"1000149639","approxacre":4437,"field_name":"FONTANA SOUTH","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149639}},{"geometry":{"rings":[[[-10554689.799794897,4581881.0830111718],[-10554689.962401081,4581626.0723926798],[-10554435.852760674,4581628.0170310568],[-10554181.750028228,4581629.9539183527],[-10554178.440494645,4581629.9878816102],[-10553927.017265894,4581631.8957681898],[-10553673.617948165,4581633.8109194525],[-10553672.04681883,4581509.7909507705],[-10553671.422735251,4581380.6852595741],[-10553670.254497258,4581139.5092253154],[-10553670.19413339,4581128.4617976267],[-10553669.764948739,4581043.8282216769],[-10553670.703837601,4580876.9980285401],[-10553672.114078747,4580626.1630412983],[-10553926.962760547,4580622.6924506212],[-10554180.510935847,4580619.2362323767],[-10554184.457707219,4580619.1852387106],[-10554434.722579464,4580615.7652688287],[-10554688.946337009,4580612.284014334],[-10554694.8870178,4580612.2098741047],[-10554945.013929948,4580608.7825376997],[-10555201.807763997,4580605.2553885132],[-10555206.352928527,4580605.1878711078],[-10555459.367985496,4580601.7199725714],[-10555717.656750632,4580598.1741304239],[-10555974.149303082,4580598.080970834],[-10556227.029772308,4580597.9830247937],[-10556230.21726382,4580597.9843856841],[-10556485.87414857,4580597.8784033349],[-10556736.960339891,4580597.7681537718],[-10556741.105040023,4580597.7645485867],[-10556740.636326035,4580854.2077671587],[-10556740.166709282,4581110.8405545093],[-10556739.685577393,4581367.6710569607],[-10556739.202942315,4581624.6618048577],[-10556738.032406554,4581882.0773747852],[-10556736.858560262,4582140.2164096329],[-10556735.69002782,4582397.5226759668],[-10556734.522399098,4582654.5377188949],[-10556734.476086007,4582909.7459335066],[-10556734.430870418,4583165.367362923],[-10556734.392959543,4583421.4003856378],[-10556734.356746906,4583677.8426176375],[-10556477.431217363,4583676.2774807801],[-10556220.29204048,4583674.7043399708],[-10555962.838399461,4583673.1242129775],[-10555705.629341932,4583671.5374752972],[-10555705.627069421,4583679.0016348204],[-10555451.875486653,4583680.6672371561],[-10555199.010831406,4583682.3194857566],[-10554946.963823464,4583683.9538060622],[-10554695.743573319,4583685.5768067073],[-10554694.155473091,4583428.2179184584],[-10554692.563374905,4583170.1709116409],[-10554690.947155409,4582911.4406668972],[-10554689.326837797,4582652.0273622116],[-10554689.483164724,4582394.0461902265],[-10554689.637980275,4582137.0854774341],[-10554689.799794897,4581881.0830111718]]]},"attributes":{"objectid":4657,"field_kid":"1000146844","approxacre":1110,"field_name":"LOST CREEK","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":647,"maxoilwell":2,"lastoilpro":22,"lastoilwel":1,"lastodate":"10-1985","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146844}},{"geometry":{"rings":[[[-10604073.516310943,4686370.5980475741],[-10604335.01453026,4686368.4460016936],[-10604332.914621452,4686628.2470558342],[-10604330.803397054,4686889.3151391493],[-10604328.685567329,4687149.560447651],[-10604326.570541492,4687409.6456337776],[-10604324.469234163,4687668.6581122801],[-10604322.352305071,4687929.4757921174],[-10604320.247592887,4688189.1668219743],[-10604318.231808437,4688437.813256206],[-10604318.234085603,4688448.7706137849],[-10604058.392815607,4688448.2727892157],[-10603800.075289376,4688447.769431768],[-10603540.745104149,4688447.2686502058],[-10603281.251031308,4688446.7597809816],[-10603281.943954077,4688187.3184995204],[-10603282.625956658,4687931.6985498536],[-10603282.625061821,4687928.6664911294],[-10603283.309471728,4687670.8608275931],[-10603283.991477316,4687413.8737137662],[-10603285.595644174,4687154.2015828928],[-10603287.192900488,4686895.9342239741],[-10603288.789758788,4686636.5850591781],[-10603290.387619022,4686376.9689381979],[-10603294.716775918,4686376.9510599682],[-10603551.163510263,4686374.8694006661],[-10603812.217920747,4686372.7450857237],[-10603815.117140394,4686372.7202869654],[-10604073.516310943,4686370.5980475741]]]},"attributes":{"objectid":4684,"field_kid":"1000147606","approxacre":321,"field_name":"NORWOOD NORTHWEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":178,"maxoilwell":2,"lastoilpro":37,"lastoilwel":2,"lastodate":"8-1985","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":872,"avgdepthsl":-160,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147606}},{"geometry":{"rings":[[[-10605363.15624088,4686371.3969433205],[-10605371.007130073,4686371.4133117171],[-10605370.151672,4686631.7125527486],[-10605369.298116593,4686891.8783845911],[-10605368.441257836,4687151.9292839058],[-10605367.584299458,4687411.8458560547],[-10605108.239925647,4687411.3170406725],[-10604848.274040332,4687410.7788582696],[-10604587.723185381,4687410.2166728424],[-10604326.570541492,4687409.6456337776],[-10604328.686368296,4687149.5369540611],[-10604330.803397054,4686889.3151391493],[-10604332.90891329,4686628.9469489325],[-10604335.01453026,4686368.4460016936],[-10604594.922121661,4686369.1944970153],[-10604848.663352555,4686369.9200636297],[-10604854.219314052,4686369.9418419991],[-10605112.913115472,4686370.6846989579],[-10605363.15624088,4686371.3969433205]]]},"attributes":{"objectid":4825,"field_kid":"1000147609","approxacre":160,"field_name":"TAUY CREEK","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":81,"maxoilwell":1,"lastoilpro":39,"lastoilwel":1,"lastodate":"3-1985","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147609}},{"geometry":{"rings":[[[-10602808.272864722,4628505.633591773],[-10603049.533788905,4628507.1678387215],[-10603048.356726671,4628766.343925993],[-10603047.181068445,4629025.0827008998],[-10603046.002509113,4629283.417576259],[-10603044.823451504,4629541.3346068999],[-10603043.653406641,4629798.8087397115],[-10603042.484064994,4630055.8440268422],[-10603041.310821142,4630312.4662244506],[-10603040.140482798,4630568.6904945346],[-10602798.339311341,4630568.846298554],[-10602556.450239217,4630568.997379249],[-10602549.603796899,4630569.0112087959],[-10602314.454444781,4630569.1602063291],[-10602072.360638162,4630569.3078410784],[-10602063.371040922,4630569.3306204621],[-10601830.173624657,4630569.477052833],[-10601587.887297515,4630569.6229013046],[-10601580.741111914,4630569.6261359192],[-10601345.516573831,4630569.7451310754],[-10601103.056948349,4630569.8617438311],[-10601104.753517929,4630311.9545331057],[-10601106.452192236,4630053.6299465531],[-10601106.487565428,4630047.7209790908],[-10601108.154673291,4629794.8729514536],[-10601109.864465037,4629535.6972398125],[-10601109.924477348,4629527.8193120575],[-10601111.599988544,4629276.1094811428],[-10601113.331109317,4629016.1035794532],[-10601113.347357495,4629010.7575152386],[-10601115.022286693,4628755.673056528],[-10601116.734991143,4628494.8049242906],[-10601358.662878815,4628496.3814144358],[-10601600.513478037,4628497.950374472],[-10601842.253650984,4628499.4867860507],[-10602083.894009667,4628501.017837611],[-10602325.453075215,4628502.5585912084],[-10602566.915029608,4628504.0909212772],[-10602808.272864722,4628505.633591773]]]},"attributes":{"objectid":3409,"field_kid":"1000146334","approxacre":601,"field_name":"SCIPIO","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146334}},{"geometry":{"rings":[[[-10552506.805447938,4507862.7448540991],[-10552761.641122442,4507861.2400208563],[-10552758.643609397,4508114.9115633061],[-10552755.623605087,4508370.5406822497],[-10552753.635613212,4508538.0895220945],[-10552752.878697103,4508608.2939788755],[-10552753.267905906,4508628.6212708419],[-10552758.245756129,4508888.9194275346],[-10552752.363193637,4509043.3134423383],[-10552751.91495344,4509150.9598786542],[-10552750.83255649,4509410.9613890927],[-10552749.758759534,4509668.7660102993],[-10552748.693262054,4509924.3306732727],[-10552748.663745333,4509928.2252325015],[-10552747.596042281,4510183.1426362619],[-10552746.511937283,4510441.9386563944],[-10552746.481915515,4510444.8191140583],[-10552745.434439765,4510700.7549536331],[-10552744.374862269,4510959.4938438199],[-10552491.691939,4510961.200236978],[-10552237.803732526,4510962.9066117471],[-10551984.816059005,4510964.5987397581],[-10551732.024009671,4510966.2843086235],[-10551476.788956992,4510967.9814507971],[-10551221.058135195,4510969.6761878226],[-10550964.426379362,4510971.3604358723],[-10550707.045163326,4510973.0439154841],[-10550451.586946066,4510972.7270046538],[-10550201.294355972,4510972.411437491],[-10550196.387325538,4510972.4010107582],[-10549941.431985332,4510972.0689626038],[-10549693.686117431,4510971.7404359849],[-10549686.721225789,4510971.7302291421],[-10549689.636367092,4510712.8436834272],[-10549692.556012243,4510453.7150426116],[-10549695.459940339,4510194.9991771383],[-10549698.359763933,4509936.4787450759],[-10549701.279409328,4509677.8224730222],[-10549704.195151031,4509419.5276887696],[-10549707.10428609,4509161.6326003214],[-10549710.008168768,4508904.1359991776],[-10549707.638891323,4508646.1080046827],[-10549705.270717524,4508388.2111522537],[-10549702.892334467,4508130.4495956302],[-10549700.515856124,4507872.8283717213],[-10549958.251079883,4507872.6693130471],[-10550218.175413573,4507872.5015854565],[-10550223.399403581,4507872.5035657929],[-10550480.281949505,4507872.339067515],[-10550744.579497501,4507872.1648526043],[-10550995.554951411,4507870.9302083626],[-10551241.466799472,4507869.714530888],[-10551246.097709039,4507869.6940430272],[-10551496.259029001,4507868.4468947314],[-10551746.031302717,4507867.1972167287],[-10552000.098496819,4507865.7123044683],[-10552250.730352007,4507864.2422228102],[-10552254.053962735,4507864.2305448819],[-10552506.805447938,4507862.7448540991]]]},"attributes":{"objectid":3413,"field_kid":"1036124739","approxacre":1453,"field_name":"Ringo","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1036124739}},{"geometry":{"rings":[[[-10559768.542919321,4565503.6268575564],[-10559767.881090991,4565260.9927073419],[-10559513.79674284,4565260.2200236134],[-10559259.786280293,4565259.4408691088],[-10559005.075407045,4565258.6428161357],[-10558749.94134395,4565257.8367733406],[-10558749.734670907,4565001.2483574348],[-10558749.527404789,4564743.8051554505],[-10558749.325552363,4564485.5280353706],[-10558749.1212046,4564226.4022174738],[-10558743.1550983,4564226.3379404414],[-10558489.123331465,4564223.8612094112],[-10558240.129997186,4564221.4277036889],[-10558235.636395454,4564221.3776249541],[-10557982.737440137,4564218.8979693567],[-10557730.424062766,4564216.4181833295],[-10557729.006982038,4563961.1844235724],[-10557727.590203231,4563705.7808718579],[-10557726.165116327,4563450.2140097339],[-10557724.741332414,4563194.4880348509],[-10557723.310942363,4562938.5992806004],[-10557721.878651675,4562682.5417976435],[-10557720.442257781,4562426.317754508],[-10557719.003362767,4562169.9019244853],[-10557842.451456739,4562171.5768962223],[-10557973.502652219,4562173.2714840667],[-10558228.585417824,4562176.5669728396],[-10558233.315893499,4562176.6261754483],[-10558484.229032684,4562179.8670247411],[-10558740.436300054,4562183.1713860994],[-10558746.121881267,4562183.2460565055],[-10558746.407732096,4561920.6580009153],[-10558746.692373551,4561658.9791777758],[-10558746.989020707,4561398.2346284213],[-10558747.284157988,4561138.4157857997],[-10559003.469811369,4561139.8548296038],[-10559259.340800548,4561141.2888023257],[-10559514.620405233,4561142.7114914209],[-10559770.205363469,4561144.1297402903],[-10559770.185795063,4561160.6650519101],[-10560026.653607899,4561158.3943377435],[-10560282.437729269,4561156.1233744305],[-10560538.438801885,4561153.8374465909],[-10560794.371595491,4561151.5456865076],[-10561049.365802504,4561149.2583708195],[-10561303.836803839,4561146.9690297265],[-10561557.564244401,4561144.677791195],[-10561811.074633716,4561142.3826234313],[-10561811.033623746,4561138.1075307233],[-10561809.496099079,4560881.0489814263],[-10561807.969668239,4560626.1668852735],[-10561807.952772865,4560623.4100430952],[-10561806.399340589,4560365.1372464579],[-10561804.844011651,4560106.2415437223],[-10562059.77681906,4560106.5817954233],[-10562307.818849839,4560106.9059762908],[-10562314.45863599,4560106.9138060659],[-10562568.875646476,4560107.2359272707],[-10562814.452023186,4560107.5417334512],[-10562823.039864305,4560107.5609661238],[-10563076.620206397,4560107.8688892955],[-10563326.92946196,4560108.1674447618],[-10563330.389266949,4560108.1769383196],[-10563584.366868958,4560108.4795337338],[-10563838.571834203,4560108.7774362843],[-10563840.467989877,4560365.2185414555],[-10563842.359845756,4560621.0745354071],[-10563844.260317028,4560876.3178566005],[-10563846.155987194,4561131.0609456422],[-10563848.060573785,4561385.1127765663],[-10563849.961360663,4561638.6367723253],[-10563851.043121111,4561786.5983271515],[-10563853.568128053,4561891.5262251282],[-10563859.634149965,4562143.5583739066],[-10563859.912329724,4562400.3995138183],[-10563860.190308305,4562657.3559550205],[-10563860.179965656,4562660.8699023956],[-10563860.452567702,4562914.4322724259],[-10563860.730444107,4563171.6373536941],[-10563860.717688547,4563176.3109260676],[-10563860.982885446,4563429.4938052455],[-10563861.254839212,4563688.5204795767],[-10563861.527511181,4563945.5638431432],[-10563861.79848939,4564201.6753621837],[-10564115.347124005,4564201.0635921285],[-10564368.940510493,4564200.444210737],[-10564372.322425799,4564200.4304891741],[-10564622.60658115,4564199.8212771621],[-10564876.320106735,4564199.1982165752],[-10564880.576434247,4564199.1952719949],[-10565129.078951018,4564195.8265084708],[-10565382.430782357,4564192.3865513923],[-10565386.688812356,4564192.3237321721],[-10565636.372997312,4564188.9256616086],[-10565890.930524642,4564185.456524292],[-10566149.117365062,4564192.1777180564],[-10566393.207389126,4564198.5266903499],[-10566405.370867919,4564198.8349931827],[-10566659.80346334,4564205.4303785218],[-10566735.785209168,4564207.3980241008],[-10566897.655081419,4564209.9344428498],[-10566912.327165147,4564210.1548207477],[-10566927.874662062,4564210.4065258428],[-10567164.322565315,4564213.734797583],[-10567404.44572299,4564217.108459984],[-10567415.221296357,4564217.2635332225],[-10567665.087131875,4564220.7695692172],[-10567913.901950864,4564224.2537936429],[-10567919.01522732,4564483.7064488521],[-10567923.969089704,4564735.0187885081],[-10567924.110592691,4564742.055309956],[-10567929.164720254,4564999.2679448193],[-10567933.920333281,4565241.3318114076],[-10567934.205041397,4565255.3861346981],[-10567939.187621122,4565508.5756533677],[-10567943.928827969,4565749.4482655982],[-10567944.138979681,4565760.0439819386],[-10567949.048305469,4566009.6856891531],[-10567951.609344516,4566139.9489487428],[-10567957.803099921,4566257.4112935551],[-10567704.471694397,4566259.3873151075],[-10567448.755627982,4566261.3740120921],[-10567431.400434177,4566261.5168732414],[-10567192.058425514,4566263.3767034607],[-10566933.894725246,4566265.3763609212],[-10566910.968381289,4566265.5523769446],[-10566673.739619385,4566267.3846609974],[-10566412.985119585,4566269.3901747856],[-10566397.143678518,4566269.5071422113],[-10566151.481152182,4566271.385417508],[-10566051.687712044,4566272.1477770861],[-10565889.678937659,4566273.5886169262],[-10565637.549241927,4566273.4118886609],[-10565384.961816315,4566273.2303422429],[-10565132.036900027,4566273.044357433],[-10564878.732244156,4566272.8511432195],[-10564625.38253621,4566272.6499359366],[-10564372.345290065,4566272.4423824828],[-10564117.548006335,4566272.2278631693],[-10563861.659759635,4566272.006246361],[-10563606.780558493,4566274.3777665608],[-10563352.971796736,4566276.7345622247],[-10563098.867492879,4566279.081971948],[-10562844.920170816,4566281.4201193741],[-10562834.530741874,4566281.5137027614],[-10562589.715943651,4566278.0374424113],[-10562333.758546818,4566274.3964463426],[-10562077.714850126,4566270.7536751768],[-10561821.334163425,4566267.1002491862],[-10561564.613862075,4566265.8978662658],[-10561464.012497354,4566265.4257036401],[-10561464.004181834,4566277.4924977003],[-10561308.550012648,4566277.0070215082],[-10561052.223663749,4566276.2145805173],[-10560795.633909985,4566275.4133866699],[-10560539.348608706,4566274.6118099419],[-10560282.955783002,4566273.804397461],[-10560026.761186888,4566272.9865794303],[-10559770.675717184,4566272.162797234],[-10559769.958254637,4566014.7320803022],[-10559769.272331649,4565768.3130485667],[-10559769.23767744,4565758.5618806193],[-10559768.542919321,4565503.6268575564]]]},"attributes":{"objectid":3459,"field_kid":"1000146854","approxacre":5746,"field_name":"SCHLEGEL","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146854}},{"geometry":{"rings":[[[-10608972.633201815,4439759.562433227],[-10609228.537894417,4439759.8520893669],[-10609229.754788114,4440012.3257368021],[-10609230.978903046,4440266.1237126756],[-10609232.196693758,4440518.221917389],[-10609233.410973433,4440769.6279422473],[-10609234.631874233,4441022.4178910833],[-10609235.851975027,4441275.3179320088],[-10609237.080387589,4441528.4519463507],[-10609238.309502643,4441781.7736852961],[-10608984.406008227,4441780.7030223729],[-10608736.213430822,4441779.649991014],[-10608731.005696695,4441779.6286157444],[-10608478.134197721,4441778.5483348491],[-10608232.662272388,4441777.4933940535],[-10608235.001323247,4442031.5200617816],[-10608237.339172175,4442285.5194676761],[-10608239.669311615,4442539.488474925],[-10608242.000752021,4442793.4303419944],[-10608244.343606452,4443047.4778613215],[-10608246.688665558,4443301.7640882144],[-10608249.036630183,4443556.2914226465],[-10608251.386499161,4443811.0601328826],[-10607997.749194756,4443809.4926417777],[-10607748.86689819,4443807.9486389598],[-10607743.757779993,4443807.919996622],[-10607489.412455069,4443806.3375574388],[-10607234.713920791,4443804.7467037179],[-10607232.483296797,4444056.470741963],[-10607230.318574201,4444300.8133320026],[-10607230.260073964,4444307.4525654381],[-10607228.055765498,4444557.6817125212],[-10607226.121760005,4444777.4059941182],[-10607226.026163952,4444798.5151842805],[-10607225.979197966,4444807.2085510483],[-10606971.697911279,4444807.7195882853],[-10606719.107682997,4444808.220273097],[-10606466.466095183,4444808.7112992937],[-10606214.360127661,4444809.1955712223],[-10605963.161711149,4444809.6704676561],[-10605713.229060506,4444810.1365023116],[-10605463.709187942,4444810.6001681369],[-10605214.888625229,4444811.0565835182],[-10605214.875964092,4444806.6338880351],[-10605214.829837212,4444799.6431625299],[-10605213.109408725,4444558.3132005045],[-10605211.301951407,4444304.8192455759],[-10605211.281296466,4444301.86745256],[-10605209.48217185,4444050.587564623],[-10605207.656677658,4443795.6144487616],[-10605206.33087169,4443541.5577793075],[-10605205.004763365,4443287.3272567783],[-10605203.689970789,4443033.3646629993],[-10605202.377682172,4442779.5192562798],[-10605201.050173089,4442525.4211278958],[-10605199.725166397,4442271.2917294092],[-10605198.40166099,4442017.1362036476],[-10605197.076553253,4441762.952044663],[-10605194.136094069,4441510.7105093636],[-10605191.196036475,4441258.6052430989],[-10605188.266091688,4441006.6337289643],[-10605185.337949999,4440754.78730655],[-10605438.488816425,4440755.8186507989],[-10605691.556686491,4440756.8404637733],[-10605944.560181784,4440757.8543759109],[-10606197.500403583,4440758.8596350737],[-10606194.377775699,4440506.6772680348],[-10606191.256449496,4440254.5433998471],[-10606188.151542539,4440002.4625404608],[-10606185.04523414,4439750.4300471209],[-10606437.736110639,4439751.5102109415],[-10606690.345792875,4439752.5836022384],[-10606942.869274985,4439753.6440783469],[-10607195.330785131,4439754.6995376339],[-10607447.634418147,4439756.3410334606],[-10607700.514619252,4439757.9812967898],[-10607708.430293914,4439758.0322342804],[-10607953.919915907,4439758.3401830187],[-10608207.804667754,4439758.6519527901],[-10608462.214928621,4439758.9629898053],[-10608717.159208296,4439759.2657729872],[-10608972.633201815,4439759.562433227]]]},"attributes":{"objectid":3961,"field_kid":"1000149397","approxacre":2392,"field_name":"LAKE CREEK","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":2037,"maxoilwell":6,"lastoilpro":70,"lastoilwel":1,"lastodate":"1-1985","cumm_gas":813,"maxgaswell":1,"lastgaspro":20,"lastgaswel":1,"lastgdate":"2-1984","avgdepth":971.82608696,"avgdepthsl":63.565217390000001,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149397}},{"geometry":{"rings":[[[-10599974.196818778,4715514.6189213432],[-10600235.756714292,4715514.1595713133],[-10600235.875237245,4715774.1949716769],[-10600235.993759152,4716035.0868874565],[-10600235.998757688,4716041.0471646385],[-10600236.07131741,4716226.8183822399],[-10600236.577509429,4716296.6851299964],[-10600238.474752849,4716558.9950238513],[-10600238.539315488,4716567.9985401426],[-10600239.761701697,4716821.4310643682],[-10600241.029528037,4717084.3523637019],[-10600241.071267525,4717091.0025038002],[-10600242.309467388,4717347.7650111765],[-10600243.582197811,4717611.6412320249],[-10600248.706111379,4717872.1363677913],[-10600253.750338528,4718128.5480056107],[-10600253.818011375,4718131.9553160844],[-10600258.907586116,4718391.0731714843],[-10600263.895751115,4718644.992413179],[-10600263.989352144,4718649.4566552499],[-10600266.976264166,4718801.6714120973],[-10600268.529803265,4718906.8518878389],[-10600272.264243107,4719159.6184243746],[-10600272.328210818,4719163.7574529406],[-10600276.110299869,4719420.182063126],[-10600279.884780299,4719676.1523417737],[-10600021.889435776,4719676.4167859107],[-10599763.470409729,4719676.6747951908],[-10599756.5024898,4719676.6851760019],[-10599504.351388069,4719676.9472369757],[-10599244.569713272,4719677.2098979764],[-10599234.369219106,4719677.2334514773],[-10598983.506581329,4719678.2195659205],[-10598721.580068186,4719679.2436683569],[-10598714.286978643,4719679.2830309523],[-10598458.779061206,4719680.2762809657],[-10598195.112971116,4719681.2947362978],[-10597934.016003104,4719679.1195104886],[-10597674.676632503,4719676.9514777623],[-10597414.778626643,4719674.7746936595],[-10597365.717562716,4719674.3629763704],[-10597155.01887816,4719671.0670888815],[-10596895.552763127,4719666.5435861228],[-10596635.909946604,4719662.0102987597],[-10596376.595402554,4719657.4797139745],[-10596117.32741078,4719652.9446225883],[-10596114.704747099,4719392.3364167958],[-10596112.102606233,4719133.8863912057],[-10596109.509675547,4718874.2871374711],[-10596107.075423867,4718630.6373068942],[-10596106.88600955,4718614.6526773218],[-10596103.599889962,4718355.165494564],[-10596100.317874555,4718095.9660605323],[-10596097.038962204,4717836.9692370892],[-10596093.761751302,4717578.2002466265],[-10596092.578421315,4717318.2999668866],[-10596091.413011292,4717062.6692891195],[-10596091.388984209,4717058.572961105],[-10596090.184029272,4716799.0507610375],[-10596089.006505016,4716545.2978870654],[-10596088.990687355,4716539.7423632406],[-10596088.348765735,4716395.3800258348],[-10596087.629854707,4716280.9958897838],[-10596086.03235236,4716026.7578634359],[-10596086.011929369,4716022.5804578234],[-10596084.377685215,4715764.5270662894],[-10596082.745342977,4715506.813544184],[-10596344.292724162,4715507.6534280833],[-10596600.194982368,4715508.4683951717],[-10596605.523545053,4715508.4866208406],[-10596866.30575542,4715509.2949716225],[-10597119.340050321,4715510.071990435],[-10597126.68941221,4715510.0769350333],[-10597384.02790419,4715510.871031479],[-10597642.483266793,4715511.6616403796],[-10597902.06471052,4715512.4379475666],[-10598162.759921344,4715513.2119258819],[-10598422.320841605,4715513.8376086466],[-10598680.826360974,4715514.4548055595],[-10598938.319228102,4715515.060297708],[-10599194.793936718,4715515.655501293],[-10599199.578480432,4715515.6546792239],[-10599271.280560713,4715515.8309515957],[-10599453.972121915,4715515.5135173742],[-10599713.888347181,4715515.0571452687],[-10599717.683565259,4715515.0630278969],[-10599974.196818778,4715514.6189213432]]]},"attributes":{"objectid":3963,"field_kid":"1000147604","approxacre":2550,"field_name":"LAWRENCE","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000147604}},{"geometry":{"rings":[[[-10569318.424101988,4637641.2792812688],[-10569318.028298685,4637382.6299591772],[-10569317.632893113,4637124.5367421899],[-10569317.256907191,4636867.0165788578],[-10569316.880317744,4636610.0740248188],[-10569316.481594596,4636354.7999563823],[-10569316.078573231,4636098.1291470509],[-10569315.66113613,4635841.2588430066],[-10569315.243601767,4635583.7965362733],[-10569314.829275856,4635325.3497583373],[-10569314.416050354,4635067.0754009103],[-10569314.006934451,4634807.7966099447],[-10569313.597721264,4634547.9275292959],[-10569568.975686904,4634549.4708720585],[-10569824.496417476,4634551.0088506499],[-10570080.110956322,4634552.5477233622],[-10570335.835722476,4634554.0814873539],[-10570334.59290424,4634296.9482907522],[-10570333.349185074,4634039.7669974277],[-10570332.11337553,4633782.46456056],[-10570330.876965577,4633525.0776411192],[-10570329.62754089,4633267.6011372004],[-10570328.379117593,4633010.0507626384],[-10570327.139805211,4632752.4013664713],[-10570326.11711384,4632539.4976506289],[-10570327.415846663,4632494.6634264374],[-10570585.304056628,4632497.0913128145],[-10570842.793204516,4632499.5084734485],[-10571100.468267117,4632501.9408300733],[-10571358.129613537,4632504.3669301104],[-10571616.246787237,4632506.7648099326],[-10571874.507626878,4632509.1559223207],[-10572132.504060211,4632511.5484398529],[-10572390.125659505,4632513.9315085504],[-10572390.385110263,4632540.1628144858],[-10572391.414584454,4632771.2907370189],[-10572392.544645423,4633025.1455307128],[-10572392.542123249,4633028.5246252408],[-10572392.934211794,4633110.1428465322],[-10572393.563639728,4633285.6747954516],[-10572393.817730436,4633356.4384659464],[-10572394.213552045,4633538.2889811452],[-10572394.213626692,4633542.7531183716],[-10572394.818261662,4633799.7392825913],[-10572395.415507615,4634053.2901192233],[-10572395.416489718,4634056.6293221479],[-10572396.004606472,4634313.4418765977],[-10572396.591922749,4634570.1683829715],[-10572396.848247325,4634828.4470145321],[-10572397.103571195,4635086.6460537557],[-10572397.096142432,4635090.1858679578],[-10572397.341475369,4635344.7676661499],[-10572397.589191705,4635602.7458080165],[-10572397.576049004,4635607.5725825792],[-10572397.84751709,4635861.2894044351],[-10572397.884858638,4635896.6717498191],[-10572397.964373402,4636120.7993446076],[-10572397.977601808,4636136.0467154523],[-10572395.065556584,4636377.9768784624],[-10572391.982733721,4636634.0618571285],[-10572393.331119083,4636892.7043670034],[-10572394.682302844,4637152.1696016286],[-10572396.058322666,4637410.314653202],[-10572397.431142095,4637667.8534653941],[-10572141.101699088,4637666.0240763044],[-10571884.477114744,4637664.188044264],[-10571627.511335859,4637662.3434529509],[-10571370.240904655,4637660.4899190469],[-10571112.65490851,4637658.6293589454],[-10570854.765361303,4637656.7615171205],[-10570596.537222559,4637654.8837106898],[-10570337.966187276,4637652.9988780962],[-10570337.966744892,4637641.8928370951],[-10570082.88062744,4637641.7552264947],[-10569827.934371658,4637641.6096947435],[-10569573.109155821,4637641.4474265203],[-10569318.424101988,4637641.2792812688]]]},"attributes":{"objectid":3966,"field_kid":"1000149633","approxacre":2066,"field_name":"BEAGLE","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":108327.53,"maxoilwell":39,"lastoilpro":185.46000000000001,"lastoilwel":25,"lastodate":"10-2008","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":544,"avgdepthsl":-431,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149633}},{"geometry":{"rings":[[[-10578158.023275679,4597058.5086758798],[-10578157.240362538,4596801.171796212],[-10578156.458448188,4596544.1588142365],[-10578155.671725892,4596287.4798854683],[-10578154.886202531,4596031.1363845235],[-10578154.091672324,4595774.3191654179],[-10578153.296841661,4595517.5177445039],[-10578152.521533342,4595260.7246135715],[-10578151.746224929,4595003.9457518747],[-10577895.219926372,4595003.0937817208],[-10577638.173932012,4595002.2340542953],[-10577381.793200366,4595001.3697417025],[-10577125.718119165,4595000.4971568761],[-10576869.966508808,4594999.6213889141],[-10576614.460780367,4594998.7381125418],[-10576359.267009517,4594997.8582691308],[-10576104.319420932,4594996.9709173031],[-10576103.397199661,4594740.2691387469],[-10576102.478175879,4594484.4321193267],[-10576101.565463718,4594227.9827554459],[-10576100.653753523,4593971.4200421087],[-10576099.723922631,4593714.8471591407],[-10576098.794692168,4593458.311048218],[-10576097.866265779,4593201.335691724],[-10576096.93603914,4592944.1065879157],[-10576096.511487246,4592687.5927794566],[-10576096.085636275,4592430.7449505217],[-10576095.64166346,4592174.0492691929],[-10576095.198091181,4591917.3472415945],[-10576094.763231615,4591660.2678557001],[-10576094.596844638,4591561.884424869],[-10576094.14666527,4591402.9685977697],[-10576093.415669231,4591145.4577505579],[-10576092.687177567,4590887.7390172062],[-10576348.156549638,4590888.9563370962],[-10576603.79491551,4590890.1678056158],[-10576859.284310549,4590891.3708812818],[-10577114.743671147,4590892.5659448318],[-10577127.585197806,4590892.6252524238],[-10577370.161084643,4590893.6156416954],[-10577625.544859616,4590894.6519848788],[-10577880.900902774,4590895.6836225949],[-10578136.224008169,4590896.707756917],[-10578135.458110215,4590639.9959349753],[-10578134.694109287,4590383.9891789882],[-10578133.918101547,4590127.0348519292],[-10578133.140194463,4589869.6945965178],[-10578132.368396582,4589612.0577108543],[-10578131.595700445,4589354.0423251837],[-10578130.830415338,4589095.6847077357],[-10578130.062730061,4588836.9762375718],[-10578128.658400573,4588580.1747788573],[-10578127.889349027,4588439.5004770672],[-10578127.167470735,4588323.5115483981],[-10578127.121983549,4588314.6401385181],[-10578126.33919997,4588066.9874211606],[-10578125.529950203,4587810.5768351313],[-10578124.712391431,4587554.0958115887],[-10578123.895433709,4587297.5677486127],[-10578123.094588485,4587041.8579158485],[-10578122.292643322,4586785.9693012219],[-10578342.701477692,4586787.7861845512],[-10578560.784043537,4586789.5789274089],[-10578564.012847289,4586789.6138686631],[-10578733.892418643,4586791.0168676171],[-10578786.244478527,4586790.6274083126],[-10578910.168347806,4586789.7017934965],[-10579005.250313155,4586791.102445649],[-10579009.354220567,4586791.1685284358],[-10579083.355705041,4586792.2780532539],[-10579234.141072715,4586793.5715814047],[-10579455.955518655,4586795.4696929809],[-10579459.582779542,4586795.4985296195],[-10579520.96499184,4586796.0164684849],[-10579685.709179329,4586796.4116134895],[-10579912.183080522,4586796.9495351426],[-10580166.637678379,4586797.7641771594],[-10580421.671841109,4586798.5734762261],[-10580676.99333342,4586799.3823921662],[-10580932.716586618,4586800.1867290298],[-10581187.890910219,4586800.9717454407],[-10581443.044510059,4586801.7491341839],[-10581698.210924542,4586802.5308452658],[-10581953.371131914,4586803.3067084122],[-10581950.468639867,4587059.949264898],[-10581947.563142646,4587316.8406359358],[-10581944.651541658,4587573.3315395974],[-10581941.740142478,4587829.6391055044],[-10581938.838155063,4588085.8426589556],[-10581935.934966769,4588342.0030966494],[-10581933.032082502,4588597.7047558315],[-10581930.133205406,4588853.0926864743],[-10582185.569690527,4588853.2717536427],[-10582441.162555063,4588853.4431905011],[-10582696.920609096,4588853.6111931233],[-10582952.829836568,4588853.7722012401],[-10583208.873418203,4588853.9253248787],[-10583465.056559946,4588854.0732342675],[-10583676.247295408,4588854.2005756032],[-10583721.377056878,4588854.5230088476],[-10583977.849917779,4588856.3519061115],[-10583982.15865415,4588601.1618165858],[-10583986.460279208,4588346.4052423481],[-10583990.748291086,4588091.3660669569],[-10583995.036303557,4587836.2820676481],[-10584251.965820013,4587836.8388891183],[-10584508.257404739,4587837.3888488254],[-10584763.885528492,4587837.9266069317],[-10585018.847087666,4587838.457503451],[-10585015.869154477,4588093.7507890193],[-10585012.885511715,4588349.4503848813],[-10585009.922093635,4588604.9833743982],[-10585006.956772808,4588860.6111763362],[-10585258.679390762,4588861.69294082],[-10585514.449450998,4588862.7857421348],[-10585517.558817377,4588862.7951318882],[-10585770.088561097,4588863.8655745005],[-10586025.570591001,4588864.9421018427],[-10586023.834232528,4589123.7847373709],[-10586022.099876545,4589382.6196082532],[-10586022.085638633,4589385.322298957],[-10586020.347900648,4589641.4331075354],[-10586018.592320772,4589900.2430371149],[-10586016.860175971,4590158.0424564434],[-10586015.129736695,4590415.4106957885],[-10586013.38608554,4590672.3842230402],[-10586011.645942014,4590928.9215479242],[-10585755.242092328,4590928.6793258898],[-10585498.210622909,4590928.4308761787],[-10585241.543871785,4590928.1774639906],[-10584984.933285106,4590927.9185826415],[-10584981.251134807,4591184.6814388847],[-10584977.567082416,4591441.4600829734],[-10584973.882829748,4591698.2705421206],[-10584970.198076487,4591955.1096389769],[-10584966.08933649,4592212.0435207505],[-10584961.977291387,4592469.1736969361],[-10584957.874255182,4592726.5127752433],[-10584953.76741316,4592984.0662413314],[-10584951.129258484,4593241.229985537],[-10584948.489101578,4593498.4063610807],[-10584945.868967598,4593755.6070726644],[-10584943.248833587,4594012.8332672957],[-10584940.608777044,4594270.0404195525],[-10584937.97022273,4594527.2041008035],[-10584935.34868755,4594784.4363956256],[-10584932.726751801,4595041.7029569633],[-10584677.312827932,4595041.0967885284],[-10584426.528511772,4595040.4960571425],[-10584422.139179567,4595040.4826027667],[-10584167.20390447,4595039.868288015],[-10583912.50890485,4595039.250154553],[-10583655.80230901,4595037.3373320224],[-10583398.49852851,4595035.4133177167],[-10583142.121810688,4595033.5026560966],[-10582886.164573736,4595031.5891925236],[-10582884.26630717,4595289.4499335615],[-10582882.369742393,4595547.348791372],[-10582880.490697635,4595805.273299207],[-10582878.611452319,4596063.2571788188],[-10582623.935706619,4596061.3191254688],[-10582370.056774303,4596059.3806846263],[-10582115.676266998,4596057.4288871689],[-10581861.263122251,4596055.4706007363],[-10581860.095715063,4596313.4472751906],[-10581858.926705735,4596571.4759466071],[-10581857.77571686,4596829.5445297668],[-10581856.624427181,4597087.686114572],[-10582110.931228707,4597089.5669298517],[-10582365.673529401,4597091.4444333259],[-10582620.238927303,4597093.3116305657],[-10582874.525405478,4597095.1686496185],[-10582873.930434875,4597352.896360497],[-10582873.337866941,4597610.6441184906],[-10582872.723670894,4597868.8327940097],[-10582872.108371314,4598127.3254784271],[-10582617.314736322,4598125.1302920943],[-10582362.350705987,4598122.9277257808],[-10582107.356040414,4598120.7278326461],[-10581852.475305391,4598118.522211805],[-10581851.811394403,4598374.0986338882],[-10581851.135331798,4598634.6256483207],[-10581850.454974867,4598893.7741883062],[-10581849.779436409,4599151.2353644166],[-10581594.266195342,4599149.4187974036],[-10581338.385833506,4599147.5923055131],[-10581082.692085562,4599145.7541023875],[-10580960.328846309,4599144.8730144547],[-10580826.962916248,4599141.3570278566],[-10580828.176367192,4598881.5205260143],[-10580829.388414565,4598621.9573301999],[-10580829.418381257,4598617.6705710804],[-10580830.630501823,4598361.685260565],[-10580831.866484966,4598101.0449424358],[-10580832.804292865,4597844.8531583324],[-10580833.741294708,4597589.3529097913],[-10580834.671884008,4597334.5529263457],[-10580835.598463511,4597080.4527742993],[-10580580.154157255,4597078.6246527415],[-10580324.589412922,4597076.7881333698],[-10580069.01545801,4597074.9439788666],[-10579813.419477813,4597073.0939709228],[-10579813.654909935,4597104.9629280511],[-10579812.741586551,4597329.6740118982],[-10579811.728563868,4597579.1954491129],[-10579811.694975892,4597585.8277358525],[-10579810.637355745,4597841.573689214],[-10579809.619650118,4598088.113494169],[-10579809.589449871,4598096.9109507697],[-10579808.539244302,4598351.8673629565],[-10579807.529052891,4598597.6789894188],[-10579807.500555057,4598606.4164243396],[-10579806.443347599,4598860.5736330673],[-10579805.387845077,4599114.3435422974],[-10579598.658702867,4599114.380699439],[-10579400.846580908,4599114.4128216272],[-10579392.741991913,4599114.405631097],[-10579187.669848874,4599114.4423932163],[-10578994.228636637,4599114.4724441096],[-10578983.450383199,4599114.469475152],[-10578780.062270381,4599114.4954049373],[-10578585.373928821,4599114.5164287873],[-10578577.43032431,4599114.5129281422],[-10578375.539727913,4599114.5331183402],[-10578174.405198127,4599114.5471930206],[-10578172.455034483,4598858.9515577583],[-10578170.502170635,4598602.9559853282],[-10578170.489278166,4598599.9096556362],[-10578168.566028807,4598346.5668688351],[-10578166.615273045,4598089.7872921648],[-10578166.571463333,4598084.2555552758],[-10578164.662518023,4597832.5883949474],[-10578162.70866484,4597574.9616818093],[-10578162.695980681,4597570.8126718691],[-10578162.651570141,4597565.3003022419],[-10578161.498266749,4597316.9381029457],[-10578160.511992738,4597104.3672768464],[-10578158.023275679,4597058.5086758798]]]},"attributes":{"objectid":3969,"field_kid":"1000146317","approxacre":11605,"field_name":"BLUE MOUND","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1266510.54,"maxoilwell":258,"lastoilpro":1131.3599999999999,"lastoilwel":227,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":795.28415913000003,"avgdepthsl":-222.74927475999999,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146317}},{"geometry":{"rings":[[[-10607996.67977345,4659513.9240948297],[-10608254.747325888,4659512.1678551333],[-10608255.095032454,4659771.0507249068],[-10608255.442038214,4660029.9304147065],[-10608255.796752023,4660289.3267753525],[-10608256.15256653,4660549.090929525],[-10607998.762625301,4660550.5513066472],[-10607741.862646762,4660552.0034853984],[-10607484.789469447,4660553.4528486794],[-10607227.771655802,4660554.8958094809],[-10607226.864875183,4660295.7053917507],[-10607225.959295692,4660036.6654565511],[-10607225.051313139,4659777.8050565133],[-10607224.145132385,4659519.1048449641],[-10607481.382230787,4659517.3918855404],[-10607738.903555691,4659515.6722666007],[-10607996.67977345,4659513.9240948297]]]},"attributes":{"objectid":4080,"field_kid":"1000148265","approxacre":159,"field_name":"OTTAWA SOUTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":2574.1599999999999,"maxoilwell":2,"lastoilpro":70.879999999999995,"lastoilwel":2,"lastodate":"7-2007","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000148265}},{"geometry":{"rings":[[[-10584890.395337375,4539681.6887598373],[-10585142.048665691,4539685.1654230831],[-10585145.098439608,4539941.4038543403],[-10585147.833142722,4540170.9984196257],[-10585148.140090454,4540196.4565052455],[-10585151.177422686,4540450.3312623901],[-10585153.915020766,4540679.2044666689],[-10585153.980380207,4540686.4810488252],[-10585154.083490003,4540702.984121073],[-10585155.86173567,4540953.3564867554],[-10585157.541304158,4541189.6019665301],[-10585157.621455243,4541203.315908825],[-10585159.42201682,4541452.8546365239],[-10585161.218669068,4541701.9783357903],[-10584907.293842632,4541701.6385343401],[-10584653.32556623,4541701.2920241486],[-10584650.785448892,4541701.2821528632],[-10584399.320948066,4541700.9426025711],[-10584145.272980126,4541700.5934341121],[-10584140.984155163,4541700.6434361478],[-10583890.520436961,4541703.1873618923],[-10583635.545938704,4541705.7711648243],[-10583632.52907433,4541705.8038245775],[-10583380.368307093,4541708.3550958242],[-10583124.985439636,4541710.9328259192],[-10582873.324541513,4541704.3522762498],[-10582628.314683959,4541697.9420998469],[-10582621.731221143,4541697.770209996],[-10582370.18295254,4541691.1753616184],[-10582128.234311692,4541684.8258191124],[-10582118.707170434,4541684.8493699143],[-10581867.503577409,4541685.2015729435],[-10581624.137485212,4541685.5354162734],[-10581616.595723957,4541685.5487126932],[-10581366.026859781,4541685.8924346482],[-10581115.793781154,4541686.2297009164],[-10581113.973599352,4541432.3996169148],[-10581112.145898651,4541177.6704628328],[-10581110.330101395,4540922.0457218513],[-10581108.507586259,4540665.5302693155],[-10581106.680292966,4540411.4167285925],[-10581104.852698604,4540157.2410389185],[-10581103.050332364,4539902.9937129207],[-10581101.248065464,4539648.6803241326],[-10581352.548967512,4539650.3623168552],[-10581604.06972204,4539652.0412721587],[-10581855.846570684,4539653.7185821636],[-10582107.884719374,4539655.3913361207],[-10582113.716717118,4539655.4379101051],[-10582128.000120528,4539655.5233390871],[-10582360.04018933,4539655.8851073822],[-10582612.458059426,4539656.2734586606],[-10582616.744381778,4539656.2849765131],[-10582865.030907588,4539656.670162498],[-10583117.789669139,4539657.056362289],[-10583371.788991654,4539660.6013640352],[-10583625.47945944,4539664.1337104831],[-10583878.903721606,4539667.6654243367],[-10584132.058774605,4539671.1868874207],[-10584385.402844662,4539674.7006309964],[-10584638.164445737,4539678.1985552954],[-10584890.395337375,4539681.6887598373]]]},"attributes":{"objectid":4121,"field_kid":"1000146852","approxacre":1257,"field_name":"SAVONBURG SOUTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":122,"maxoilwell":1,"lastoilpro":23,"lastoilwel":1,"lastodate":"3-1985","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146852}},{"geometry":{"rings":[[[-10631861.552052319,4495015.9078053236],[-10631862.274255462,4494758.9267597059],[-10631605.905806944,4494761.5299273003],[-10631350.783159323,4494764.1152010029],[-10631096.233155761,4494766.6971988725],[-10631040.447433049,4494767.2622946892],[-10630842.573810892,4494772.3701187],[-10630841.063989244,4494527.2034825841],[-10630839.566192532,4494283.9508048985],[-10630839.552755713,4494280.4393954454],[-10630838.035712449,4494033.247781639],[-10630836.5139583,4493785.2385751372],[-10631091.842633111,4493783.6728912052],[-10631348.234351292,4493782.0914066937],[-10631353.527803868,4493782.0543588903],[-10631605.669542981,4493780.5012279525],[-10631864.157318445,4493778.9027329758],[-10631864.202629305,4493755.0447996166],[-10632113.541544259,4493758.0604241937],[-10632356.445722239,4493760.9908779208],[-10632361.895451181,4493761.0570238857],[-10632609.236418616,4493764.0286766943],[-10632855.580865085,4493766.9824385876],[-10633107.103635045,4493770.0022209994],[-10633358.998823578,4493773.0198614979],[-10633611.290858168,4493776.0400220491],[-10633863.977235986,4493779.0586706819],[-10633863.504823456,4493531.161186547],[-10633863.024876153,4493278.5566261746],[-10633863.018247591,4493274.7676140955],[-10633862.546734778,4493026.663310851],[-10633862.069297981,4492775.4610312553],[-10633613.685433935,4492774.7155289007],[-10633365.67458934,4492773.9637269443],[-10633355.326650823,4492773.9492422333],[-10633118.589788241,4492773.5682180999],[-10632870.125635687,4492773.1620007623],[-10632850.121937145,4492773.1317711966],[-10632620.303856138,4492772.7518782504],[-10632369.128654279,4492772.329409386],[-10632343.714270243,4492772.2933864063],[-10632115.507301174,4492771.9061854631],[-10631860.072608447,4492771.4653238673],[-10631844.236196931,4492771.4420220554],[-10631602.899764419,4492771.6418033447],[-10631343.987964774,4492771.8494025161],[-10631343.206139021,4492511.9788208464],[-10631342.439965183,4492257.8895411706],[-10631342.418210017,4492252.7314733844],[-10631341.629486457,4491994.5653718635],[-10631340.867342375,4491744.7473338377],[-10631340.854583876,4491737.3296438335],[-10631340.176402932,4491515.8696282255],[-10631340.093104001,4491481.3881551176],[-10631339.483329646,4491231.3185380185],[-10631339.477893196,4491226.2220692923],[-10631338.853576552,4490971.8111751638],[-10631338.229564684,4490718.1581889773],[-10631089.853025457,4490716.3375617489],[-10631040.616130829,4490715.9751495467],[-10630838.173854815,4490714.0997717688],[-10630819.166229401,4490713.9171243832],[-10630584.834892532,4490711.7333346922],[-10630329.26848357,4490709.345580698],[-10630317.195420463,4490450.9939996125],[-10630305.141477728,4490193.0150524965],[-10630293.079522885,4489935.1785937026],[-10630281.030280137,4489677.5630802484],[-10630269.064539297,4489421.5350294579],[-10630257.217746949,4489168.0132180983],[-10630245.362039678,4488914.3402198488],[-10630233.441846007,4488659.3013669979],[-10630215.301189518,4488659.2834927384],[-10630204.867553286,4488398.5547844265],[-10630194.428305922,4488137.6246278742],[-10630183.886120876,4487874.1725392649],[-10630173.275642706,4487608.9647164131],[-10630162.697001802,4487344.4180043433],[-10630152.264448775,4487083.5480054719],[-10630152.103839777,4487079.7182816714],[-10630141.531900346,4486815.2915358646],[-10630130.91710137,4486549.8040712923],[-10630119.537764549,4486549.5154504124],[-10630114.499370066,4486287.2603371451],[-10630109.483807744,4486026.1718717106],[-10630109.40950018,4486022.7609231444],[-10630104.455427671,4485764.8698076485],[-10630099.439962437,4485503.8261632174],[-10630094.50241187,4485246.8849546025],[-10630089.584189106,4484991.0446768729],[-10630084.686094202,4484736.1715526981],[-10630079.815037258,4484482.5918149445],[-10630094.673376398,4484482.6088857939],[-10630339.15494068,4484482.8031788459],[-10630599.789728912,4484483.0052445661],[-10630609.911035743,4484483.0157048777],[-10630861.8176146,4484483.2019159934],[-10631040.164632691,4484483.3287132988],[-10631125.142619479,4484484.2280173656],[-10631381.484746531,4484483.7823690493],[-10631638.434958246,4484483.3294207854],[-10631895.810048299,4484482.860611707],[-10632153.661374561,4484482.3834952572],[-10632152.447989466,4484222.0282190517],[-10632151.235806903,4483961.8977919128],[-10632150.027630197,4483702.0206457516],[-10632148.821857508,4483442.3905937411],[-10632147.423168749,4483182.9862185111],[-10632146.025081858,4482923.809769433],[-10632144.622390963,4482664.8621106185],[-10632143.222003872,4482406.1456164746],[-10631882.368121129,4482407.5783819901],[-10631629.662014766,4482408.9604505273],[-10631624.157315195,4482408.9917732533],[-10631368.590887453,4482410.3737073522],[-10631115.66843752,4482411.7351344004],[-10631106.473137435,4482154.1101703756],[-10631097.280139493,4481896.5348066939],[-10631088.083336767,4481639.0019917255],[-10631078.888535837,4481381.5167563139],[-10630829.223519087,4481381.5897428421],[-10630591.862468164,4481381.6531867748],[-10630580.953737574,4481381.6568126129],[-10630334.334451962,4481381.7230240833],[-10630089.250429861,4481381.7837191476],[-10630087.920799995,4481123.4166624034],[-10630086.595681364,4480866.0400582841],[-10630085.275266323,4480608.4577034554],[-10630083.959761458,4480351.6315275077],[-10629830.447907908,4480353.2414206099],[-10629575.762305873,4480354.8520528749],[-10629319.891942721,4480356.4673251566],[-10629062.849032462,4480358.0832107756],[-10628821.579870502,4480362.2616535267],[-10628580.667720009,4480366.4283998907],[-10628561.445730679,4480366.7699148962],[-10628340.131302569,4480370.592762216],[-10628099.964511011,4480374.7363678664],[-10628074.288805405,4480375.1755715571],[-10627860.158935716,4480378.8655086709],[-10627620.722986383,4480382.9869800694],[-10627600.019995451,4480383.3409333769],[-10627381.650555983,4480387.0988943661],[-10627142.938540928,4480391.1998672746],[-10626899.668843469,4480389.9798999242],[-10626662.223940214,4480388.7820348283],[-10626656.229250349,4480388.7560293209],[-10626412.629272452,4480387.5224669715],[-10626174.765887413,4480386.3123898869],[-10626168.868209051,4480386.2886508312],[-10625924.999421284,4480385.0349506838],[-10625818.376275087,4480384.4863320142],[-10625737.271555305,4480383.7592466986],[-10625680.904671028,4480383.5207595993],[-10625675.580251466,4480383.4946374977],[-10625436.686582701,4480382.444866213],[-10625219.212431824,4480381.4842326734],[-10625192.414649095,4480383.1294676997],[-10625134.248798897,4480383.0698997164],[-10624942.471593039,4480383.3152888864],[-10624695.651627636,4480383.6269926727],[-10624692.100846838,4480383.6358783906],[-10624441.293999372,4480383.9404802835],[-10624190.046946017,4480384.2401683815],[-10624186.139369106,4480131.4619802907],[-10624182.223776754,4479878.2008726699],[-10624178.295461942,4479624.2999695353],[-10624174.357228376,4479369.8077606978],[-10624170.438125361,4479116.2769627869],[-10624166.727698717,4478876.1823328054],[-10624166.557388956,4478865.0660005156],[-10624162.710014122,4478616.2423979901],[-10624158.892692978,4478369.4045084966],[-10624137.457452448,4478108.3937231218],[-10624115.701095194,4477843.4711987916],[-10624115.011915745,4477835.073803761],[-10624093.782522591,4477576.4635589672],[-10624072.102246784,4477312.3443320375],[-10624051.494057322,4477053.9570163144],[-10624030.900679776,4476795.7144156937],[-10624010.309799697,4476537.5889704246],[-10623989.728925787,4476279.5863324702],[-10624237.865148725,4476280.9146222956],[-10624487.162608778,4476282.240790016],[-10624737.534505989,4476283.5678534042],[-10624989.170959324,4476284.8934250968],[-10624991.526176682,4476028.615692243],[-10624993.782486578,4475783.2053118544],[-10624993.875895917,4475773.1104733767],[-10624996.209504848,4475518.3843784472],[-10624998.413902253,4475277.7022018926],[-10624998.544423578,4475264.439992426],[-10625248.928199861,4475266.6608472355],[-10625499.461347554,4475268.8774280921],[-10625750.13565715,4475271.0834459458],[-10626000.95122882,4475273.2843092661],[-10626250.782064896,4475275.4797507226],[-10626500.529203802,4475277.6694055982],[-10626750.197350891,4475279.8468592456],[-10626999.79051085,4475282.0194068812],[-10626999.716784919,4475288.965281046],[-10627245.039283717,4475286.6138879815],[-10627489.930085719,4475284.261483225],[-10627734.394597085,4475281.9005201319],[-10627978.427912237,4475279.5395515822],[-10627980.106021106,4475023.0104764253],[-10627981.783729214,4474766.3821242861],[-10627983.459134316,4474509.6484653428],[-10627985.134338887,4474252.8159213001],[-10627978.943200409,4474252.8632482067],[-10627980.806588937,4474001.6199397705],[-10627982.67766848,4473749.3735587904],[-10627984.560058435,4473496.7131920168],[-10627986.446849486,4473243.4375387253],[-10627988.32592907,4472989.7561421869],[-10627990.160496444,4472741.9392704936],[-10627990.193901934,4472736.9726485144],[-10627992.065082489,4472484.7713762969],[-10627993.932664542,4472233.4009988019],[-10628003.241988156,4471975.5562076746],[-10628012.62238173,4471715.7887074184],[-10628012.78093414,4471711.2016606936],[-10628022.062631043,4471453.9007385885],[-10628031.58075745,4471189.9758173442],[-10628040.348443206,4470929.7166012842],[-10628049.109123148,4470669.6896098685],[-10628057.939470507,4470407.6022149306],[-10628066.814061111,4470144.2286022464],[-10627828.206517573,4470141.0220132116],[-10627604.2555869,4470138.0058765486],[-10627583.325432677,4470137.4820468621],[-10627577.615142817,4470137.3449213989],[-10627337.476112146,4470131.2625580067],[-10627090.514907848,4470125.0023203203],[-10627098.87880528,4469852.602639907],[-10627107.119088382,4469584.2595950589],[-10627115.39250114,4469314.5531861559],[-10627123.026818629,4469065.6656785058],[-10627123.510838728,4469045.3018059758],[-10627129.977979617,4468777.2647447092],[-10627136.448123591,4468509.0929636676],[-10627142.921371363,4468240.8740812046],[-10627149.394819384,4467972.5779351331],[-10627392.613463016,4467974.3697824385],[-10627620.666000476,4467976.0445884829],[-10627635.654901883,4467976.1491829213],[-10627878.519736679,4467977.9153824728],[-10628121.206665939,4467979.6749169445],[-10628134.225793744,4467979.7779673692],[-10628155.990516342,4467979.9317036951],[-10628363.069731327,4467979.4936561184],[-10628604.029451877,4467978.9790490633],[-10628613.328985637,4467978.9672770528],[-10628844.04788604,4467978.4699555002],[-10629083.119527336,4467977.9480245905],[-10629124.267304225,4467743.2529122289],[-10629166.156512802,4467504.3206993388],[-10629168.206103193,4467492.6322284704],[-10629208.792959956,4467261.1511718361],[-10629252.161428737,4467013.8126151524],[-10629253.850917337,4467004.2306741625],[-10629294.942044081,4466769.8343919171],[-10629337.729470193,4466525.7676962614],[-10629339.442184865,4466516.0284810634],[-10629381.004445093,4466278.9650597153],[-10629425.191643158,4466026.9235278461],[-10629664.57018362,4466036.804705373],[-10629907.258345263,4466046.8158928081],[-10629922.386815904,4466047.4355987217],[-10630152.507763874,4466056.9323194539],[-10630400.952271361,4466067.1776232403],[-10630412.9520289,4466067.6819068212],[-10630412.065051258,4465819.0908078784],[-10630411.17376275,4465569.5757982424],[-10630410.285582362,4465320.803548024],[-10630409.396801515,4465072.0862933882],[-10630408.498592382,4464820.6036396045],[-10630407.642606836,4464581.109400576],[-10630407.594275229,4464568.9839892555],[-10630406.706602152,4464321.3592301318],[-10630405.827155437,4464076.4485233724],[-10630420.192547999,4464076.7868020851],[-10630420.523291599,4463830.6183572691],[-10630420.851238491,4463585.4959324179],[-10630421.174668366,4463338.4868913842],[-10630421.500194987,4463090.5709165419],[-10630166.877254942,4463084.8171902383],[-10629910.809044791,4463079.0246140072],[-10629655.065208854,4463073.2389556412],[-10629399.054964617,4463067.4403526979],[-10629399.126723967,4463048.2019243753],[-10629399.35002193,4463023.2925526267],[-10629401.146580959,4462818.3343762215],[-10629403.333504729,4462568.7920787027],[-10629403.857427739,4462509.2710114056],[-10629405.537037894,4462317.701478567],[-10629407.763880372,4462063.8451819569],[-10629405.249260806,4461812.3996865209],[-10629402.731335102,4461560.632326806],[-10629402.694475122,4461557.9235962499],[-10629400.210107023,4461309.1288476391],[-10629397.707905987,4461058.4522035923],[-10629397.576469276,4461045.2416856745],[-10629395.201896528,4460807.187525264],[-10629392.714821395,4460557.8996393951],[-10629392.614939412,4460547.5368821705],[-10629390.201299282,4460306.0941090193],[-10629387.613446079,4460047.2947617956],[-10629138.298644129,4460031.5759186717],[-10628900.196502481,4460016.5593084265],[-10628890.215865003,4460015.9267023252],[-10628643.352794543,4460000.3540199464],[-10628410.248127388,4459985.6438873895],[-10628397.724447608,4459984.4784495439],[-10628397.534297703,4459722.0184562309],[-10628397.351831535,4459470.9222212741],[-10628397.337658269,4459462.2926441319],[-10628397.138835333,4459205.46244023],[-10628396.941332582,4458951.4698652765],[-10628149.940525776,4458931.129826582],[-10627903.835553095,4458910.8565261001],[-10627658.677974219,4458890.6601368934],[-10627414.445563413,4458870.5321185049],[-10627163.137599837,4458869.0191713208],[-10626912.581404984,4458867.5041071745],[-10626661.965340741,4458865.9788691709],[-10626411.603269886,4458864.4479858521],[-10626408.675627582,4458610.5868987348],[-10626405.746882467,4458356.5459333472],[-10626402.829254938,4458103.2313607465],[-10626399.916435692,4457850.3505511265],[-10626406.233137522,4457850.3680371977],[-10626405.348889755,4457601.3141991971],[-10626404.466148457,4457352.9584643776],[-10626403.588304525,4457103.4230217896],[-10626402.70925523,4456853.3312237309],[-10626401.827092936,4456601.8993962668],[-10626400.938808993,4456348.3821081724],[-10626400.906921238,4456341.0395886665],[-10626400.027789811,4456093.5896752765],[-10626399.109436175,4455835.0675199451],[-10626648.245955219,4455842.0583020663],[-10626894.372793058,4455848.9598698663],[-10626897.105953852,4455849.0336370785],[-10626969.77088839,4455851.0670033535],[-10627142.305706806,4455854.1225511972],[-10627145.73467184,4455854.1530233677],[-10627393.494264858,4455856.3751647882],[-10627643.142723417,4455855.8722567866],[-10627890.354564626,4455855.3685317002],[-10627893.090127645,4455855.362828441],[-10628143.484348485,4455854.8424895471],[-10628393.924222101,4455854.31436822],[-10628399.70951141,4455854.3033466106],[-10628644.993935397,4455855.5201761341],[-10628896.04943235,4455856.7577464776],[-10629147.5438367,4455857.9940726208],[-10629399.038741473,4455859.2231168533],[-10629399.470903644,4455604.3963243347],[-10629399.894590478,4455354.9324557232],[-10629399.897063505,4455350.2902475623],[-10629400.333540233,4455096.9514089953],[-10629400.755753096,4454851.8040691782],[-10629400.666301895,4454844.3727204073],[-10629397.643670745,4454589.8749629976],[-10629394.698871555,4454341.9490594743],[-10629394.645984037,4454337.8484444562],[-10629391.660418525,4454086.9856477529],[-10629388.735957194,4453841.3781242101],[-10629640.702939156,4453834.1281700758],[-10629893.556046454,4453826.8472440233],[-10629907.122435031,4453826.4513472319],[-10630144.331251344,4453819.6162255881],[-10630147.585515562,4453819.661001157],[-10630402.984436087,4453823.1590613965],[-10630412.973890901,4453823.295779258],[-10630657.367381049,4453826.6302319234],[-10630912.327192934,4453830.1025480349],[-10630920.801895633,4453830.2216510391],[-10631039.716443952,4453831.8456700137],[-10631167.780701844,4453831.9184212303],[-10631423.656931339,4453832.0610349197],[-10631673.616548344,4453842.2195173725],[-10631915.143150665,4453852.0306872297],[-10631923.159995642,4453852.3521532118],[-10632172.13810497,4453862.4615782369],[-10632411.171594141,4453872.1614299826],[-10632420.71976685,4453872.5482945535],[-10632668.597234037,4453882.5951053742],[-10632908.889643256,4453892.3293720316],[-10632916.100579001,4453892.6261110408],[-10633163.049798595,4453902.6246169228],[-10633409.636208706,4453912.6033007987],[-10633412.129705884,4453663.9809028329],[-10633414.640612509,4453413.6865697214],[-10633414.702249287,4453408.3140819268],[-10633417.18865075,4453161.7089983616],[-10633419.746589905,4452908.0510701928],[-10633422.332943439,4452651.4939761264],[-10633424.900287729,4452396.9401348783],[-10633424.932101104,4452393.2471631989],[-10633427.55717049,4452132.1290334715],[-10633430.223461717,4451866.9670178872],[-10633432.154081868,4451611.4509366667],[-10633434.028384296,4451363.4517407799],[-10633434.084103752,4451356.3326894371],[-10633436.011825487,4451101.6183962571],[-10633437.837114405,4450860.4760554107],[-10633437.936846551,4450847.2956047123],[-10633439.83906123,4450596.1477547595],[-10633441.644943953,4450357.584641098],[-10633441.732968973,4450345.4011300439],[-10633443.613580933,4450097.8091755295],[-10633445.446875606,4449856.1385061173],[-10633458.886618108,4449607.0241058907],[-10633471.164781446,4449379.4108606186],[-10633472.172404859,4449360.8285728302],[-10633485.285415744,4449117.7378942352],[-10633495.374657113,4448930.6703333147],[-10633496.59153395,4448898.5296526998],[-10633497.3828975,4448877.3367001778],[-10633506.288099028,4448640.3720491398],[-10633514.486117784,4448422.263545515],[-10633515.083393589,4448406.1880684821],[-10633523.775789926,4448174.9233262092],[-10633532.371993454,4447946.2258640509],[-10633534.707162255,4447771.4244059809],[-10633535.119696831,4447700.7534186309],[-10633536.561119923,4447454.1980477823],[-10633536.587716352,4447448.6904696682],[-10633537.994422149,4447205.7260060096],[-10633539.440630894,4446955.9369061887],[-10633285.359717699,4446944.6850124523],[-10633029.847389076,4446933.3626368903],[-10632773.550174573,4446921.9976265272],[-10632516.368461793,4446910.5872219736],[-10632520.187222652,4446657.7761116056],[-10632523.691656614,4446425.83115141],[-10632523.987769961,4446406.1072154241],[-10632527.676336637,4446161.9034073148],[-10632531.18547315,4445929.5054788813],[-10632533.352369566,4445676.556126033],[-10632535.516965106,4445423.8883683896],[-10632535.536967563,4445420.6029429967],[-10632537.663839143,4445170.976053522],[-10632539.818321306,4444917.9906423148],[-10632541.794424446,4444668.6387185371],[-10632543.763824578,4444420.0328361625],[-10632545.722517528,4444172.2288741022],[-10632547.674507737,4443925.2148625571],[-10632299.231603004,4443924.7076197453],[-10632044.484685756,4443924.1830844143],[-10632039.985009018,4443924.1751933461],[-10631789.342422428,4443923.6534084436],[-10631533.768572098,4443923.1134503307],[-10631532.197944364,4443669.9665640965],[-10631530.632829323,4443417.8818317074],[-10631529.071214126,4443165.138756495],[-10631527.509598352,4442912.3106781309],[-10631525.941777322,4442659.7762776799],[-10631524.37796353,4442407.69189048],[-10631522.806134449,4442154.6012846697],[-10631521.230397739,4441900.9953954006],[-10631519.57467404,4441647.9285559701],[-10631517.91684676,4441394.6744350921],[-10631516.261821417,4441141.2310401322],[-10631514.607395533,4440887.5988860419],[-10631512.943057539,4440633.8252489548],[-10631511.277717166,4440379.8574868143],[-10631509.615679469,4440125.7289589616],[-10631507.952339208,4439871.4304005392],[-10631760.52342394,4439871.6725389119],[-10632012.963360656,4439871.9092874257],[-10632265.277855769,4439872.1365093095],[-10632517.463305239,4439872.3569624079],[-10632769.513201717,4439872.5720256511],[-10633021.432450753,4439872.7822004603],[-10633273.227259347,4439872.9872360881],[-10633524.891020035,4439873.1863804264],[-10633778.880099615,4439872.592514094],[-10634032.79619682,4439871.9933829857],[-10634286.623093348,4439871.3879843093],[-10634540.369098557,4439870.7749391133],[-10634793.93039535,4439870.1585098384],[-10635047.410100032,4439869.5339326151],[-10635300.755853545,4439868.9030879606],[-10635553.979669429,4439868.2642208543],[-10635804.392831594,4439870.5367608536],[-10636054.777561607,4439872.8035353431],[-10636305.126551239,4439875.0654218392],[-10636555.438198689,4439877.3239246262],[-10636805.729423011,4439879.5720236795],[-10637055.982304011,4439881.8151093759],[-10637306.199044151,4439884.0501731541],[-10637556.388753729,4439886.2778417524],[-10637810.270430565,4439888.7612267258],[-10638064.12697898,4439891.2394730719],[-10638317.979222467,4439893.7100735959],[-10638571.827161031,4439896.1732790107],[-10638825.644264719,4439898.6295908149],[-10639079.448553897,4439901.08063858],[-10639333.231719187,4439903.5280519668],[-10639586.992459103,4439905.9688224103],[-10639585.392856648,4439788.8943856023],[-10639583.781235028,4439670.8830929389],[-10639582.159296155,4439551.932092608],[-10639580.523636242,4439432.0510682799],[-10639578.996546697,4439320.2058210801],[-10639577.459139926,4439207.4251501709],[-10639576.227817817,4439118.0223280098],[-10639576.097062398,4439102.6919019222],[-10639575.35568193,4439015.045872679],[-10639918.641542288,4439016.1837645862],[-10640260.958208689,4439017.3092501992],[-10640603.293996355,4439018.4232036434],[-10640944.812561559,4439019.5237474889],[-10641286.637572248,4439020.6148891244],[-10641627.979437463,4439021.6927453866],[-10641969.240811547,4439022.7583177146],[-10642310.834460277,4439023.8151144749],[-10642310.102075569,4439118.043054956],[-10642310.850926438,4439186.9017027225],[-10642312.419647321,4439331.2400758602],[-10642313.261548558,4439407.8001660705],[-10642314.206956634,4439465.7072108518],[-10642316.387604393,4439599.266362343],[-10642318.408313174,4439722.9009803552],[-10642319.52177133,4439791.0708428603],[-10642321.084259901,4439829.341319683],[-10642321.376285622,4439845.6658125529],[-10642323.569578182,4439967.4501434769],[-10642325.746747052,4440088.3054594584],[-10642579.372030292,4440090.3116675494],[-10642671.797320245,4440091.042473698],[-10642733.544486618,4440090.2923833337],[-10642832.519962369,4440090.1853943765],[-10643085.136894464,4440089.917341725],[-10643337.180779941,4440089.6416439302],[-10643589.712415745,4440089.363688115],[-10643741.962201791,4440089.1923492625],[-10643841.429036086,4440089.791130458],[-10643937.86995611,4440090.3792656176],[-10644091.365954438,4440091.2605634434],[-10644342.629769756,4440092.6971485978],[-10644362.445517793,4440090.8950491855],[-10644595.676494343,4440093.7216729801],[-10644848.079204101,4440096.7753890762],[-10644954.479365392,4440098.0577333923],[-10645102.924564343,4440098.8714795047],[-10645359.144471444,4440100.2721984163],[-10645615.846922955,4440101.6661467962],[-10645873.588747194,4440103.0599669581],[-10646132.327796597,4440104.4516532915],[-10646392.07908812,4440105.8420832502],[-10646393.37432117,4440359.6482175896],[-10646394.671558272,4440613.7700841809],[-10646394.693706717,4440617.8157513123],[-10646395.969297705,4440868.2065775506],[-10646397.267939927,4441122.956592137],[-10646397.296001684,4441128.1467190813],[-10646398.564378398,4441377.4969631908],[-10646399.859316979,4441632.3570192521],[-10646399.878562655,4441636.4902127441],[-10646401.155959206,4441887.5236185482],[-10646402.455706703,4442143.0041809678],[-10646404.848570289,4442395.518365154],[-10646407.246942168,4442648.4030767232],[-10646409.63480033,4442900.9773358991],[-10646411.873697786,4443137.5811222969],[-10646411.85266597,4443153.4381171716],[-10646411.762227654,4443405.9750197101],[-10646411.762631103,4443406.4921628777],[-10646412.12960284,4443657.9956462989],[-10646412.51309655,4443910.0814614119],[-10646412.894887455,4444162.0211583981],[-10646664.944471454,4444164.5429677889],[-10646916.926078688,4444167.0573792271],[-10647168.862735162,4444169.5677786423],[-10647420.760848083,4444172.0731627801],[-10647672.334695058,4444174.5653807018],[-10647923.986029405,4444177.0544642033],[-10648175.683816113,4444179.5399117004],[-10648427.449279109,4444182.0184625695],[-10648679.386032516,4444184.0070459992],[-10648759.172953922,4444184.6355540222],[-10648931.134077175,4444186.7256290521],[-10649182.722343488,4444189.7835670132],[-10649434.131607732,4444192.8298437111],[-10649434.02974226,4444446.031836072],[-10649433.92647752,4444699.6425870908],[-10649433.828215161,4444952.6906472314],[-10649433.73075222,4445205.4845090974],[-10649433.63108642,4445458.2185600018],[-10649433.531019187,4445710.7886923188],[-10649433.432754217,4445963.4029808473],[-10649433.334489092,4446215.9978349386],[-10649429.149467347,4446215.9469157765],[-10649427.911324315,4446469.9530438399],[-10649426.672780588,4446723.920485775],[-10649425.428229844,4446977.8487371467],[-10649424.182777857,4447231.7410567869],[-10649422.9391277,4447485.6018328546],[-10649421.696578573,4447739.4286796311],[-10649420.455230569,4447993.2185839359],[-10649419.213281665,4448246.9734250465],[-10649169.655431744,4448244.2301872894],[-10648924.746827004,4448241.5311067384],[-10648920.599548034,4448241.4810537202],[-10648672.043528229,4448238.7358098961],[-10648423.989975253,4448235.9915703377],[-10648172.179876372,4448231.8589173174],[-10647921.088288035,4448227.7295276392],[-10647669.456890583,4448223.5840823306],[-10647417.69704813,4448219.4296065187],[-10647392.700746596,4448219.0155012691],[-10647165.29648239,4448215.2036239076],[-10646912.306451486,4448210.9569439646],[-10646660.597165458,4448206.723437909],[-10646409.471137391,4448202.4935717788],[-10646410.103821836,4448456.3522109687],[-10646410.73790955,4448710.5082616322],[-10646410.750761459,4448716.9662580006],[-10646411.363489311,4448964.9566012807],[-10646411.991773752,4449219.6936125504],[-10646411.985916164,4449228.1553834146],[-10646409.649910593,4449474.9614759563],[-10646407.232862281,4449730.1717577334],[-10646407.182839759,4449736.0262218565],[-10646404.810207296,4449985.324453759],[-10646402.381344959,4450240.4169249237],[-10646148.702266451,4450239.2298634015],[-10645900.685976164,4450238.0636295313],[-10645895.966952598,4450238.0459387843],[-10645644.140864369,4450236.8537324686],[-10645397.398010544,4450235.6795934848],[-10645393.229007423,4450235.6573852766],[-10645141.279780189,4450234.4538864605],[-10644954.786394518,4450233.5602960885],[-10644892.317218971,4450232.7051792433],[-10644889.544991422,4450232.6635212013],[-10644637.936735632,4450229.2036550315],[-10644386.386845622,4450225.7402770082],[-10644389.530969433,4450375.91370779],[-10644388.541263085,4450480.3923164578],[-10644386.702423064,4450674.639685208],[-10644386.516434077,4450729.5784546463],[-10644386.500943476,4450734.1810006136],[-10644385.608214105,4450987.2317537842],[-10644384.762456728,4451226.4167698864],[-10644384.742770497,4451232.5777553478],[-10644384.720686121,4451239.5199272111],[-10644383.74645642,4451491.1415949911],[-10644382.80401442,4451734.519945601],[-10644382.767015982,4451741.9351947838],[-10644381.807393879,4451992.0436124476],[-10644380.852070266,4452241.0688291322],[-10644380.751634177,4452494.0665297965],[-10644380.65170143,4452747.5454610111],[-10644380.546362842,4453001.0755274566],[-10644380.442400493,4453250.2752515785],[-10644380.449835286,4453254.7981884694],[-10644380.342595611,4453508.5202855794],[-10644380.27592928,4453664.1978224516],[-10644380.457487021,4453758.9121197658],[-10644380.455404915,4453762.3795157149],[-10644380.953349292,4454016.3549264539],[-10644381.451394433,4454270.4474047916],[-10644381.815587131,4454524.2988214884],[-10644382.180885412,4454778.8996165106],[-10644382.539670657,4455032.5313783633],[-10644382.898954034,4455285.7550722789],[-10644383.265144495,4455538.863433592],[-10644383.630631143,4455791.4619909069],[-10644383.99791847,4456043.8354512202],[-10644384.36389791,4456295.1177460244],[-10644383.884632869,4456547.9299921002],[-10644383.870759904,4456555.2437803894],[-10644385.521664882,4456802.4660381088],[-10644387.214756258,4457056.3468896691],[-10644388.908649137,4457310.3406958375],[-10644639.771524517,4457314.1677423129],[-10644891.315067608,4457317.9985586219],[-10645143.830506928,4457321.8379166173],[-10645397.222334741,4457325.6839327253],[-10645397.160744751,4457580.2341355775],[-10645397.097354027,4457835.0129804425],[-10645397.031462085,4458090.0741034755],[-10645396.965971323,4458345.2659554454],[-10645407.293420596,4458345.4368823385],[-10645407.838906186,4458598.4502128158],[-10645408.381985968,4458850.9368859334],[-10645408.925161846,4459102.7417670116],[-10645409.465130262,4459353.8914319556],[-10645410.008000476,4459604.7936268691],[-10645410.547666172,4459855.5480555017],[-10645411.087430349,4460106.0289852861],[-10645411.628600759,4460357.317432208],[-10645659.164805757,4460361.0798415653],[-10645913.654353593,4460364.9416182907],[-10645918.769322952,4460365.0198787944],[-10646168.483584499,4460368.8040257469],[-10646423.668816857,4460372.6629191749],[-10646676.496282762,4460375.2764867982],[-10646928.952429788,4460377.8793785684],[-10647181.036356926,4460380.4731016764],[-10647432.759076592,4460383.0581585271],[-10647430.896432268,4460635.7948728586],[-10647429.033787621,4460888.4775960268],[-10647427.172544301,4461141.1180058997],[-10647425.312902356,4461393.6857014401],[-10647422.777000982,4461646.8234475013],[-10647420.228592589,4461901.1922887219],[-10647417.701803887,4462154.7468271907],[-10647415.175115114,4462408.2705213167],[-10647162.204293469,4462404.5877538836],[-10646909.341393456,4462400.8992098356],[-10646656.33342975,4462397.2018734915],[-10646417.323454082,4462393.703567314],[-10646403.577952351,4462393.7810376985],[-10646149.753468219,4462390.1751565933],[-10645895.850795811,4462386.5611114474],[-10645642.249363117,4462382.9502094816],[-10645388.791191921,4462379.3342847116],[-10645388.373500202,4462633.9749101447],[-10645387.95590638,4462888.2407685975],[-10645387.553925795,4463141.758955311],[-10645387.153943859,4463394.6623390522],[-10645387.208869971,4463646.7120380299],[-10645387.264473032,4463894.6689476324],[-10645387.256981928,4463897.654570506],[-10645387.325307071,4464146.9489574451],[-10645387.391129129,4464396.2028689031],[-10645388.590540316,4464647.3119966099],[-10645389.801680889,4464901.2093218537],[-10645389.822824491,4464904.6117714951],[-10645391.033354033,4465156.7379993349],[-10645392.266134512,4465413.3226260208],[-10645394.342454502,4465667.8895706516],[-10645396.434203144,4465924.404445379],[-10645398.510723719,4466179.0549757062],[-10645400.589047683,4466433.9479157543],[-10645147.832886118,4466429.2832323099],[-10644955.53651179,4466425.7294779513],[-10644895.760397492,4466424.9641516106],[-10644642.60339185,4466421.6843739813],[-10644391.591205025,4466418.426473177],[-10644393.575721148,4466671.9438367318],[-10644395.564143337,4466925.7554717585],[-10644395.597606102,4466930.0488746781],[-10644397.460899573,4467168.8439802192],[-10644397.554369448,4467179.9019944863],[-10644399.138742365,4467366.2157877022],[-10644399.599258728,4467434.3195820814],[-10644144.392557498,4467432.729734268],[-10643888.190934224,4467431.127188649],[-10643634.074162062,4467429.53948298],[-10643381.018586585,4467427.952536365],[-10643383.132463047,4467682.9466552688],[-10643385.262268607,4467939.8522698069],[-10643387.374244874,4468195.2000206858],[-10643389.490728725,4468450.9860962313],[-10643395.734970238,4468451.0103836516],[-10643395.590500321,4468706.0947175454],[-10643395.446425872,4468960.3354762197],[-10643395.304854661,4469214.6520047588],[-10643395.163982956,4469468.7558089262],[-10643394.920408109,4469725.0302282171],[-10643394.675934,4469981.6091955639],[-10643394.435666332,4470238.4838074381],[-10643394.194299009,4470495.6359818093],[-10643646.710158268,4470499.0304475324],[-10643898.974333631,4470502.4156102249],[-10644150.991129905,4470505.7836752599],[-10644402.749935169,4470509.1415571468],[-10644402.811965736,4470759.7544872714],[-10644402.870003192,4470995.1697956007],[-10644402.882002072,4471009.8142695846],[-10644402.933514234,4471259.3169670925],[-10644402.980934612,4471493.8670781245],[-10644402.979517084,4471508.2934705568],[-10644403.037831811,4471756.9315914307],[-10644403.093968162,4471992.5479692062],[-10644403.093038851,4472004.8581146328],[-10644403.144028515,4472250.624451437],[-10644403.140732322,4472251.9153105468],[-10644402.561015895,4472498.5581827406],[-10644656.186434347,4472505.3940497199],[-10644909.212476764,4472512.2090451457],[-10644954.604766499,4472513.4265043382],[-10645161.795398714,4472515.4546630112],[-10645413.748005349,4472517.9152563997],[-10645666.972946631,4472520.381516316],[-10645920.314319139,4472522.8441312006],[-10646173.710853796,4472525.3017175281],[-10646427.137822701,4472527.7537721703],[-10646426.269409601,4472781.4173043258],[-10646425.396197574,4473036.2072539898],[-10646424.508365352,4473290.3600076577],[-10646423.620432617,4473544.447460846],[-10646422.747513467,4473797.9609109517],[-10646421.979733892,4474020.5090405848],[-10646421.810461534,4474052.5732153468],[-10646420.605741166,4474306.4682775661],[-10646419.401521094,4474560.2724898951],[-10646166.576057324,4474555.81463484],[-10645914.799275598,4474551.3692381699],[-10645662.415709348,4474546.9049736978],[-10645409.901695648,4474542.4321572948],[-10645409.916493665,4474797.5797354421],[-10645409.932089644,4475051.9704142576],[-10645409.946683062,4475305.9965672018],[-10645409.961474735,4475559.5152804572],[-10645409.208596924,4475811.9696662026],[-10645408.458220912,4476064.1500998046],[-10645407.708245952,4476316.4758208683],[-10645406.952370035,4476570.2743372275],[-10645406.398223938,4476824.7009078143],[-10645405.845676541,4477078.3160541635],[-10645405.287325801,4477332.7584206369],[-10645404.727374397,4477587.4917583894],[-10645404.659773441,4477841.0735700577],[-10645404.591471924,4478094.7212487422],[-10645404.519866586,4478348.3454709044],[-10645404.448062088,4478602.2534816582],[-10645404.317596657,4478857.5072279563],[-10645404.188731929,4479112.4806619538],[-10645404.066373326,4479367.1431874875],[-10645403.94331276,4479621.5051001273],[-10645655.804292936,4479624.6682360023],[-10645907.35382192,4479627.8204238191],[-10646158.615225967,4479630.9536105329],[-10646409.582898811,4479634.0777366953],[-10646410.126348212,4479887.7636224842],[-10646410.669295792,4480141.124421414],[-10646411.211741487,4480394.1463936549],[-10646411.754686436,4480646.8308991455],[-10646409.06098967,4480900.7089328496],[-10646406.352881862,4481155.9406724274],[-10646403.648576381,4481410.5932682641],[-10646400.945072226,4481665.3121846616],[-10646398.246270308,4481919.1529937079],[-10646395.536960375,4482173.9766021259],[-10646392.828449156,4482428.1608287534],[-10646390.119737549,4482682.2506287741],[-10646392.399849551,4482937.7121373266],[-10646394.636393765,4483188.1604318144],[-10646394.675953545,4483192.2822513273],[-10646396.948049465,4483445.9431577222],[-10646399.175176257,4483694.6511952551],[-10646399.216437733,4483698.7145537948],[-10646401.480020942,4483951.6338913338],[-10646403.718064824,4484201.7432712074],[-10646403.742001504,4484204.3790424587],[-10646406.005983554,4484456.9677448804],[-10646408.268262822,4484709.3749351855],[-10646408.243393155,4484752.2543788198],[-10646409.369142123,4484963.9018080626],[-10646410.722605933,4485218.4966558684],[-10646412.076270046,4485473.1453822711],[-10646413.429834114,4485727.8483690098],[-10646162.892377082,4485725.187787761],[-10645912.234684465,4485722.5202818383],[-10645661.069520295,4485719.8375408622],[-10645409.541046871,4485717.1434681499],[-10645158.004966754,4485714.982719549],[-10644906.226113129,4485712.8131573526],[-10644654.210292539,4485710.635914688],[-10644401.964512872,4485708.4498584466],[-10644149.077706479,4485705.0459446087],[-10643896.055347193,4485701.6353581734],[-10643643.334627198,4485698.2175964219],[-10643390.740549486,4485694.7929108161],[-10643138.038152911,4485692.1650626305],[-10642885.516759878,4485689.5329343323],[-10642632.725562859,4485686.8880895386],[-10642379.822039146,4485684.2340538418],[-10642014.209971238,4485667.9072943926],[-10641648.478667228,4485651.5616706582],[-10641282.419392059,4485635.1862288211],[-10640916.096217878,4485618.7848720979],[-10640915.94579236,4485872.0112190684],[-10640915.795466335,4486125.1056684963],[-10640915.642036179,4486378.0621672394],[-10640915.490107067,4486630.8780612545],[-10640915.337387308,4486885.9672936015],[-10640915.183364816,4487140.7782611959],[-10640915.02743884,4487395.2964627827],[-10640914.872512799,4487649.5524772471],[-10640915.244879002,4487903.5506938566],[-10640915.617744563,4488157.2941156486],[-10640915.985303,4488410.7946881177],[-10640916.353160432,4488664.0100785494],[-10640916.067080818,4488916.9775444428],[-10640915.781202922,4489170.2754048891],[-10640915.487215655,4489423.5205521081],[-10640915.191030737,4489677.8357039252],[-10640914.002040876,4489932.0590172773],[-10640912.811350498,4490186.5771726314],[-10640911.622064743,4490441.7564817965],[-10640910.435480095,4490696.4929310074],[-10641279.1058168,4490713.1693758434],[-10641648.123742711,4490729.8471026924],[-10642017.115437217,4490746.5149007309],[-10642386.484154049,4490763.185870219],[-10642386.623334717,4491001.6761782533],[-10642386.767469563,4491251.4943797495],[-10642386.786292996,4491275.3088778546],[-10642386.919036195,4491506.7761402065],[-10642386.924379565,4491515.477675464],[-10642387.183528202,4491761.6829019003],[-10642387.20075034,4491785.6174773136],[-10642387.451346518,4492021.8562009912],[-10642387.728874614,4492281.7755392389],[-10642387.734435616,4492294.5261366665],[-10642387.992984723,4492541.0298100431],[-10642388.265807061,4492800.8637231318],[-10642338.047623353,4492800.1667782776],[-10642019.103385737,4492795.8041980406],[-10641831.315067612,4492793.2307194304],[-10641649.838353148,4492791.8143094014],[-10641363.447637338,4492789.5742321154],[-10641280.535382349,4492788.9232855178],[-10640911.217093939,4492786.0176471444],[-10640895.561385268,4492785.893303304],[-10640541.683563035,4492783.0922288727],[-10640428.387333611,4492782.1925942907],[-10640172.499024294,4492780.1625269717],[-10639962.178867377,4492778.47890832],[-10639803.657569334,4492776.855240263],[-10639450.675950207,4492773.2266795738],[-10639435.139875859,4492773.0654213624],[-10639184.056474512,4492771.9774872735],[-10638940.232037453,4492770.9148738813],[-10638933.361009406,4492770.8891750015],[-10638682.57253956,4492769.7899017828],[-10638431.305731595,4492768.6815575585],[-10638182.785412634,4492767.5916064214],[-10637935.747260608,4492766.5014026789],[-10637923.722135518,4492766.4415630968],[-10637687.880579986,4492766.0793110235],[-10637441.094214559,4492765.6928733876],[-10637419.288690265,4492765.8181131389],[-10637187.441936435,4492767.1805031151],[-10636932.584302764,4492768.6719134003],[-10636912.459268495,4492768.7853097618],[-10636677.131599851,4492770.1485838145],[-10636420.876394488,4492771.6281527188],[-10636403.139345985,4492771.7329811072],[-10636164.0902921,4492773.1023048209],[-10635906.302563265,4492774.5719221998],[-10635891.350747265,4492774.660119215],[-10635890.254452184,4493028.6236719042],[-10635889.157857586,4493282.7347299447],[-10635888.062568167,4493537.540760491],[-10635886.964678464,4493792.8374423645],[-10635885.860585617,4494048.8513648296],[-10635884.754694061,4494305.4853037605],[-10635883.654211765,4494562.7113306625],[-10635882.551530523,4494820.5984178884],[-10635883.944042664,4495076.1721452801],[-10635885.337256778,4495331.9988367343],[-10635885.356696289,4495335.3502963558],[-10635886.73697933,4495588.0645224573],[-10635888.135802032,4495844.3764034649],[-10635636.261918802,4495841.7182738967],[-10635384.43739083,4495839.0548514519],[-10635132.269877002,4495836.3817258207],[-10634879.831158027,4495833.7010393301],[-10634627.487150325,4495831.9351643417],[-10634375.092785822,4495830.16172795],[-10634122.639454858,4495828.3807301717],[-10633870.135666994,4495826.5922970129],[-10633620.255910654,4495821.5206729202],[-10633369.958484294,4495816.4355664048],[-10633119.240885088,4495811.3368514525],[-10632868.104114167,4495806.2241500141],[-10632616.557381874,4495801.0967059387],[-10632364.593179774,4495795.9560315479],[-10632112.209205214,4495790.7919189017],[-10631859.405958802,4495785.6119294716],[-10631859.4293343,4495776.9635354681],[-10631860.120556971,4495529.2502161991],[-10631860.836155077,4495272.6830519354],[-10631860.845136648,4495267.8238046905],[-10631861.552052319,4495015.9078053236]]]},"attributes":{"objectid":4159,"field_kid":"1000149387","approxacre":128847,"field_name":"COFFEYVILLE-CHERRYVALE","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":2632373.6299999999,"maxoilwell":481,"lastoilpro":1649.5,"lastoilwel":210,"lastodate":"2-2009","cumm_gas":4103566,"maxgaswell":169,"lastgaspro":15186,"lastgaswel":161,"lastgdate":"2-2009","avgdepth":769.14965529999995,"avgdepthsl":-37.708207430000002,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149387}},{"geometry":{"rings":[[[-10576407.231771395,4767227.5347547084],[-10576668.936789315,4767229.1865324136],[-10576670.170372149,4767492.5665806169],[-10576671.066369085,4767683.5454978906],[-10576669.988845926,4767753.8841864727],[-10576665.959026041,4768015.9401465449],[-10576661.929005604,4768277.9973637648],[-10576396.299960379,4768278.2932045795],[-10576132.132282903,4768278.581274813],[-10576129.373534577,4768278.564850105],[-10575866.021387842,4768278.8359639421],[-10575599.089255489,4768279.1050210772],[-10575602.533953171,4768016.731007982],[-10575605.984959271,4767753.8476307243],[-10575609.434666637,4767489.9314936958],[-10575612.877464555,4767226.4593872456],[-10575855.299290586,4767224.0342539763],[-10575878.152266892,4767224.1799847484],[-10576142.539545091,4767225.8577582203],[-10576407.231771395,4767227.5347547084]]]},"attributes":{"objectid":4203,"field_kid":"1000149628","approxacre":163,"field_name":"SLAMMER","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":644,"maxoilwell":1,"lastoilpro":93,"lastoilwel":1,"lastodate":"3-1994","cumm_gas":239332,"maxgaswell":2,"lastgaspro":20,"lastgaswel":1,"lastgdate":"9-1991","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149628}},{"geometry":{"rings":[[[-10595154.997035282,4742250.2879409669],[-10595413.132799286,4742251.6524431231],[-10595414.856533609,4742511.304501907],[-10595416.579967853,4742770.9361254079],[-10595418.303201498,4743030.6429687161],[-10595420.026635639,4743290.3293786701],[-10595161.147299677,4743288.9493696196],[-10594901.317582175,4743287.558268656],[-10594642.907981085,4743286.1628928715],[-10594385.116984153,4743284.7644125279],[-10594387.143339217,4743544.1793922819],[-10594389.171595221,4743803.7983004767],[-10594391.20615714,4744063.625413334],[-10594393.241418792,4744323.6316978233],[-10594135.137640119,4744322.2413278902],[-10593876.744131776,4744320.8450222667],[-10593618.114655074,4744319.4236724414],[-10593359.198652366,4744317.9938047519],[-10593357.706330445,4744058.5842629811],[-10593356.220612012,4743799.7804117557],[-10593354.726187849,4743540.3831450483],[-10593353.230163392,4743280.7808243129],[-10593351.732438622,4743020.9596525347],[-10593350.233314481,4742760.8312213896],[-10593348.742199434,4742500.7234288631],[-10593347.249283243,4742240.5018999567],[-10593605.218757113,4742241.9265541201],[-10593863.274128851,4742243.344237241],[-10594121.404886603,4742244.7413958907],[-10594379.624245293,4742246.1314543579],[-10594638.239554638,4742247.5274466127],[-10594896.701789895,4742248.9159539919],[-10595154.997035282,4742250.2879409669]]]},"attributes":{"objectid":4206,"field_kid":"1000149630","approxacre":473,"field_name":"STATE LAKE","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":244,"maxoilwell":2,"lastoilpro":76,"lastoilwel":2,"lastodate":"8-1995","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149630}},{"geometry":{"rings":[[[-10583117.834045706,4499031.0424664086],[-10583117.038333878,4498896.1932861935],[-10582863.511550531,4498893.8871300975],[-10582608.964897746,4498891.5652001482],[-10582354.982492067,4498889.2533648526],[-10582101.048842223,4498886.936614465],[-10581847.220112463,4498884.6091510877],[-10581593.449449174,4498882.2750079269],[-10581339.750267828,4498879.9384712866],[-10581086.127874421,4498877.5953812357],[-10581087.395052431,4498621.4722762331],[-10581088.660129575,4498365.426264585],[-10581089.925907549,4498109.3891463941],[-10581091.191185419,4497853.3803324299],[-10581092.475993728,4497593.2297171578],[-10581093.721239164,4497341.3218176961],[-10581093.752155004,4497335.9244111944],[-10581095.000646582,4497081.4256367264],[-10581096.235584872,4496829.7431466551],[-10581097.691552758,4496576.9957854962],[-10581099.1601908,4496322.2538984884],[-10581099.173722785,4496318.4847007515],[-10581100.611866333,4496065.5766111379],[-10581102.082520248,4495806.9499511104],[-10581103.545824943,4495551.002448583],[-10581105.008126389,4495294.9678051425],[-10581106.45851161,4495038.8254864104],[-10581107.909394804,4494782.5734841479],[-10581360.744403541,4494783.2652654285],[-10581607.715090258,4494783.9348987751],[-10581613.404511841,4494783.9576739632],[-10581865.892422365,4494784.6310518831],[-10582110.522826241,4494785.2783428915],[-10582109.748056492,4494529.4528573621],[-10582108.971979389,4494273.3692427939],[-10582108.212816896,4494017.0761554083],[-10582107.453048503,4493760.553954158],[-10582106.690271575,4493503.808451551],[-10582105.927189492,4493246.8518852759],[-10582105.160499422,4492989.7277374435],[-10582104.392300362,4492732.2819374716],[-10582359.735887742,4492734.1584117925],[-10582371.521897435,4492734.2445279425],[-10582615.823127789,4492736.0498911394],[-10582872.639503248,4492737.928531995],[-10582878.844215374,4492737.9732330153],[-10583130.19151232,4492739.3792051245],[-10583382.6128415,4492740.8422673913],[-10583388.169810988,4492740.8748630192],[-10583635.210572666,4492742.2956316797],[-10583686.909230225,4492742.5846104072],[-10583702.532248646,4492743.1722203847],[-10583887.984400289,4492743.5071026543],[-10583897.268641207,4492743.52388475],[-10584140.904979214,4492743.9598781122],[-10584393.896940093,4492744.4187021693],[-10584404.568771375,4492744.4384046635],[-10584647.100142745,4492744.8624111693],[-10584900.421981633,4492745.3174610268],[-10584917.004787628,4492745.347339143],[-10584919.668000111,4492488.3853175789],[-10584922.295149053,4492234.9148612106],[-10584922.357129311,4492230.8513261555],[-10584925.021847188,4491974.0715814158],[-10584927.622529227,4491723.4580583964],[-10584927.667550184,4491717.6099011563],[-10584929.75336514,4491517.2727763485],[-10584929.044819742,4491462.0630985117],[-10584925.838659318,4491212.0163356559],[-10584925.770473005,4491207.1745778732],[-10584922.51326322,4490953.0637835022],[-10584919.265883498,4490699.7976711905],[-10584920.029606,4490446.7830986511],[-10584920.77335806,4490200.5983475568],[-10584920.806448014,4490193.9756453801],[-10584921.582890822,4489941.2312046038],[-10584922.333107891,4489697.6376498155],[-10584922.370749027,4489688.5971294623],[-10584923.148302691,4489436.2952060858],[-10584923.905687759,4489190.9154867725],[-10584923.942378761,4489184.1557629211],[-10584924.715935402,4488932.2054872494],[-10584925.488795467,4488680.4514183039],[-10584922.86685406,4488428.1947935605],[-10584920.233175227,4488174.8685023375],[-10584920.148002991,4488167.0536087072],[-10584917.584755402,4487920.4674586803],[-10584914.928602524,4487664.9872072469],[-10584914.814839458,4487654.5740680788],[-10584912.255806912,4487408.451626041],[-10584909.575979251,4487150.8460596465],[-10584909.51722195,4487146.8199973982],[-10584906.873001114,4486892.1726010032],[-10584904.175004682,4486632.4288109886],[-10584907.166600736,4486375.9688771367],[-10584910.159994278,4486119.3136184067],[-10584910.230601983,4486111.564719962],[-10584913.114939088,4485862.458389814],[-10584916.092304992,4485605.4068580708],[-10584916.19105255,4485597.9987779753],[-10584919.089396108,4485348.4815909183],[-10584922.07596595,4485091.1530598011],[-10584922.165735079,4485085.170609762],[-10584925.083153332,4484833.5617912421],[-10584928.078611664,4484575.2814149633],[-10585052.072840793,4484578.2121411469],[-10585180.867245151,4484580.047830157],[-10585433.526804645,4484583.6425875612],[-10585686.044301296,4484587.2304199263],[-10585938.385896286,4484590.809186561],[-10586190.548185879,4484594.3858113568],[-10586437.130480461,4484597.8766151005],[-10586442.616366079,4484597.8891677838],[-10586581.850502487,4484598.4196758457],[-10586694.325599482,4484599.80466701],[-10586946.246101493,4484602.9015234271],[-10586945.500687584,4484341.8071305975],[-10586944.753867,4484080.4928786894],[-10586944.737678511,4484072.9213404348],[-10586944.437259756,4483967.1236761753],[-10586944.910863724,4483818.3740824554],[-10586945.095469747,4483760.210396355],[-10586945.005073972,4483555.6139235413],[-10587193.292293096,4483558.3198147099],[-10587441.859232634,4483561.0205501523],[-10587691.353534691,4483563.7209237926],[-10587941.556148332,4483566.4226943413],[-10588192.016457232,4483569.1225816319],[-10588443.067543056,4483571.823486276],[-10588694.689583007,4483574.5216316255],[-10588946.907505719,4483577.2199132675],[-10588946.827148464,4483587.6402162034],[-10589211.291612545,4483581.9345813654],[-10589474.367886605,4483576.2523402367],[-10589736.086405344,4483570.586570017],[-10589996.418736354,4483564.9444452301],[-10590255.320629036,4483559.3303708462],[-10590512.939452061,4483553.7364189364],[-10590769.139249813,4483548.1695105061],[-10591024.245494973,4483542.6199582685],[-10591027.883729409,4483797.4823575336],[-10591031.273185471,4484034.9612560188],[-10591031.470852407,4484050.0102510378],[-10591034.141341649,4484236.9650373133],[-10591035.082448956,4484300.1319684498],[-10591037.911288531,4484490.1345646577],[-10591039.379976196,4484547.8163801851],[-10591030.532985859,4484801.8053160571],[-10591021.597449994,4485058.2815344045],[-10591020.989156986,4485076.1379465787],[-10591012.58778487,4485317.2337607406],[-10591003.475658642,4485578.6902537197],[-10591002.687278798,4485601.8322874215],[-10590994.340933045,4485841.3354941364],[-10590985.121353175,4486105.8954307428],[-10590984.525265593,4486123.3779112417],[-10590975.852559796,4486372.3675646186],[-10590966.504218588,4486640.7713056803],[-10590967.059187371,4486894.267485505],[-10590967.615666375,4487148.1441388698],[-10590968.185268482,4487402.3835383896],[-10590968.755980492,4487657.0100141456],[-10590969.301872374,4487912.0097416705],[-10590969.848971821,4488167.288550877],[-10590970.415495209,4488422.6473578131],[-10590970.983736647,4488678.7230415698],[-10590716.233108643,4488678.4012623914],[-10590460.807406949,4488678.0736790029],[-10590236.498862954,4488677.7597015435],[-10590206.338906553,4488677.9423241839],[-10589989.107609285,4488679.2611353025],[-10589952.306438072,4488679.2406358337],[-10589698.992260592,4488679.1172340168],[-10589445.905543609,4488678.9871611418],[-10589293.649770578,4488678.9002950992],[-10589193.182240153,4488678.7272511115],[-10589060.025249287,4488678.4951115632],[-10588950.459517093,4488679.3847180912],[-10588940.509263495,4488677.0969999274],[-10588941.326240549,4488687.7917557666],[-10588945.371938091,4488930.2890866939],[-10588949.639490588,4489186.1406728495],[-10588951.702124909,4489309.165196442],[-10588951.752685301,4489411.4001533212],[-10588952.255114898,4489440.4326728079],[-10588956.657184878,4489694.6608255124],[-10588961.038420415,4489948.4216656052],[-10588963.709064897,4490103.1277318895],[-10588966.872519603,4490202.1269376287],[-10588967.669472974,4490226.1093626544],[-10588971.840513619,4490455.2717509801],[-10588976.4652359,4490709.3793481365],[-10588728.065094618,4490706.0269333404],[-10588477.688187288,4490702.6406032061],[-10588462.924363632,4490702.4466305338],[-10588372.012150936,4490701.2196489545],[-10588255.557510575,4490701.9430425931],[-10588225.263488654,4490701.7173253959],[-10587970.917366326,4490699.8258630317],[-10587952.951875061,4490699.6978428233],[-10587715.097655136,4490697.9261893257],[-10587457.545057524,4490696.0005392348],[-10587441.909836788,4490695.8745725509],[-10587198.219827903,4490694.0472746128],[-10586937.145393535,4490692.0844085813],[-10586939.484627446,4490948.5822343715],[-10586941.831087468,4491205.8787940918],[-10586944.171148386,4491463.5462181875],[-10586944.672261257,4491518.7696315423],[-10586942.256446466,4491721.8102126559],[-10586939.180415398,4491980.1630525729],[-10586936.083496992,4492240.1572352946],[-10586933.000463145,4492498.7628230993],[-10586929.922326079,4492756.9840886761],[-10587174.33368383,4492754.3582123369],[-10587170.467988266,4493009.9744601231],[-10587166.571802704,4493267.604515831],[-10587162.663795447,4493524.8816725882],[-10587158.748990037,4493782.598823728],[-10587154.846375547,4494039.2986483378],[-10587150.948262321,4494295.8348906506],[-10587147.055151666,4494552.2404272724],[-10587143.165241279,4494808.5042856038],[-10587143.013260666,4495066.8029313358],[-10587142.861187946,4495325.464437562],[-10587142.846958397,4495329.3327076193],[-10587142.698611557,4495584.5055919364],[-10587142.547255801,4495843.899957804],[-10587142.528249262,4495849.0386243751],[-10587142.373166755,4496102.9787301738],[-10587142.215815119,4496362.876292659],[-10587142.209614793,4496367.6377500221],[-10587142.051973857,4496623.5748089338],[-10587141.889853261,4496885.1135365535],[-10586892.681105154,4496881.1860442264],[-10586644.505241347,4496877.269283426],[-10586395.130602742,4496873.3186004646],[-10586145.227157714,4496869.3520296486],[-10586133.101654509,4496869.1671868758],[-10585894.788436666,4496867.0599815687],[-10585643.933540111,4496864.8347268766],[-10585392.477353897,4496862.5882885875],[-10585140.465530612,4496860.3325149463],[-10585139.189229412,4497118.2752710748],[-10585137.916513845,4497375.3982777428],[-10585136.656695051,4497631.7226507645],[-10585135.39956104,4497887.2356005758],[-10585134.134415833,4498142.6656513298],[-10585132.875654053,4498397.0337236961],[-10585131.635104213,4498651.0089859366],[-10585130.397443995,4498904.3786172895],[-10585130.363651399,4499157.1979360478],[-10585130.32849675,4499411.7928325944],[-10585130.327164285,4499665.6508454643],[-10585130.325733436,4499919.5924093211],[-10585130.300076464,4500173.6141258813],[-10585130.273820817,4500427.7320135953],[-10585130.26148312,4500681.9451972321],[-10585130.246345129,4500936.295165848],[-10584879.026478915,4500933.7774047153],[-10584628.650179958,4500931.2638188209],[-10584377.735063169,4500928.743163907],[-10584126.738252643,4500926.216330043],[-10583875.685978353,4500923.6791568445],[-10583624.55000798,4500921.1334090447],[-10583373.294200039,4500918.5768165207],[-10583121.928465918,4500916.0113968188],[-10583121.385798223,4500662.1734288549],[-10583120.851932861,4500412.4883654239],[-10583120.825618802,4500408.7166891852],[-10583120.272655969,4500155.6393853975],[-10583119.731227115,4499907.9965403993],[-10583119.709890481,4499902.9532144964],[-10583119.172871539,4499651.0386298541],[-10583118.643838463,4499402.5780424336],[-10583118.641562093,4499399.2620857516],[-10583118.089232024,4499147.6470197309],[-10583117.834045706,4499031.0424664086]]]},"attributes":{"objectid":4230,"field_kid":"1000147521","approxacre":11790,"field_name":"MCCUNE WEST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":555138.88,"maxoilwell":76,"lastoilpro":320.87,"lastoilwel":63,"lastodate":"2-2009","cumm_gas":68981,"maxgaswell":15,"lastgaspro":785,"lastgaswel":9,"lastgdate":"2-2009","avgdepth":526.81818181999995,"avgdepthsl":-324.81818182000001,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000147521}},{"geometry":{"rings":[[[-10581133.518089516,4517955.4209363051],[-10581140.856898643,4517700.5373636372],[-10581148.274876615,4517443.7513193032],[-10581155.714571029,4517186.2472216617],[-10581411.007251127,4517186.6239831643],[-10581665.71285766,4517186.9935393687],[-10581668.603674088,4517186.9971102895],[-10581919.893561959,4517187.3580378257],[-10582173.533946348,4517187.7170995073],[-10582180.067842277,4517187.7289228979],[-10582428.806854159,4517192.4778891513],[-10582684.487931663,4517197.3534756284],[-10582940.599903606,4517202.2273003263],[-10583197.101622796,4517207.1010044133],[-10583202.108237531,4516952.9394152509],[-10583207.095241848,4516699.8434618609],[-10583207.180398343,4516696.2685705218],[-10583212.106079035,4516447.2442045882],[-10583216.952614931,4516202.2272818936],[-10583216.915392708,4516195.3274748502],[-10583216.893722696,4516191.4100562707],[-10583215.732334655,4515943.6395961791],[-10583214.54795932,4515690.5867898315],[-10583214.526336908,4515682.1178535894],[-10583213.394203451,4515436.1783721792],[-10583212.217403783,4515180.2674765689],[-10583207.974795923,4514925.1059352169],[-10583203.738099579,4514670.3523472706],[-10583203.675596233,4514667.6064876383],[-10583199.452442894,4514415.2325224271],[-10583195.211857766,4514161.8323259894],[-10583195.164775221,4514150.6807634234],[-10583194.228372997,4513905.3314669589],[-10583193.245479323,4513648.003961348],[-10583193.227059459,4513639.4382104222],[-10583192.268783269,4513389.8568130936],[-10583191.276159363,4513130.8830133155],[-10583186.706333412,4512871.9988793479],[-10583182.160650127,4512614.4101794101],[-10583177.622072609,4512356.6108352458],[-10583173.473497206,4512120.9104881948],[-10583173.67868109,4512099.0978038525],[-10583176.121020924,4511842.2135802861],[-10583178.559857363,4511585.3947270345],[-10583180.981984276,4511329.4238791],[-10583183.399112104,4511074.0413627727],[-10583436.853232054,4511076.8238568939],[-10583685.522363452,4511079.5467071868],[-10583688.922863973,4511079.5867674528],[-10583939.58177777,4511082.3297154047],[-10584188.831775481,4511085.0500504002],[-10584187.15499186,4510829.4099207688],[-10584185.483621603,4510574.3898801627],[-10584183.80434973,4510320.0151229147],[-10584182.127888426,4510066.2770207198],[-10584181.115896378,4509813.1645589294],[-10584180.106615836,4509560.7805270106],[-10584179.104151482,4509309.1234842064],[-10584178.105399715,4509058.1890877141],[-10584190.369664557,4509058.2026639655],[-10584431.736167325,4509058.4635253632],[-10584686.827910358,4509058.7342013186],[-10584701.585334439,4509058.7534966711],[-10584943.422877299,4509059.0047756219],[-10585201.524271678,4509059.2636393709],[-10585198.441609398,4509039.7455236511],[-10585186.908099964,4508802.4931365987],[-10585174.715020014,4508551.6634581601],[-10585174.349828932,4508543.9427686129],[-10585162.062590944,4508290.8636552179],[-10585150.2691452,4508047.9055837309],[-10585150.119314995,4508040.8076730389],[-10585144.901462015,4507786.7404366573],[-10585139.679900892,4507532.4997002697],[-10585134.455249382,4507278.8493894646],[-10585129.235610889,4507025.5256622825],[-10585385.117741583,4507025.8519359194],[-10585627.369041098,4507026.1540161604],[-10585638.445142422,4507026.1635332713],[-10585889.24234147,4507026.4584361771],[-10586127.164876571,4507026.7348352261],[-10586137.527860023,4507026.7384111723],[-10586391.33180682,4507027.0269291932],[-10586631.588518344,4507027.2935260301],[-10586641.634338297,4507027.3058017809],[-10586888.603246892,4507027.5771764144],[-10587131.779205844,4507027.8382700542],[-10587380.811364772,4507027.4120173296],[-10587627.269071482,4507026.9835777702],[-10587632.451714069,4507026.9646125557],[-10587886.074837051,4507026.5183756892],[-10588131.740435164,4507026.0783165442],[-10588132.496341482,4506773.9139908589],[-10588133.252240265,4506521.4211734459],[-10588134.002949731,4506269.6760752816],[-10588134.751565294,4506018.3163476996],[-10588135.506478861,4505766.552931265],[-10588136.25999405,4505514.9398666937],[-10588137.025426021,4505263.4724761369],[-10588137.788958784,4505012.144063645],[-10588148.745221125,4505012.1272147279],[-10588150.707404751,4504759.763122444],[-10588152.668190496,4504507.5727298968],[-10588154.618768422,4504255.5634657471],[-10588156.567247864,4504003.7370826872],[-10588158.509422533,4503752.0277327728],[-10588160.449596139,4503500.381303383],[-10588162.403188886,4503248.9099053787],[-10588164.35328038,4502997.5696392143],[-10588159.252432566,4502997.5918773711],[-10588158.856957743,4502742.8251933744],[-10588158.459971478,4502487.6320325388],[-10588158.056166971,4502231.9806481926],[-10588157.650950411,4501975.8705694275],[-10588157.27226261,4501719.6927261967],[-10588156.894181769,4501463.7992990147],[-10588156.504461257,4501206.7401133962],[-10588156.114324706,4500948.9936262276],[-10588408.5252009,4500949.0207029451],[-10588661.001351764,4500949.040341639],[-10588913.499027029,4500949.047624236],[-10589166.046559276,4500949.0470902966],[-10589166.611461144,4500693.7481713593],[-10589167.172806015,4500440.5482682558],[-10589167.771362865,4500185.99158304],[-10589168.369314108,4499931.2232176755],[-10589168.961962461,4499676.6036241939],[-10589169.55531594,4499422.1824625088],[-10589170.15657538,4499167.630310812],[-10589170.756051153,4498913.9014659328],[-10589291.123502018,4498912.4252342274],[-10589424.663012765,4498913.6139114657],[-10589678.636507928,4498915.8683938691],[-10589932.751465285,4498918.1221227096],[-10590187.062447267,4498920.369552142],[-10590188.635699291,4498665.3742636004],[-10590190.201672729,4498411.705730265],[-10590191.746730389,4498158.4085021885],[-10590193.288499698,4497905.8023406658],[-10590194.826591523,4497654.3886092082],[-10590196.333761994,4497408.0404173285],[-10590196.369627031,4497404.6679935968],[-10590197.885447644,4497155.6772956448],[-10590199.378123553,4496910.3208759837],[-10590199.491214639,4496660.3859066218],[-10590199.60640762,4496406.0016674148],[-10590199.605227921,4496402.5288657099],[-10590199.715857377,4496149.9995872518],[-10590199.82775227,4495891.4478260335],[-10590453.611688139,4495893.3296287404],[-10590703.07036549,4495895.1743095573],[-10590706.349124439,4495895.2078859517],[-10590958.67679083,4495897.0742903985],[-10591208.800530592,4495898.919990954],[-10591207.816511277,4495886.0293314559],[-10591209.081539806,4495632.9402264087],[-10591210.304908892,4495388.1879846165],[-10591210.353575001,4495379.7981185978],[-10591211.636018615,4495126.5078695109],[-10591212.867035799,4494883.5095663033],[-10591212.10503439,4494873.4240776226],[-10591223.592981435,4494872.5302013541],[-10591469.423940755,4494872.2132640118],[-10591721.123726489,4494871.8826871701],[-10591725.983896863,4494871.8712994065],[-10591981.511269536,4494871.5338544082],[-10592231.535134213,4494871.197075543],[-10592236.118387422,4494871.1958903307],[-10592490.425260795,4494870.8419176731],[-10592740.287840186,4494870.4873683285],[-10592743.923006438,4494870.4738183226],[-10592995.216826199,4494870.1156380009],[-10593248.367674248,4494869.7490451634],[-10593247.43566508,4495123.4784484506],[-10593246.704051308,4495322.8333931109],[-10593247.826499555,4495378.422277444],[-10593253.072669275,4495632.0496449657],[-10593258.30290347,4495884.9175343607],[-10593261.834210727,4496054.9717218289],[-10593262.344768401,4496137.4731465867],[-10593263.909081507,4496389.5048313215],[-10593265.46026805,4496641.0335129453],[-10593267.00944409,4496892.2054851111],[-10593518.924143797,4496885.0625243494],[-10593765.051913587,4496878.0787850013],[-10593771.38106438,4496877.8978988845],[-10594023.729960872,4496870.7284871321],[-10594266.218160463,4496863.8340581516],[-10594276.185879879,4496863.558955987],[-10594527.711933261,4496856.4071857547],[-10594770.585874315,4496849.4953793744],[-10594778.694964025,4496849.2552854726],[-10595029.425305208,4496842.1130907815],[-10595279.105843449,4496834.9959651092],[-10595281.428057345,4496898.7284719637],[-10595281.939460523,4497092.6025227671],[-10595282.608208733,4497346.3805094268],[-10595282.62829867,4497349.3175628968],[-10595283.297293274,4497605.1251731245],[-10595283.952864278,4497856.1886050962],[-10595283.979183532,4497860.0990264826],[-10595284.618893826,4498104.9110791823],[-10595285.272239562,4498354.987605988],[-10595285.309897495,4498364.4155207537],[-10595285.958343726,4498610.3760033222],[-10595286.644467933,4498871.0388401728],[-10595285.747570718,4499135.803580191],[-10595284.908543618,4499383.1805840163],[-10595284.874968661,4499394.7504263027],[-10595284.01795038,4499647.8172992459],[-10595283.179922642,4499895.1294690939],[-10595282.322430521,4500144.9919447023],[-10595281.451813685,4500398.827464655],[-10595281.41655769,4500406.9251824524],[-10595280.579186,4500656.6857420197],[-10595279.699741548,4500918.548917071],[-10595280.836595118,4501175.4324730206],[-10595281.961870268,4501429.4604087621],[-10595283.074265731,4501680.6427306132],[-10595284.175581761,4501928.8995403461],[-10595284.202362036,4501939.8589760894],[-10595284.266212855,4501952.0500257341],[-10595283.560704386,4502180.4200172806],[-10595282.771920016,4502436.0048042322],[-10595282.73969858,4502449.8603746258],[-10595281.968606682,4502695.4476374136],[-10595281.139764467,4502959.3065893026],[-10595529.718497025,4502960.5528440597],[-10595779.111963682,4502961.7970945304],[-10596029.303745959,4502963.0543475868],[-10596280.286334915,4502964.3095959648],[-10596278.695100451,4503222.4912344106],[-10596277.107852323,4503479.8810369158],[-10596275.531798264,4503736.4562438531],[-10596273.958729053,4503992.2248672545],[-10596272.396253897,4504247.2084158519],[-10596270.83696451,4504501.4155352665],[-10596269.267645342,4504754.8288888196],[-10596267.703313775,4505007.4554828638],[-10596501.388816819,4505005.4170554513],[-10596752.711839791,4505003.2189779524],[-10596766.202305572,4505003.0998750543],[-10597008.215655677,4505000.9845163291],[-10597267.864823706,4504998.70748943],[-10597266.090029618,4505241.1769001363],[-10597264.297971379,4505486.0887059905],[-10597264.220824258,4505496.6499734214],[-10597262.504563581,4505733.2828759616],[-10597260.694790488,4505982.8247892214],[-10597260.609094404,4505996.0493920073],[-10597260.431643946,4506020.2514608279],[-10597264.643463949,4506234.2765898565],[-10597269.630976718,4506487.8348842803],[-10597269.827619733,4506497.354889757],[-10597274.658482254,4506743.4475805759],[-10597279.716369923,4507001.1314819958],[-10597285.085448731,4507255.9405602673],[-10597290.434681857,4507509.7472694274],[-10597295.765470279,4507762.5242844271],[-10597296.737237817,4507808.6195694227],[-10597301.883738864,4508014.3004372707],[-10597553.667129174,4508012.3781776382],[-10597805.33748972,4508010.4515005071],[-10598058.024615962,4508008.5141158355],[-10598311.363789622,4508006.5646297671],[-10598317.350142177,4508255.0252362955],[-10598323.312443573,4508502.4559460916],[-10598329.248791739,4508748.8616072815],[-10598335.161389522,4508994.256406351],[-10598082.961060351,4508998.3668533284],[-10597831.514294848,4509002.4585129768],[-10597580.104871992,4509006.5463893265],[-10597330.003949046,4509010.6082949638],[-10597329.3973056,4509039.3924814807],[-10597326.374366483,4509082.4581578663],[-10597332.516066734,4509185.0543620829],[-10597335.234597374,4509267.7399522895],[-10597338.674023738,4509372.3809000356],[-10597341.709518896,4509512.2839716608],[-10597341.973270671,4509524.4704424525],[-10597347.477109913,4509779.7312571239],[-10597352.64116781,4510019.3422439927],[-10597352.946696496,4510033.8950896421],[-10597358.459542282,4510288.8366654981],[-10597363.729170917,4510532.4909254862],[-10597363.96917576,4510543.0681249136],[-10597369.457275614,4510796.5660681715],[-10597374.93185145,4511049.3642658815],[-10597131.44059249,4511049.5362161314],[-10596886.836957684,4511049.7039845213],[-10596640.150734385,4511049.874750047],[-10596391.697484409,4511050.0406926489],[-10596384.415833194,4511050.0516873561],[-10596344.921337217,4511050.0856631398],[-10596142.334779594,4511049.2402490266],[-10595891.288440738,4511048.1855971627],[-10595884.126125963,4511048.1616341602],[-10595638.476777283,4511047.1331898151],[-10595401.610602453,4511046.1355483718],[-10595383.936841233,4511046.8663987983],[-10595382.4062887,4511302.252814386],[-10595380.874936882,4511557.783662132],[-10595380.843340473,4511561.0620674314],[-10595383.533791257,4511813.3454200123],[-10595385.473424084,4511995.1038505193],[-10595384.856510712,4512068.7077816408],[-10595382.752101779,4512316.0414649835],[-10595380.595606672,4512569.4409753978],[-10595380.495713716,4512579.4522202378],[-10595378.394532846,4512828.8122078795],[-10595376.158492103,4513094.2199850027],[-10595120.392721944,4513085.5814158022],[-10594868.997767078,4513077.0841675904],[-10594865.282203777,4513076.9582610913],[-10594610.750449695,4513068.3367604427],[-10594600.039159374,4513067.9734378215],[-10594362.074415963,4513060.0109835882],[-10594356.816282688,4513059.8319115294],[-10594349.027745979,4513059.5665868707],[-10594102.33385963,4513073.8877639975],[-10593853.934918337,4513088.3023521109],[-10593848.581381597,4513088.6177306222],[-10593595.581465697,4513103.2908017058],[-10593343.332710424,4513117.9154345496],[-10593089.164302837,4513120.0657264255],[-10592839.36490594,4513122.1706376821],[-10592835.921056081,4513122.1924269469],[-10592583.630702274,4513124.3220453756],[-10592336.543716144,4513126.4025080195],[-10592332.269313749,4513126.4346365901],[-10592081.662390389,4513128.5338588143],[-10591835.029724989,4513130.5922390698],[-10591832.140611397,4513130.6131526446],[-10591654.410570925,4513132.0850255778],[-10591583.387178726,4513129.7701623933],[-10591335.029713642,4513121.6737013571],[-10591334.808508679,4513376.9811365819],[-10591334.586703252,4513632.3144909889],[-10591334.594578732,4513637.8791140998],[-10591334.388525318,4513887.6871485822],[-10591334.179935623,4514143.0816900171],[-10591334.160775805,4514148.2875424251],[-10591333.967941962,4514398.4779173676],[-10591333.771066034,4514653.9133277861],[-10591333.755695155,4514657.8287650058],[-10591333.559072908,4514909.367091842],[-10591333.359194174,4515164.8696394432],[-10591331.623239584,4515419.2243813938],[-10591329.886487523,4515673.8772271024],[-10591328.150239812,4515928.856103437],[-10591326.412994057,4516184.1045916602],[-10591324.669340853,4516439.3548864862],[-10591322.923086787,4516694.7928665932],[-10591321.187046297,4516950.3969522603],[-10591319.448105019,4517206.2236037767],[-10591310.3376226,4517463.3766097194],[-10591301.187908171,4517721.6452559689],[-10591301.018973608,4517726.6091502225],[-10591292.00386744,4517981.0360661987],[-10591282.772886069,4518241.5608692961],[-10591282.559515931,4518247.8168796143],[-10591535.816963799,4518247.2533729598],[-10591788.697879579,4518246.6827896265],[-10592041.202763801,4518246.1004567221],[-10592293.29337265,4518245.5121833635],[-10592283.270706989,4518506.9507521829],[-10592273.228924669,4518768.8577403566],[-10592263.2187743,4519030.4317834619],[-10592253.210124696,4519291.9543954348],[-10592249.229191665,4519545.2217719788],[-10592245.256662104,4519797.989270648],[-10592241.290439473,4520050.7459529191],[-10592237.326817652,4520303.3351817755],[-10592233.472016664,4520555.603085299],[-10592229.614314865,4520808.0959977554],[-10592225.744401673,4521060.8212625077],[-10592221.869285336,4521313.7973410385],[-10592222.412257707,4521568.3923753388],[-10592222.955832133,4521823.1066812929],[-10592223.489196619,4522077.9740006784],[-10592224.023463713,4522332.977920155],[-10592224.488753155,4522588.1121318219],[-10592224.954445165,4522843.4269333966],[-10592225.429148976,4523098.8691435149],[-10592225.905956889,4523354.4581040991],[-10592226.964529563,4523609.8144997349],[-10592228.02189946,4523865.0586054251],[-10592229.088078057,4524120.188770391],[-10592230.153654573,4524375.2071345812],[-10592231.22884077,4524630.1162174437],[-10592232.302623861,4524884.9052691218],[-10592233.385416033,4525139.5922266869],[-10592234.468607316,4525394.1708900444],[-10591986.673337528,4525394.8530567735],[-10591743.342290811,4525395.5183234876],[-10591739.219759868,4525395.5357319126],[-10591492.100265302,4525396.1937655499],[-10591245.32086092,4525396.8435872737],[-10590990.965030791,4525394.9093594383],[-10590734.675881729,4525392.9547689678],[-10590479.846808486,4525391.0115640536],[-10590225.338903822,4525389.0640645288],[-10589970.20968592,4525387.0954543371],[-10589714.41720674,4525385.1143270712],[-10589460.357115921,4525383.1467359643],[-10589294.657838898,4525381.860650436],[-10589207.199154425,4525380.6689509964],[-10588952.119992709,4525378.5754760168],[-10588696.324008243,4525376.4691044269],[-10588439.465204036,4525374.3569108453],[-10588181.646698348,4525372.2313132286],[-10587924.766614754,4525373.9412640696],[-10587667.974532016,4525375.6426224131],[-10587410.54832145,4525377.3411961515],[-10587152.755890496,4525379.0348388953],[-10586898.461527057,4525376.7177994531],[-10586643.478873637,4525374.3887482947],[-10586389.880909525,4525372.0709557952],[-10586136.977042034,4525369.7531686183],[-10585885.181746818,4525367.4337470578],[-10585634.595539285,4525365.1179999094],[-10585382.764503103,4525362.7925115768],[-10585130.510281194,4525360.4569093296],[-10584878.566240644,4525360.3041653214],[-10584630.949366061,4525360.1490538735],[-10584626.829237593,4525360.1423234371],[-10584375.290061509,4525359.9745431384],[-10584131.707316473,4525359.8064459246],[-10584123.900757238,4525359.7905871877],[-10583871.61503881,4525360.8695521764],[-10583627.939300943,4525361.9061208069],[-10583619.774831509,4525361.9375258777],[-10583368.644238427,4525362.9943839693],[-10583117.511743067,4525364.0453025037],[-10582862.579769721,4525363.5695045786],[-10582608.063373279,4525363.0897919778],[-10582354.368119204,4525362.6092010271],[-10582101.348240161,4525362.1234336151],[-10581846.850264713,4525361.6275440222],[-10581593.881344004,4525361.1266110232],[-10581339.725761279,4525360.6096181935],[-10581085.304073095,4525360.0856721867],[-10581083.619914532,4525103.6054873038],[-10581081.934752155,4524846.8937585019],[-10581081.908166012,4524842.0170651032],[-10581080.246184047,4524590.0249358993],[-10581078.552507933,4524332.9709770409],[-10581078.507980775,4524326.3037487334],[-10581078.446575694,4524314.5040541589],[-10581079.16230491,4524078.5225804495],[-10581079.939870756,4523822.0084079485],[-10581079.977236936,4523815.285653933],[-10581080.747647103,4523563.3845108561],[-10581081.544086428,4523302.6641863799],[-10581083.901849262,4523044.745190694],[-10581086.157423045,4522798.0748383487],[-10581086.232807662,4522789.1450230181],[-10581088.537562089,4522535.8438029774],[-10581090.732127558,4522294.6018411759],[-10581090.835535038,4522284.8589253947],[-10581093.160611659,4522031.4812330073],[-10581095.413894145,4521785.8481480163],[-10581095.472177498,4521778.5287450915],[-10581097.780444466,4521526.0182333617],[-10581100.08641354,4521273.9351374982],[-10581101.552982051,4521018.5834106877],[-10581103.019148726,4520763.1209418569],[-10581103.029405119,4520758.2686395086],[-10581104.464990653,4520507.5428122347],[-10581105.92725003,4520251.8530728128],[-10581105.953807425,4520245.450686899],[-10581107.384802727,4519996.0601946423],[-10581108.851965046,4519740.1543329135],[-10581108.856029985,4519736.6740168715],[-10581110.313920036,4519484.1397901885],[-10581111.792392725,4519228.0247845668],[-10581115.4042469,4518974.8834665827],[-10581119.024703704,4518721.1229581377],[-10581122.657968823,4518466.8179464694],[-10581126.298435515,4518211.9414439723],[-10581126.457588766,4518200.6126573971],[-10581133.518089516,4517955.4209363051]]]},"attributes":{"objectid":4261,"field_kid":"1000147524","approxacre":42637,"field_name":"St. Paul-Walnut","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":631987.06999999995,"maxoilwell":209,"lastoilpro":200.58000000000001,"lastoilwel":42,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":180.59259259000001,"avgdepthsl":-725.05555556000002,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147524}},{"geometry":{"rings":[[[-10629779.219462665,4509022.2323747166],[-10629780.347502299,4508765.3587301262],[-10629781.402072396,4508525.2448000256],[-10629781.462943679,4508510.8066050019],[-10629781.916272447,4508409.5818251111],[-10629780.95375233,4508257.1790638575],[-10629779.468078686,4508021.8212854881],[-10629779.362145344,4508005.0536567401],[-10629775.472638803,4507753.4009819869],[-10629771.8464448,4507518.8232148495],[-10629771.622690918,4507503.9792686785],[-10629767.817809481,4507257.0125472862],[-10629767.392641194,4507229.4408955304],[-10629770.335297829,4507011.2897227127],[-10629517.377015527,4507010.1256360272],[-10629265.922836849,4507008.9605590366],[-10629261.572408183,4507008.9470054712],[-10629007.251781529,4507007.750479064],[-10628756.982844735,4507006.5667456165],[-10628752.887405284,4507006.6006310228],[-10628506.88962712,4507008.0965670105],[-10628499.53859905,4507008.0780556304],[-10628246.893574361,4507007.4495178293],[-10628232.9923255,4507007.4202008005],[-10627990.707349215,4507008.289173482],[-10627734.36564881,4507009.2045226535],[-10627731.615008727,4506756.9555664659],[-10627731.173985489,4506716.6339315325],[-10627733.093857527,4506504.3217862723],[-10627735.373714428,4506251.6713982262],[-10627737.657173907,4505998.749829174],[-10627737.748801814,4505989.279741466],[-10627736.602656627,4505746.6697707064],[-10627735.415794108,4505495.2361887256],[-10627735.263959881,4505462.5681804912],[-10627734.811093735,4505244.1019146005],[-10627734.291993296,4504993.3531965949],[-10627988.312775843,4504991.9853212219],[-10628242.400734972,4504990.6129060639],[-10628496.962832138,4504989.2235950585],[-10628751.832578609,4504987.8276030226],[-10628754.84580816,4504732.5505140387],[-10628757.856437275,4504477.4921669252],[-10628760.854955459,4504222.6917705052],[-10628763.850673152,4503968.1339190677],[-10628767.451274404,4503713.0570941623],[-10628771.047273448,4503458.2424897989],[-10628774.653985584,4503203.4069628604],[-10628778.263800904,4502948.3782482725],[-10629032.688774835,4502948.6609462583],[-10629066.194917683,4502948.6985751633],[-10629282.452937745,4502946.2431894746],[-10629287.951079782,4502946.1716289269],[-10629544.031511426,4502943.2496390995],[-10629569.269164121,4502942.9601594238],[-10629800.846697263,4502943.1467229128],[-10629795.685158327,4503197.9490312655],[-10629790.514713323,4503453.1143132597],[-10629785.331555724,4503708.3170816749],[-10629780.144596901,4503963.7417302858],[-10630041.038668545,4503966.439641865],[-10630299.497976238,4503969.1042268965],[-10630558.549655367,4503971.7821890274],[-10630817.152424166,4503974.4485428203],[-10631072.943313533,4503976.7817217046],[-10631327.962421412,4503979.0965134334],[-10631582.225880403,4503981.3966782261],[-10631835.727383438,4503983.6832250915],[-10631835.709216887,4503992.8558671139],[-10632086.96959319,4503993.5356224282],[-10632338.589373022,4503994.2107096137],[-10632590.557844423,4503994.8893267103],[-10632842.873105198,4503995.5631496124],[-10633096.413742073,4503996.2403726047],[-10633350.536332425,4503996.9133049184],[-10633605.534105498,4503997.5737473452],[-10633860.513758149,4503998.2283881363],[-10633860.269973025,4504247.67663131],[-10633860.269478364,4504248.7355818944],[-10633857.795887392,4504479.884765055],[-10633857.615573848,4504495.8613353278],[-10633854.976785613,4504742.8320961911],[-10633852.351606246,4504988.6240197401],[-10633847.712772992,4505235.6645481456],[-10633843.032705201,4505484.7625737321],[-10633842.75748094,4505499.9833273971],[-10633838.316208174,4505735.8974296022],[-10633833.549466357,4505989.0615673857],[-10633833.144931896,4506010.5546931038],[-10633828.75870646,4506243.7611321993],[-10633823.924110528,4506500.7680384535],[-10633823.606146339,4506517.4200848648],[-10633819.043175565,4506760.0441046311],[-10633814.1257127,4507021.6110724192],[-10633811.094439544,4507278.1607844243],[-10633808.250989443,4507518.9253263501],[-10633808.089586273,4507532.9229611168],[-10633805.10414503,4507785.8981031002],[-10633802.348251997,4508019.2027146751],[-10633802.130206956,4508037.0908756051],[-10633799.184394803,4508287.2356105344],[-10633796.413196208,4508522.5615120064],[-10633796.252990665,4508535.8840515399],[-10633793.335193617,4508783.0318020554],[-10633790.434908077,4509028.6850651195],[-10634044.430479519,4509032.1390888402],[-10634299.349987643,4509035.5991644291],[-10634303.16536984,4509035.6537791798],[-10634554.601668313,4509039.0639073718],[-10634569.287150493,4509039.2631899975],[-10634591.597188594,4509039.2975060055],[-10634809.987300925,4509042.4392785514],[-10634811.771002851,4509301.5537406765],[-10634813.547389029,4509559.4561388353],[-10634815.315958804,4509816.1299787527],[-10634817.074810004,4510071.5710058585],[-10634817.99621189,4510325.4849688224],[-10634818.91169931,4510578.1377822775],[-10634819.826278107,4510829.5655754339],[-10634820.737345202,4511079.7440285338],[-10634566.114506504,4511081.3890923942],[-10634312.248416997,4511083.022919693],[-10634059.077807905,4511084.6399577055],[-10633806.627907552,4511086.2446234906],[-10633557.72925847,4511082.3390928088],[-10633308.616569091,4511078.4242256507],[-10633058.114820663,4511074.481981352],[-10632806.612449132,4511070.5199300526],[-10632554.117863931,4511066.5349165909],[-10632300.673412599,4511062.5295910724],[-10632046.185389886,4511058.4912072262],[-10631790.682227785,4511054.4312497089],[-10631538.945109122,4511053.1141089816],[-10631288.065352609,4511051.7948179841],[-10631039.822352732,4511050.4715947397],[-10631036.805039646,4511050.4819080876],[-10630785.558037227,4511051.2589021241],[-10630534.520271501,4511052.0228995876],[-10630283.066835618,4511052.7803296093],[-10630031.780989407,4511053.5405383362],[-10629780.474720145,4511054.2935532415],[-10629780.813257076,4510801.501484585],[-10629781.151489887,4510548.1284341458],[-10629781.496326311,4510294.1638435116],[-10629781.842460325,4510039.6040959014],[-10629782.184092946,4509785.6118311109],[-10629782.526224205,4509531.3240092443],[-10629782.539402124,4509525.6435399447],[-10629782.875365296,4509277.3276633173],[-10629783.196277739,4509039.1990302932],[-10629779.219462665,4509022.2323747166]]]},"attributes":{"objectid":4265,"field_kid":"1000150022","approxacre":5669,"field_name":"THAYER","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":296696.53000000003,"maxoilwell":47,"lastoilpro":268.81999999999999,"lastoilwel":8,"lastodate":"1-2009","cumm_gas":1429884,"maxgaswell":23,"lastgaspro":6818,"lastgaswel":22,"lastgdate":"2-2009","avgdepth":852.5,"avgdepthsl":-84.75,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150022}},{"geometry":{"rings":[[[-10581519.186009916,4779773.0893104523],[-10581780.300076379,4779774.2653478067],[-10581778.458363235,4780036.4931995226],[-10581776.618352424,4780298.4519141121],[-10581774.79556166,4780560.1500223782],[-10581772.975073859,4780821.6055149706],[-10581770.603156088,4781082.7533227885],[-10581768.233641377,4781343.6452563452],[-10581765.859721987,4781604.2590070777],[-10581763.489707462,4781864.5681173727],[-10581503.126310386,4781864.5347644882],[-10581242.606534513,4781864.493506128],[-10580982.781853423,4781864.4490106246],[-10580722.984003028,4781864.3960919613],[-10580725.542577388,4781603.497913884],[-10580728.105256777,4781342.3422938818],[-10580728.137603033,4781337.936253381],[-10580730.643909121,4781080.8928403035],[-10580731.012710325,4781043.0641648527],[-10580732.127555726,4780819.1743216896],[-10580732.170116652,4780813.3408530634],[-10580733.473345237,4780557.1675855163],[-10580734.808222752,4780294.8841862371],[-10580734.849679923,4780290.2342393491],[-10580736.155915372,4780032.3377498398],[-10580737.48698947,4779769.5203935066],[-10580997.769705309,4779770.7157320026],[-10581258.343654156,4779771.9070553109],[-10581519.186009916,4779773.0893104523]]]},"attributes":{"objectid":4283,"field_kid":"1000149623","approxacre":317,"field_name":"OAK MILLS","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":6897.6099999999997,"maxoilwell":4,"lastoilpro":153.22999999999999,"lastoilwel":2,"lastodate":"8-2008","cumm_gas":158691,"maxgaswell":5,"lastgaspro":920,"lastgaswel":3,"lastgdate":"12-1994","avgdepth":1375.66666667,"avgdepthsl":362.55555556000002,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149623}},{"geometry":{"rings":[[[-10641999.392732827,4670916.3242285801],[-10642255.206417842,4670916.2743419539],[-10642250.17358838,4671173.1813458307],[-10642245.131946847,4671430.5293483017],[-10642240.079790203,4671688.5373226414],[-10642235.029035764,4671946.4637504779],[-10641978.66954582,4671946.1342125386],[-10641722.039647173,4671945.7982653687],[-10641718.885145662,4671945.7867304236],[-10641465.154957695,4671945.4456539098],[-10641457.988475604,4671945.436044327],[-10641208.04351915,4671943.0994609157],[-10641213.639477868,4671685.5321565298],[-10641219.150621273,4671431.7559121363],[-10641219.214007767,4671428.8913080469],[-10641224.778625643,4671172.4354614271],[-10641230.334431579,4670916.403008543],[-10641486.956239123,4670916.3884977838],[-10641743.313544692,4670916.3675784282],[-10641999.392732827,4670916.3242285801]]]},"attributes":{"objectid":4290,"field_kid":"1000150344","approxacre":157,"field_name":"VASSAR","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":364,"maxoilwell":3,"lastoilpro":140,"lastoilwel":3,"lastodate":"3-1989","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":1607.5,"avgdepthsl":498,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150344}},{"geometry":{"rings":[[[-10588163.153234344,4750824.3491082825],[-10588164.042873265,4750562.1023263279],[-10587904.125762982,4750562.4381501637],[-10587644.629231717,4750562.7667352147],[-10587385.012663746,4750563.0929961205],[-10587125.419222143,4750563.4127974175],[-10587125.829315979,4750304.5398696549],[-10587126.239205778,4750046.1822966877],[-10587126.647599023,4749787.1359747332],[-10587127.057696408,4749527.7995884214],[-10587127.470098704,4749268.1592095485],[-10587127.793981893,4749064.717446411],[-10587128.202868255,4749008.1927705761],[-10587130.193571988,4748747.9878603285],[-10587132.184278144,4748487.4500934258],[-10587392.454034578,4748487.6055095373],[-10587651.742073221,4748487.7549943505],[-10587911.141038213,4748487.9006032068],[-10588170.287115306,4748488.0397566222],[-10588429.642430689,4748488.1742580952],[-10588688.953495743,4748488.3016561745],[-10588948.175659772,4748488.4023188595],[-10589132.680046231,4748488.4699098421],[-10589207.314933084,4748487.997575596],[-10589206.807176251,4748747.31812183],[-10589206.311877498,4749000.5831097867],[-10589206.304224292,4749006.7247683648],[-10589205.803375872,4749265.9763598684],[-10589205.315287339,4749518.9703085721],[-10589464.139924601,4749519.0346997995],[-10589722.700361045,4749519.0930225598],[-10589981.00941126,4749519.1466976097],[-10590239.072481416,4749519.1940456564],[-10590496.874354156,4749519.2372628078],[-10590754.431348091,4749519.2746696221],[-10591011.737756696,4749519.3084621364],[-10591268.777261415,4749519.3346361052],[-10591268.80265365,4749524.5411307979],[-10591269.16025058,4749781.4693468073],[-10591269.526315825,4750044.2729183994],[-10591269.51547597,4750048.177282095],[-10591269.886369461,4750307.7620678768],[-10591270.263137178,4750571.9635906424],[-10591267.091787795,4750832.7994068181],[-10591263.924545368,4751093.2959829895],[-10591260.754101144,4751353.5140159493],[-10591257.587963821,4751613.4328119922],[-10590998.27221965,4751612.7342694495],[-10590739.614825383,4751612.0313274674],[-10590481.443584785,4751611.337683076],[-10590223.829178488,4751610.6365394471],[-10589966.874423571,4751609.9303503623],[-10589710.475001227,4751609.2188584581],[-10589454.75665467,4751608.502966892],[-10589199.674232475,4751607.7809964912],[-10588939.829076583,4751608.3244679058],[-10588680.032676257,4751608.8594115786],[-10588420.263707168,4751609.3916417742],[-10588160.513859872,4751609.917411739],[-10588161.389379213,4751348.1450394243],[-10588162.264698107,4751086.4024548102],[-10588163.153234344,4750824.3491082825]]]},"attributes":{"objectid":4319,"field_kid":"1000149590","approxacre":1424,"field_name":"ACKERLAND","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149590}},{"geometry":{"rings":[[[-10593750.570251865,4699908.255162715],[-10594008.906187877,4699908.1479279436],[-10594008.19571011,4700168.4693656834],[-10594007.485232323,4700428.5619685324],[-10594006.768347193,4700688.4124782821],[-10594006.053364256,4700948.1107360311],[-10593748.662781881,4700948.71321443],[-10593492.467664542,4700949.3050135942],[-10593234.723879043,4700949.8888544915],[-10592987.432327723,4700950.441889707],[-10592976.344167508,4700950.4277063021],[-10592717.337039033,4700950.226216956],[-10592457.651636086,4700950.0175338024],[-10592197.47226911,4700949.8069261508],[-10591936.740571462,4700949.5871954001],[-10591938.196652111,4700689.3778070835],[-10591939.633414879,4700432.8376702992],[-10591939.666148672,4700429.5185586233],[-10591941.130740194,4700170.0023532677],[-10591942.569707394,4699914.8606127361],[-10591942.584219631,4699910.8537161313],[-10592202.188803811,4699910.2832080191],[-10592461.157762155,4699909.7080773143],[-10592719.520728497,4699909.1431060759],[-10592977.229547847,4699908.5727411387],[-10593234.733033104,4699908.4661553502],[-10593492.503323086,4699908.3548115138],[-10593750.570251865,4699908.255162715]]]},"attributes":{"objectid":4140,"field_kid":"1000147612","approxacre":319,"field_name":"VINLAND NORTHEAST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147612}},{"geometry":{"rings":[[[-10637896.419944232,4650246.3259503981],[-10638157.415871173,4650247.5642940877],[-10638157.791448778,4650304.2875433099],[-10638156.506122723,4650505.7368965512],[-10638154.860514738,4650764.0688252514],[-10638153.213105468,4651022.2559313774],[-10638151.566697365,4651280.4561969088],[-10637892.499387717,4651279.1899734149],[-10637635.295908405,4651277.9246454071],[-10637377.240555476,4651276.6325803688],[-10637119.248474859,4651275.3330955757],[-10637119.00040159,4651016.9992694519],[-10637118.753129601,4650758.5907263979],[-10637118.50475489,4650500.5012087272],[-10637118.257179607,4650242.6003033072],[-10637376.751146203,4650243.8428677181],[-10637636.101491844,4650245.0849206345],[-10637639.290737256,4650245.099375003],[-10637896.419944232,4650246.3259503981]]]},"attributes":{"objectid":2968,"field_kid":"1026052805","approxacre":160,"field_name":"ROSEMONT","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1026052805}},{"geometry":{"rings":[[[-10596753.703361511,4490728.365027667],[-10597000.566380633,4490724.6327307727],[-10597002.911165001,4490982.4736522166],[-10597005.266086657,4491241.4411492376],[-10597007.622101745,4491500.0708711902],[-10597007.758900438,4491515.0209580669],[-10597009.393049661,4491758.8503103899],[-10596760.406853762,4491761.1694898205],[-10596510.427219385,4491763.492810729],[-10596259.890546493,4491765.812973652],[-10596008.657375343,4491768.1333776508],[-10596008.246312642,4491510.0269314097],[-10596007.835665753,4491252.5981185967],[-10596007.442452917,4490995.7914641863],[-10596007.048153382,4490739.6282100454],[-10596256.843932956,4490735.8640882662],[-10596505.705041517,4490732.1085180938],[-10596753.703361511,4490728.365027667]]]},"attributes":{"objectid":3128,"field_kid":"1031632766","approxacre":159,"field_name":"St. Paul-Walnut Southwest","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1031632766}},{"geometry":{"rings":[[[-10603045.391657805,4458187.5524352593],[-10603042.357706908,4457933.8264727807],[-10602787.015932357,4457935.6240779394],[-10602530.885651128,4457937.4199119741],[-10602275.899686217,4457939.2015761845],[-10602021.382260386,4457940.9735796573],[-10602016.441340001,4457687.618021911],[-10602011.497112039,4457433.9999519838],[-10602006.52064229,4457180.0377717847],[-10602001.536759553,4456925.753605118],[-10601995.839567395,4456672.5528295366],[-10601990.142273935,4456419.332005145],[-10601984.445480108,4456166.1122259609],[-10601978.749285964,4455912.8873399254],[-10601952.180311093,4455913.0010071294],[-10601971.75468285,4455658.4432990467],[-10601991.336465035,4455403.7873965902],[-10602010.93506836,4455149.0231382018],[-10602030.54148254,4454894.1578125814],[-10602050.105457643,4454639.8980540456],[-10602069.669735719,4454385.6053715367],[-10602089.221203515,4454131.4452122701],[-10602108.798500201,4453876.941955165],[-10602382.247055218,4453876.3585982667],[-10602632.145694327,4453875.819144615],[-10602650.601745067,4453875.780174382],[-10602913.928445522,4453875.1992786927],[-10602984.389075538,4453875.0437162407],[-10603172.180489691,4453873.4032192836],[-10603208.839017982,4453875.0555026699],[-10603289.649914637,4453877.8463829327],[-10603352.922204919,4453878.691025327],[-10603584.328083737,4453881.7816711199],[-10603668.461004406,4453882.900657854],[-10603843.710724231,4453885.2304568384],[-10604110.086453605,4453888.7673025308],[-10604166.528642932,4453889.5187428016],[-10604187.33531094,4453889.7923325263],[-10604378.886579651,4453891.6386840958],[-10604648.721199013,4453894.233688971],[-10604679.994873466,4453894.5366890393],[-10604919.492902022,4453896.8341169273],[-10605191.181264995,4453899.4329380495],[-10605443.574577758,4453898.8514397927],[-10605680.530936439,4453898.2987632342],[-10605696.114159636,4453898.2595272735],[-10605948.71070743,4453897.6652315939],[-10606179.361973753,4453897.1157707321],[-10606201.399662055,4453897.0612733224],[-10606448.451396771,4453896.4641891737],[-10606683.62559418,4453895.8908783523],[-10606693.975164263,4453895.8650547396],[-10606938.005604582,4453895.2618625704],[-10607180.529101968,4453894.6544867633],[-10607180.471105024,4454147.4230243042],[-10607180.417183667,4454387.4969596611],[-10607180.40589709,4454399.9361258242],[-10607180.348695407,4454652.1583731566],[-10607180.292471651,4454892.2690043636],[-10607180.298299642,4454904.1945683472],[-10607181.967071382,4455154.2173944311],[-10607183.594233651,4455398.2246274538],[-10607183.62944328,4455405.0036557475],[-10607185.297609892,4455654.630180018],[-10607186.997961238,4455908.9513232624],[-10607188.19171254,4456161.8855818221],[-10607189.369204579,4456410.8552415138],[-10607189.383059377,4456414.6703319401],[-10607190.067999724,4456557.1771162013],[-10607190.562334022,4456661.7413700577],[-10607191.748254554,4456912.5864950838],[-10607191.780374052,4456920.6906528901],[-10607192.953659346,4457169.5228680465],[-10607194.166072281,4457426.4794264697],[-10607195.360538485,4457680.8948089704],[-10607196.548479877,4457933.6276211394],[-10607196.387364177,4458186.5983829862],[-10607196.228128176,4458437.3613829557],[-10607196.222153803,4458440.5635034572],[-10607196.064160006,4458695.3438500967],[-10607195.911079338,4458941.020958689],[-10607195.901870022,4458950.9931062646],[-10607195.749758232,4459203.3433410171],[-10607195.604457699,4459446.1889014849],[-10607195.595430015,4459454.3334326223],[-10607195.440487666,4459704.0073675178],[-10607195.286933245,4459952.3399332585],[-10606928.458306573,4459953.9333789088],[-10606669.675777432,4459955.4721289519],[-10606663.100079082,4459955.5135467369],[-10606399.252597233,4459957.0654916903],[-10606145.603700122,4459958.5491015529],[-10606136.899942737,4459958.5998890754],[-10605876.047321625,4459960.1189997261],[-10605711.197834332,4459961.0740533974],[-10605623.168706782,4459960.8230516016],[-10605616.790536158,4459960.8115979759],[-10605358.947970005,4459960.0716757048],[-10605102.470280996,4459959.3305293638],[-10604850.263137087,4459959.5544415526],[-10604597.379010815,4459959.7724348754],[-10604590.566438446,4459959.7835784033],[-10604343.860050913,4459959.9852638887],[-10604093.429159401,4459960.1846011514],[-10604089.649792172,4459960.1979511343],[-10604080.592325894,4459960.2331564464],[-10603834.843551436,4459961.0348398555],[-10603579.397671489,4459961.8591542123],[-10603572.663589848,4459961.8728115363],[-10603323.317058064,4459962.6788069261],[-10603208.697911415,4459963.0454937974],[-10603066.612282338,4459963.9049253296],[-10603063.563193766,4459707.9681688417],[-10603060.56020073,4459455.9923398802],[-10603060.518414401,4459452.4724088535],[-10603057.474441776,4459197.561034292],[-10603054.500410967,4458948.3424105812],[-10603054.433678178,4458943.1906760801],[-10603051.415565481,4458691.1535960874],[-10603048.412383063,4458440.370027462],[-10603045.391657805,4458187.5524352593]]]},"attributes":{"objectid":3171,"field_kid":"1000149393","approxacre":4551,"field_name":"GOSSARD","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149393}},{"geometry":{"rings":[[[-10601329.620837005,4596114.799590379],[-10601333.421380922,4595856.9525767621],[-10601337.218920331,4595599.2443247335],[-10601341.009951027,4595341.6953085931],[-10601344.798277453,4595084.2967373421],[-10601338.652731542,4595084.3120501153],[-10601342.623963265,4594827.3990294049],[-10601346.596297259,4594570.4020657893],[-10601350.572536571,4594313.3383403374],[-10601354.549978184,4594056.2003520625],[-10601612.395317439,4594056.0038606217],[-10601870.540800888,4594055.8025327316],[-10602129.023971582,4594055.5952231688],[-10602387.848934228,4594055.381804686],[-10602659.900966957,4594054.7067422988],[-10602931.47715419,4594054.0249408288],[-10603202.58680662,4594053.334746371],[-10603473.229266711,4594052.6381747816],[-10603469.625943698,4594309.4408789827],[-10603466.02552467,4594566.1226121262],[-10603462.416996181,4594822.7752240067],[-10603458.808868198,4595079.372757351],[-10603456.595614597,4595338.3275647154],[-10603454.386069061,4595596.8464563629],[-10603452.171020528,4595854.9832225787],[-10603449.959579946,4596112.6837560851],[-10603177.157452228,4596114.2954862248],[-10602903.546770649,4596115.9032267146],[-10602630.524363546,4596117.5104542114],[-10602357.610981582,4596119.1097921543],[-10602357.683607871,4596114.5034308024],[-10602101.347544165,4596114.5894583389],[-10601844.709334128,4596114.6702711545],[-10601587.426184865,4596114.7374736927],[-10601329.620837005,4596114.799590379]]]},"attributes":{"objectid":3181,"field_kid":"1000146331","approxacre":660,"field_name":"LONE ELM","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":2581.4099999999999,"maxoilwell":16,"lastoilpro":151.41,"lastoilwel":16,"lastodate":"7-1996","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":749,"avgdepthsl":-349,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146331}},{"geometry":{"rings":[[[-10631098.059562881,4562249.4013284463],[-10631040.226481488,4562247.1454246007],[-10630842.062018914,4562248.0121758701],[-10630591.294498699,4562249.1029751971],[-10630586.700497346,4562249.1230201032],[-10630331.854158813,4562250.2341175033],[-10630083.717516763,4562251.3104553055],[-10630077.611203171,4562251.344199663],[-10629824.221212918,4562252.4271396343],[-10629575.324609844,4562253.4859764921],[-10629571.147680664,4562253.4982843464],[-10629318.004269041,4562254.5699366434],[-10629066.056010306,4562255.6305534616],[-10628812.865538632,4562254.6007883241],[-10628558.188784361,4562253.5570740839],[-10628304.745827297,4562252.5221093958],[-10628051.631943051,4562251.4811834022],[-10627798.794772329,4562250.4316327525],[-10627546.388890168,4562249.3786572218],[-10627294.221077789,4562248.3171839351],[-10627042.457923817,4562247.251271164],[-10627041.944296855,4561992.4175918791],[-10627041.532292709,4561787.8891529599],[-10627041.486535447,4561738.610446427],[-10627041.252223734,4561483.2549552135],[-10627041.018811572,4561227.1955718575],[-10627040.787102303,4560971.5659263814],[-10627040.55509357,4560716.3257883592],[-10627040.314271832,4560459.648609614],[-10627040.085092776,4560216.7403715439],[-10627040.870451279,4560202.7495243661],[-10627039.719300874,4559946.5606593676],[-10627038.567848872,4559689.6580297658],[-10627037.412692882,4559432.7275163401],[-10627036.256135056,4559175.5539572183],[-10626781.707998965,4559175.117914184],[-10626527.112209084,4559174.6737565799],[-10626271.956386032,4559174.2289655516],[-10626016.357361928,4559173.7773282407],[-10625760.759240542,4559174.3647408616],[-10625504.784793472,4559174.9458143655],[-10625248.997758171,4559175.520928598],[-10624993.211123168,4559176.0874211267],[-10624993.544600153,4559431.8536437852],[-10624993.877977438,4559687.9098058958],[-10624994.203946741,4559944.2470529918],[-10624994.528715147,4560200.9142252365],[-10624741.417281859,4560200.9369423511],[-10624489.378061503,4560200.9534449512],[-10624236.634344174,4560200.9565071687],[-10623983.729444496,4560200.9532293938],[-10623730.597088205,4560202.1616840791],[-10623477.469837395,4560203.3636720022],[-10623223.786957737,4560204.5561504932],[-10622969.738964763,4560205.743177033],[-10622968.884242736,4559949.8886145297],[-10622968.027118122,4559693.6791061647],[-10622967.176200662,4559437.1117618345],[-10622966.322279928,4559180.1857204065],[-10622710.906362951,4559180.6898320187],[-10622455.662240108,4559181.1881111553],[-10622199.793410743,4559181.6857569786],[-10621943.571381874,4559182.1792191043],[-10621687.884457996,4559182.5917881755],[-10621432.557841454,4559182.9982709866],[-10621177.247743489,4559183.3948641317],[-10620921.286509153,4559183.7839772729],[-10620663.370364092,4559184.2496740473],[-10620405.775682427,4559184.7087774295],[-10620148.649130011,4559185.1597657911],[-10619891.953965293,4559185.6028927583],[-10619635.835252486,4559185.916312051],[-10619379.889735451,4559186.2241524104],[-10619124.558813335,4559186.5162701299],[-10618869.695019385,4559186.8001460107],[-10618618.004413493,4559187.1001213277],[-10618365.382254161,4559187.3965474237],[-10618111.828040827,4559187.6858741315],[-10617857.351284249,4559187.9692425765],[-10617857.608341055,4558930.7387013733],[-10617857.865698198,4558673.4840978933],[-10617858.124557067,4558416.1957984241],[-10617858.384417068,4558158.8852154212],[-10617849.558741471,4558158.9032253558],[-10617849.819199076,4557903.4476487292],[-10617850.081158224,4557648.0437340438],[-10617850.338411862,4557392.703647228],[-10617850.595064633,4557137.4256087495],[-10618104.072145367,4557137.001647884],[-10618357.737238422,4557136.5695739146],[-10618611.570721639,4557136.1335701197],[-10618865.573496025,4557135.6894532191],[-10618866.162001148,4556880.3983608223],[-10618866.750105593,4556625.1619590437],[-10618867.344717164,4556369.9831591612],[-10618867.940529823,4556114.878561534],[-10618613.169410894,4556115.0219455045],[-10618359.41814368,4556115.1565828761],[-10618105.431710862,4556115.2880515717],[-10617851.631187979,4556115.4124219613],[-10617851.369558539,4555858.6524685314],[-10617851.106227174,4555601.9257251862],[-10617850.850103831,4555345.2883370174],[-10617850.592678929,4555088.7262290493],[-10617850.077263175,4554832.0414311262],[-10617849.565248363,4554576.731703707],[-10617849.065451207,4554319.7310527619],[-10617848.562752368,4554062.0705399569],[-10617790.337152999,4554062.2664830638],[-10617535.72265636,4554063.1188234556],[-10617340.944483563,4554060.8650263604],[-10617288.66129127,4554060.2628311822],[-10617124.994222267,4554058.3742549373],[-10617041.956026988,4554058.0497329496],[-10616833.64137747,4554057.2307611899],[-10616795.607462,4554057.2070765393],[-10616549.687178519,4554057.0533159617],[-10616326.649114158,4554056.9123467878],[-10616304.493014388,4554056.8987947442],[-10616059.444714904,4554056.7356559355],[-10615818.107302673,4554056.5602231286],[-10615814.557997825,4554056.5580700142],[-10615569.837368209,4554056.3754148837],[-10615313.245640837,4554057.0925362445],[-10615307.948663952,4554057.1066050017],[-10615057.50417272,4554057.7983785588],[-10614802.610861409,4554058.5151193179],[-10614796.149971198,4554058.5329903457],[-10614548.569714276,4554058.4855555659],[-10614294.777948607,4554058.4392635636],[-10614289.34672028,4554058.4391387729],[-10614041.586960835,4554058.3923377022],[-10613788.981734077,4554058.3308378458],[-10613781.052286893,4554058.3303337609],[-10613536.968675507,4554058.2703516055],[-10613284.709941477,4554057.8130784091],[-10613271.280788809,4554057.788497868],[-10613031.539378678,4554057.3583401022],[-10612777.456887076,4554056.8897886975],[-10612760.130637173,4554056.8574791104],[-10612522.475284005,4554055.8030558731],[-10612266.581352087,4554054.6505513377],[-10612246.321792696,4554054.5589338513],[-10612009.740251761,4554053.4871485438],[-10611751.970904374,4554052.3174097138],[-10611733.803405555,4554052.2351693967],[-10611493.228158964,4554051.1422219705],[-10611239.416372774,4554050.8846733933],[-10611222.645349348,4554050.8675710214],[-10610985.520291628,4554050.6111570541],[-10610731.538113451,4554050.327882641],[-10610712.592636513,4554050.3072326472],[-10610477.459126903,4554049.9040663671],[-10610223.294343811,4554049.4533836944],[-10610204.914605316,4554049.4195537353],[-10609969.046266852,4554049.0009268299],[-10609714.71189259,4554048.5553133348],[-10609697.17680715,4554048.5238909153],[-10609460.274602365,4554048.1007021349],[-10609204.588406861,4554047.0405827854],[-10609189.200944906,4554046.9773507528],[-10608949.078310335,4554045.9771684688],[-10608693.745814456,4554044.9155283235],[-10608681.141993362,4554044.8631939581],[-10608438.561891811,4554043.0516972281],[-10608183.433632854,4554041.1236150265],[-10608172.246110084,4554041.0395980682],[-10607928.474164816,4554039.1969270185],[-10607673.601294912,4554037.2750549009],[-10607662.831743779,4554037.1934456555],[-10607418.841152681,4554035.3521691635],[-10607163.943640254,4554035.5854396662],[-10607152.807474807,4554035.5963422554],[-10606908.989864409,4554035.8027424412],[-10606653.958901457,4554036.0145959342],[-10606642.062378073,4554036.024484965],[-10606639.864467941,4554293.120863976],[-10606637.652830968,4554551.6638105912],[-10606635.465939095,4554807.8552278569],[-10606633.287063941,4555062.9608299239],[-10606377.363978257,4555062.0935369357],[-10606121.664545285,4555061.2211742317],[-10605866.084447298,4555060.3407000722],[-10605610.660125403,4555059.4556631837],[-10605612.544204038,4554802.7428286951],[-10605614.427480469,4554546.1416470427],[-10605616.306549178,4554289.8614702495],[-10605618.18321277,4554033.8318135319],[-10605377.407740939,4554033.3039485002],[-10605376.572767777,4553778.038037098],[-10605375.735397322,4553522.1355283149],[-10605375.6990213,4553514.1149080554],[-10605374.877108661,4553265.6001439029],[-10605374.027034746,4553008.4205261236],[-10605373.991489459,4552996.7274460196],[-10605373.172764348,4552750.255865436],[-10605372.3116928,4552491.318220159],[-10605372.29124351,4552482.2207305878],[-10605371.462441219,4552231.5956108011],[-10605370.600882361,4551971.0906301038],[-10605189.518013185,4551973.9191738144],[-10605127.209762426,4551974.7342629973],[-10604962.999219539,4551976.8817756493],[-10604883.182031441,4551977.4804578191],[-10604638.968197631,4551979.3262995351],[-10604394.360118972,4551981.1674537063],[-10604149.468420137,4551983.0096219722],[-10603904.266070688,4551984.848496411],[-10603658.695806144,4551986.6750810985],[-10603412.762531945,4551988.4996389821],[-10603412.446992762,4551732.1288344646],[-10603412.133154271,4551475.9092878727],[-10603411.807701364,4551219.8501098976],[-10603411.483748926,4550963.9417867875],[-10603411.161381597,4550709.8940871488],[-10603410.83602434,4550454.3739237795],[-10603410.838360133,4550450.7050060425],[-10603410.513483606,4550197.3919196334],[-10603410.184148559,4549938.9489429258],[-10603412.099843716,4549680.3354180371],[-10603413.985667706,4549425.8298393451],[-10603413.996705189,4549423.058123596],[-10603415.880439576,4549167.0965666799],[-10603417.754550785,4548912.4571101144],[-10603419.686672449,4548652.7780121071],[-10603421.600750942,4548395.5824756986],[-10603423.482085636,4548139.110929409],[-10603425.352595853,4547883.9555514753],[-10603210.688070392,4547887.8854054743],[-10603167.182409815,4547888.3001701366],[-10602908.043365728,4547890.7672297005],[-10602650.405145751,4547893.1917307945],[-10602583.746582603,4547893.8166695172],[-10602393.383748503,4547894.0505385539],[-10602394.470109461,4547640.3067077147],[-10602395.557475464,4547386.1444114167],[-10602396.651365593,4547130.1645131921],[-10602397.751174858,4546872.839898672],[-10602140.734586651,4546872.663309332],[-10601883.540294386,4546872.4820346711],[-10601627.46248454,4546872.2883466305],[-10601372.069961805,4546872.0895913905],[-10601372.048718832,4546863.1364400303],[-10601371.840139618,4546614.5936626932],[-10601371.623040538,4546356.1691546617],[-10601371.61940074,4546349.0906427475],[-10601371.40575018,4546096.7686494337],[-10601371.184564153,4545836.40551583],[-10601122.20150598,4545835.221447981],[-10600870.63347901,4545834.0177584179],[-10600863.962917758,4545833.9951064391],[-10600616.73857959,4545832.80407036],[-10600360.473558201,4545831.5636689262],[-10600360.099495579,4545570.6635412751],[-10600359.728428321,4545310.6593433274],[-10600359.377071839,4545051.9687242974],[-10600359.02690617,4544794.4477504846],[-10600358.648012858,4544536.3423672095],[-10600358.265731577,4544276.4876819393],[-10600358.262535527,4544264.6271463213],[-10600357.909758881,4544014.8325251779],[-10600357.535371831,4543751.3987265546],[-10600350.423205035,4543751.5592723107],[-10600353.967633765,4543497.4106354127],[-10600357.312911207,4543257.6263287691],[-10600357.472845867,4543245.573402809],[-10600360.934938695,4542996.1961546773],[-10600364.363522727,4542749.2327617351],[-10600112.444418238,4542751.4904595725],[-10599860.676086774,4542753.7417021608],[-10599609.38209979,4542755.9724374386],[-10599358.458437953,4542758.1932992069],[-10599358.563846398,4542749.0481069647],[-10599101.836381087,4542748.1968628215],[-10598845.197717728,4542747.340934542],[-10598589.235130923,4542746.4889295315],[-10598333.735475756,4542745.631353762],[-10598078.327726798,4542744.8254268663],[-10597823.381708076,4542744.0126632936],[-10597568.350791765,4542743.1909117159],[-10597313.425596811,4542742.3623239314],[-10597315.393120926,4542485.5786658004],[-10597317.318265446,4542234.4619575487],[-10597317.371863991,4542229.3018519292],[-10597319.35331619,4541973.5288068764],[-10597321.330169145,4541718.2613921128],[-10597318.594095368,4541461.8425731435],[-10597315.868045866,4541206.4692211905],[-10597313.121351942,4540949.4006540924],[-10597310.468273595,4540701.1807222385],[-10597310.354024798,4540691.5525767105],[-10597567.021678787,4540691.1118170861],[-10597823.46737778,4540690.6633371152],[-10598079.527133422,4540690.2058711778],[-10598335.270926142,4540689.7435959382],[-10598591.843870919,4540689.2703094212],[-10598850.32951213,4540688.787909871],[-10598859.537386416,4540688.7781622801],[-10599110.760787833,4540688.3152556429],[-10599373.125083219,4540687.826527263],[-10599624.087753585,4540684.8004075103],[-10599864.416212972,4540681.8969340418],[-10599873.071951952,4540681.7882120991],[-10600119.977363229,4540678.7990537677],[-10600364.838527042,4540675.829008936],[-10600360.729118647,4540417.9752019411],[-10600356.695956754,4540164.8842589445],[-10600356.6498619,4540161.4951208886],[-10600352.591446636,4539906.4313138109],[-10600348.556475645,4539652.7682371717],[-10600344.188460518,4539652.8420163561],[-10600342.617463125,4539394.6534713563],[-10600341.043057481,4539136.1176203974],[-10600341.02399862,4539133.1283257157],[-10600339.478557855,4538877.1513498472],[-10600337.912951995,4538617.7870861031],[-10600336.345150532,4538358.9855325343],[-10600334.755882168,4538096.7711864989],[-10600334.661401652,4538082.8637924753],[-10600333.13053018,4537831.14898693],[-10600331.494423585,4537562.1136268945],[-10600336.769281397,4537562.1909429999],[-10600585.471793555,4537565.3792960588],[-10600840.191816289,4537568.6392726712],[-10600845.228500517,4537568.7081110664],[-10601095.658696808,4537571.9088666076],[-10601351.864325669,4537575.1773230014],[-10601607.955588954,4537575.6845571641],[-10601864.551631799,4537576.1862247055],[-10601867.447957477,4537576.1836982435],[-10602121.635134159,4537576.6700523607],[-10602379.2243172,4537577.1552724382],[-10602383.112381794,4537577.1651471313],[-10602637.323986392,4537577.6383421551],[-10602893.022798652,4537578.1088820901],[-10602895.879278556,4537578.1045841807],[-10603154.946458546,4537578.5742430855],[-10603210.879970431,4537578.6750395307],[-10603414.48037257,4537580.0871947808],[-10603418.667832654,4537327.3428764911],[-10603422.840089375,4537075.6679734029],[-10603427.046058673,4536821.9273983352],[-10603431.203409676,4536571.0754045425],[-10603431.134383282,4536567.1682189172],[-10603423.791064261,4536314.1540128095],[-10603416.564626593,4536065.2072803257],[-10603416.447348341,4536061.4987774985],[-10603409.115349548,4535809.2322158907],[-10603401.793065522,4535557.3464564644],[-10603647.751230178,4535557.9812658885],[-10603897.141057562,4535558.618617883],[-10603906.818250731,4535558.6407914236],[-10604149.951034559,4535559.2459885646],[-10604406.172751896,4535559.8793173265],[-10604411.448790917,4535559.8942640489],[-10604411.685420159,4535303.7291829707],[-10604411.92395276,4535047.6679209201],[-10604412.145664826,4534791.4797447659],[-10604412.367776735,4534535.2461240534],[-10604664.344873864,4534535.8133059107],[-10604916.234372215,4534536.3732773792],[-10605168.015148059,4534536.9299595794],[-10605419.706423001,4534537.4803167954],[-10605419.71670394,4534277.0101087401],[-10605419.727393333,4534025.5304880096],[-10605419.728021044,4534019.4575746609],[-10605419.737370715,4533764.8050439358],[-10605419.746755417,4533513.0700111808],[-10605419.761551494,4533261.7796678534],[-10605419.777112925,4533007.5419895062],[-10605419.776139075,4533001.4895246821],[-10605419.782728879,4532750.4584933091],[-10605419.789611522,4532490.491829033],[-10605675.955611806,4532488.4199938504],[-10605931.815667689,4532486.3441110868],[-10606187.379890515,4532484.2601338699],[-10606442.652384959,4532482.1721091447],[-10606697.414306493,4532480.2481092419],[-10606951.474838266,4532478.3246125933],[-10607204.807650505,4532476.3917547399],[-10607457.421653334,4532474.4573766058],[-10607710.255844364,4532475.9984099437],[-10607963.458350033,4532477.5370421195],[-10608217.021361489,4532479.0688467994],[-10608470.94537935,4532480.5976179456],[-10608472.306306241,4532736.0500972504],[-10608473.668433316,4532991.4189070202],[-10608475.027755888,4533246.6893700697],[-10608476.3856756,4533501.8674237793],[-10608483.582480261,4533501.9024895383],[-10608736.72886065,4533503.1826643609],[-10608983.977499085,4533504.4260083158],[-10608989.368970782,4533504.4628369259],[-10609241.467770949,4533505.7197350692],[-10609493.036373829,4533506.9681567959],[-10609492.366443221,4533247.7814349467],[-10609491.719331494,4532997.0045899311],[-10609491.704544788,4532990.6922391774],[-10609491.042168837,4532735.6900438843],[-10609490.396177568,4532486.668836073],[-10609490.382719085,4532482.765464006],[-10609489.718239833,4532227.7057434795],[-10609489.064209197,4531975.9787798114],[-10609489.060071832,4531973.0323932907],[-10609488.393198382,4531718.7646063976],[-10609487.727830935,4531464.8981801346],[-10609486.485888667,4531208.7701605968],[-10609485.251470875,4530954.1026962455],[-10609484.007240366,4530699.3050101325],[-10609482.765116438,4530444.9048775481],[-10609738.814131482,4530445.1739252377],[-10609994.31222567,4530445.4376594042],[-10610249.18831877,4530445.6835619891],[-10610503.441209564,4530445.9231391437],[-10610501.129229566,4530190.6784580648],[-10610498.824464474,4529936.0876163049],[-10610496.531219125,4529682.1499338318],[-10610494.243987331,4529428.8648571186],[-10610746.89662401,4529428.2527361438],[-10610993.881573273,4529427.6479159165],[-10610998.955491494,4529427.6325204829],[-10611250.439711377,4529427.009520256],[-10611501.349283632,4529426.3807011684],[-10611500.257442273,4529171.7454970563],[-10611499.165199671,4528917.0537956925],[-10611756.050540112,4528916.7704715766],[-10612012.253811736,4528916.4801902734],[-10612267.778521597,4528916.479412877],[-10612522.627169365,4528916.4704140471],[-10612776.81917993,4528916.7424488412],[-10613030.366063228,4528917.0065151919],[-10613283.257706467,4528917.1243067067],[-10613535.496814111,4528917.2341297632],[-10613535.456337458,4528914.1869662786],[-10613786.510922613,4528915.5271268692],[-10614038.308845423,4528916.8640047684],[-10614290.859017149,4528918.3194714049],[-10614544.166442206,4528919.7716554459],[-10614798.158839112,4528921.220556478],[-10615052.996488549,4528922.6685774643],[-10615308.67368412,4528924.1187525094],[-10615565.195731776,4528925.5684267711],[-10615564.385343466,4528671.0723241661],[-10615563.575454742,4528416.4916557251],[-10615562.750748949,4528161.888749213],[-10615561.925340604,4527907.1212682733],[-10615561.333057674,4527720.4920599777],[-10615560.807200851,4527652.2279036054],[-10615558.845508827,4527397.2324247109],[-10615809.615556188,4527398.2872203039],[-10616061.221946342,4527399.3375970135],[-10616067.205492944,4527399.3691097312],[-10616313.125371324,4527400.3931581033],[-10616565.501929535,4527401.4388626236],[-10616570.691981435,4527401.4648085032],[-10616572.317393987,4527146.6539110085],[-10616573.938907204,4526892.3622781839],[-10616575.552714024,4526638.2982789855],[-10616577.164922239,4526384.5579545172],[-10616578.781436842,4526130.9652216099],[-10616580.402052831,4525877.0178127382],[-10616580.425754614,4525874.3911397625],[-10616582.028068431,4525622.3745206557],[-10616583.643075338,4525368.1102537736],[-10616578.729533387,4525368.1325883577],[-10616578.392926654,4525112.5965750813],[-10616578.058834344,4524858.2907361137],[-10616577.712816324,4524602.7050149981],[-10616577.365092132,4524346.6822481938],[-10616577.028175768,4524090.2110950397],[-10616576.68945319,4523833.3096579649],[-10616576.348515121,4523575.0520183081],[-10616576.008591762,4523318.2326110816],[-10616576.248957735,4523065.0549076423],[-10616576.489520617,4522811.5315813916],[-10616576.725174205,4522557.6165412096],[-10616576.960724076,4522303.3257347057],[-10616576.426795678,4522048.0099248514],[-10616575.890756764,4521791.8517486649],[-10616575.885710822,4521787.6160727758],[-10616575.36062004,4521535.2346892264],[-10616574.825063266,4521277.1643097978],[-10616586.099088414,4521276.9862790359],[-10616827.214689761,4521278.5211920468],[-10617079.664185969,4521280.1212601485],[-10617125.363576982,4521280.4010858573],[-10617332.127485415,4521280.4173492212],[-10617584.566354619,4521280.4298270438],[-10617839.35359407,4521282.5329608722],[-10618093.722360808,4521284.6278797947],[-10618347.608582411,4521286.7040978819],[-10618486.420892682,4521287.8381910957],[-10618601.034185063,4521288.920285942],[-10618854.318729714,4521291.3023443986],[-10619106.707162386,4521293.6707518157],[-10619358.209994938,4521296.0242449809],[-10619608.777471205,4521298.3630761448],[-10619863.652675167,4521296.7214055797],[-10620119.453624265,4521295.0679946132],[-10620376.131763734,4521293.4104226567],[-10620633.712922676,4521291.7399731474],[-10620638.507534888,4521291.7124734176],[-10620843.264966162,4521290.3716816949],[-10620891.625155099,4521290.0171000101],[-10621149.785165993,4521288.1246946454],[-10621408.161921788,4521286.231786456],[-10621666.770839829,4521284.332817046],[-10621918.854161022,4521278.746350497],[-10622171.349447787,4521273.1451107515],[-10622183.002800614,4521272.8728415743],[-10622424.197423607,4521266.3541047899],[-10622469.529487459,4521265.1276979269],[-10622677.453189842,4521263.1727240877],[-10622776.799731383,4521262.2383402092],[-10622930.512948992,4521261.7038673619],[-10623183.776242746,4521260.8196661528],[-10623437.244467927,4521259.9343299111],[-10623690.949660687,4521259.0438163765],[-10623947.316558447,4521258.1777070276],[-10624203.331058446,4521257.3046468208],[-10624458.993961578,4521256.4234987879],[-10624714.306669444,4521255.5360315666],[-10624969.256767996,4521254.6393394722],[-10625223.855369817,4521253.7368335063],[-10625478.102675183,4521252.834830136],[-10625731.997382578,4521251.9285288323],[-10625730.320588417,4520995.8433012087],[-10625728.639286565,4520739.4396938831],[-10625728.602100877,4520733.5530346315],[-10625726.952576021,4520482.7207618421],[-10625725.262358913,4520225.6841281941],[-10625982.395490507,4520225.9223362869],[-10626239.678491242,4520226.1539771697],[-10626497.114164272,4520226.3780403296],[-10626754.708916852,4520226.5960416412],[-10627012.514607549,4520226.8098763013],[-10627270.590202929,4520227.0176500725],[-10627529.513955895,4520227.2177259],[-10627787.58064105,4520227.40907834],[-10628037.313349154,4520232.3654117435],[-10628285.331820888,4520237.2828260595],[-10628287.86498148,4520237.3413329758],[-10628537.507887015,4520242.2911001733],[-10628786.804500915,4520247.228865739],[-10629038.606245706,4520252.6034594616],[-10629290.708529225,4520257.9781839885],[-10629543.097936278,4520263.3477338776],[-10629795.780673921,4520268.7180460906],[-10629795.797031317,4520274.7042263141],[-10630051.481460216,4520280.5447227405],[-10630306.228730125,4520286.3581813024],[-10630560.05846318,4520292.1392968129],[-10630812.961148674,4520297.8926165886],[-10630816.082260739,4520551.1526029501],[-10630819.193556443,4520803.6339990152],[-10630822.293133555,4521055.3233578252],[-10630825.383995458,4521306.2186010489],[-10631040.065462511,4521309.7846710235],[-10631079.33473097,4521310.3596471492],[-10631332.394313475,4521314.0518331714],[-10631584.501927653,4521317.728865983],[-10631835.656872682,4521321.3860713532],[-10632090.321562545,4521326.0984947318],[-10632344.79734033,4521330.8013202744],[-10632599.059978835,4521335.4894948741],[-10632853.126997733,4521340.1674399879],[-10633107.006205821,4521344.8394507905],[-10633360.686891064,4521349.5035060411],[-10633614.164348127,4521354.1508889478],[-10633867.434472451,4521358.7890530182],[-10633869.953575617,4521613.8466711007],[-10633872.470174402,4521868.6588486163],[-10633874.984969623,4522123.2313793562],[-10633877.495558543,4522377.5571707217],[-10633880.002942218,4522631.6247073459],[-10633882.469354739,4522881.6270785136],[-10633882.514228702,4522885.4479951886],[-10633885.008694755,4523139.0275220685],[-10633887.502658712,4523392.3673136383],[-10633890.015064957,4523649.2113437457],[-10633892.533480849,4523906.5351609699],[-10633892.575156003,4523911.1299099037],[-10633895.046493536,4524164.3299554326],[-10633897.568118751,4524422.5971520431],[-10634149.528452609,4524425.5700674225],[-10634402.014976872,4524428.5426019803],[-10634655.034799509,4524431.5156402504],[-10634908.560289508,4524434.4869077541],[-10635162.939441172,4524438.0788899874],[-10635418.535658492,4524441.6807241142],[-10635675.326916702,4524445.2823008243],[-10635933.323327217,4524448.8952459078],[-10635932.528104691,4524704.0934003992],[-10635931.733879594,4524958.6948563866],[-10635930.945256954,4525212.680613786],[-10635930.157431778,4525466.1131859925],[-10636180.008274056,4525465.6697368314],[-10636430.181477997,4525465.2192087844],[-10636680.696064904,4525464.7543980926],[-10636931.552134927,4525464.2820028979],[-10637184.899800587,4525463.7998640258],[-10637429.950056221,4525463.3287615767],[-10637436.190958748,4525463.316471613],[-10637438.312092807,4525716.8202174399],[-10637440.431123786,4525970.2139647929],[-10637442.53974135,4526223.3335261038],[-10637444.645653188,4526476.0237980736],[-10637436.302992608,4526476.0534149846],[-10637434.485102037,4526728.7838189956],[-10637432.666409573,4526981.3558924785],[-10637430.860130969,4527233.9202946071],[-10637429.051150396,4527486.6628397489],[-10637179.956066538,4527487.7001908589],[-10636932.97785777,4527488.7219839739],[-10636683.397929827,4527489.7431577919],[-10636434.188918008,4527490.7554815561],[-10636182.849415803,4527491.7785601625],[-10635929.970586451,4527492.8016463267],[-10635676.723824555,4527490.620503081],[-10635432.299862469,4527488.5117472261],[-10635424.555272421,4527488.4385966714],[-10635173.177607739,4527486.2700858125],[-10634926.723868031,4527484.1382088223],[-10634922.874106169,4527736.8803349156],[-10634919.032950427,4527989.0512588993],[-10634915.196596604,4528240.6621903433],[-10634911.368248252,4528491.7031019405],[-10634907.553812306,4528742.2279338939],[-10634903.745680582,4528992.2903788779],[-10634899.958868001,4529241.5799019309],[-10634896.182763278,4529490.1972116046],[-10634903.040057054,4529490.1854211194],[-10634903.694865987,4529745.6576960124],[-10634904.348272881,4530001.0611188803],[-10634904.998473905,4530256.1027277345],[-10634905.648773415,4530510.8879480809],[-10634906.306180721,4530765.6501773205],[-10634906.963887259,4531020.2412176365],[-10634907.61248247,4531274.6585276192],[-10634908.261477022,4531528.9050030764],[-10634901.043679029,4531528.9271659171],[-10634901.508582802,4531785.7351435758],[-10634901.974087687,4532042.6202566372],[-10634902.43348627,4532299.6014803816],[-10634902.894887406,4532556.6389851915],[-10634902.583222056,4532813.8218130842],[-10634902.272159001,4533071.2740405938],[-10634901.954086673,4533328.5035723429],[-10634901.636214174,4533585.6750668474],[-10634899.021854775,4533841.1657721587],[-10634896.407194164,4534096.5185402967],[-10634893.791031033,4534351.7394326646],[-10634891.176168552,4534606.8317284165],[-10634888.565911783,4534862.0153911123],[-10634885.951952869,4535117.5282419613],[-10634883.340395743,4535372.8982068431],[-10634880.728037709,4535628.2697420307],[-10634885.547344463,4535628.2552994387],[-10634883.340764409,4535887.3242849456],[-10634881.140986703,4536145.5386808421],[-10634878.947710484,4536402.8144194186],[-10634876.761736989,4536659.206339132],[-10634875.156309685,4536914.7701672157],[-10634873.55698362,4537169.4275283702],[-10634871.957651908,4537423.1741809947],[-10634870.3619186,4537676.0100587001],[-10634617.129445,4537679.9193430347],[-10634363.479402984,4537683.8305284278],[-10634109.387665452,4537687.7408313742],[-10633854.868748708,4537691.6521497276],[-10633853.92725433,4537944.7346752891],[-10633853.002050085,4538193.2619069265],[-10633852.976551346,4538198.1023511644],[-10633852.028753351,4538451.7548185792],[-10633851.104443727,4538699.2578947125],[-10633851.070745625,4538705.6917188475],[-10633850.109959099,4538963.5739798229],[-10633849.198145602,4539208.1874909401],[-10633849.163275197,4539219.323345976],[-10633848.202066535,4539473.7062994502],[-10633847.254250068,4539724.3944200734],[-10633848.033971017,4539974.9854185032],[-10633848.827433357,4540229.7935643876],[-10633849.61818593,4540483.517353056],[-10633850.392488828,4540732.1895211888],[-10633850.419354491,4540737.9472228754],[-10633851.197679475,4540989.4742584098],[-10633851.960154951,4541235.8647734029],[-10633851.969292123,4541240.2280643098],[-10633852.742902139,4541490.1998512112],[-10633853.513103437,4541739.3853859063],[-10634107.488823181,4541739.7302915193],[-10634358.242328081,4541740.0652106022],[-10634361.278734487,4541740.0768434042],[-10634614.872025084,4541740.4026374239],[-10634864.222255636,4541740.7180693317],[-10634868.270396974,4541740.7208376117],[-10635121.485062754,4541741.0367601709],[-10635371.472107645,4541741.3442151546],[-10635374.508413935,4541741.3552150764],[-10635627.35206344,4541741.6625319142],[-10635879.990983227,4541741.9618752208],[-10635875.820881147,4541998.5764099928],[-10635871.643072745,4542255.5708117429],[-10635867.468665274,4542512.0973571688],[-10635863.296559285,4542768.4471684983],[-10635859.130759275,4543024.619093447],[-10635854.970063884,4543280.6129924031],[-10635850.806263758,4543536.4049251322],[-10635846.645966513,4543792.0270338142],[-10635849.688074997,4544019.3282252671],[-10635849.23365251,4544049.8262907667],[-10635847.360021753,4544175.438759977],[-10635843.24356172,4544308.8570466554],[-10635835.288104294,4544565.9548821663],[-10635827.352264926,4544822.4124364778],[-10635828.453065027,4545079.1654663449],[-10635829.547050765,4545334.5414791992],[-10635830.637932213,4545589.737867591],[-10635831.710974589,4545841.0532760788],[-10635834.011706378,4546094.7394555947],[-10635836.347998574,4546352.5483178897],[-10635836.478716118,4546366.9250040948],[-10635838.699109845,4546610.8131254045],[-10635841.066047313,4546870.7505493276],[-10635841.224010596,4546888.1997523597],[-10635843.441000661,4547132.0451184837],[-10635845.820661785,4547393.804453277],[-10635845.976222597,4547411.2944266871],[-10635848.196020611,4547656.0375810675],[-10635850.579390949,4547918.7403581515],[-10636110.138189193,4547907.7240373315],[-10636364.876576522,4547896.9071023911],[-10636368.077869218,4547896.7634635111],[-10636624.314637071,4547885.8786480604],[-10636878.874521945,4547875.0584451379],[-10636899.450613791,4547874.1771032624],[-10637135.050975621,4547874.929645529],[-10637391.092983283,4547875.7413708996],[-10637647.026669446,4547876.5556298243],[-10637902.86534901,4547877.3634298695],[-10637901.706931837,4548137.7748251623],[-10637900.559813939,4548395.6881744284],[-10637900.545318102,4548399.5360821467],[-10637899.417690039,4548651.4438871434],[-10637898.283763241,4548904.9469319712],[-10637898.253767051,4548912.0061245058],[-10638151.499900116,4548915.5765554849],[-10638404.416663675,4548919.1348290583],[-10638657.032389494,4548922.6747384612],[-10638909.34867942,4548926.204263608],[-10639161.76668386,4548929.7315092618],[-10639414.717987357,4548933.2590067601],[-10639668.213802563,4548936.7970159827],[-10639922.25112603,4548940.3342636898],[-10639920.766719833,4549197.1510938145],[-10639919.281911511,4549453.7057153424],[-10639917.802407369,4549709.9798677322],[-10639916.323802771,4549966.0261018844],[-10639915.800185332,4550224.7049896801],[-10639915.278167062,4550482.9362692852],[-10639914.749939142,4550740.7130663758],[-10639914.223610809,4550998.0565046314],[-10639913.706586739,4551254.3270007856],[-10639913.188260984,4551510.5722606052],[-10639912.663327539,4551766.7870876407],[-10639912.137692833,4552022.9320749836],[-10639658.571561472,4552020.8875892442],[-10639403.748017807,4552018.8256249968],[-10639149.571400994,4552016.7630242594],[-10638895.356541395,4552014.6947223404],[-10638893.30496045,4552273.8169939518],[-10638891.256380094,4552532.4765137061],[-10638889.209297422,4552790.4502328523],[-10638887.168117795,4553047.8121025125],[-10638632.844394054,4553046.9887414966],[-10638378.493740106,4553046.1603119923],[-10638124.174020903,4553045.3156627156],[-10637869.860008167,4553044.4653112059],[-10637867.746499447,4553302.0276346495],[-10637865.636592714,4553559.2453151355],[-10637863.529189775,4553816.6934062075],[-10637861.434593324,4554072.6942952387],[-10637972.983733108,4554072.5014600549],[-10638228.297510877,4554072.0571980337],[-10638227.40726983,4554325.2398899356],[-10638226.514027756,4554578.8802999407],[-10638225.619288595,4554833.4001176059],[-10638224.722250825,4555088.6806515446],[-10638224.260302898,4555344.1438769363],[-10638223.795454754,4555600.1886823038],[-10638223.325904733,4555856.8821615074],[-10638222.855456948,4556114.1953361891],[-10638477.858794376,4556115.9219464185],[-10638732.684031731,4556117.6401920868],[-10638987.340179171,4556119.3540025037],[-10639241.817826087,4556121.0589413363],[-10639242.348545693,4556377.1810176279],[-10639242.85597777,4556622.2575003663],[-10639242.878058586,4556632.3357631397],[-10639243.41016897,4556886.5104304897],[-10639243.910663772,4557126.2762870435],[-10639243.934365151,4557139.7267516395],[-10639244.463161221,4557391.9896005886],[-10639244.968768453,4557632.9535713959],[-10639244.984443286,4557643.2509883288],[-10639245.511125989,4557893.5304923765],[-10639246.034599211,4558142.7496932019],[-10639497.228964534,4558147.0201377347],[-10639749.5145573,4558151.3019873844],[-10639756.487298125,4558151.4273301689],[-10640002.882868057,4558155.6174283801],[-10640257.345209373,4558159.9369213684],[-10640256.6804536,4558419.6498242449],[-10640256.018896645,4558678.54816039],[-10640255.354434347,4558937.102377831],[-10640254.691671072,4559195.1713328641],[-10640254.98528005,4559452.6801753156],[-10640255.279085852,4559709.5999596072],[-10640255.567081826,4559965.946111829],[-10640255.854273479,4560221.6996958852],[-10640005.219555238,4560220.0635650055],[-10639755.020026607,4560218.4229935016],[-10639505.750644321,4560216.7783587463],[-10639257.247423938,4560215.1318174005],[-10639259.806315398,4560469.4424128896],[-10639262.371317076,4560724.3180814236],[-10639262.405875927,4560727.9130019611],[-10639264.936622564,4560979.7794083366],[-10639267.510741092,4561235.7663262524],[-10639267.567331504,4561240.5788544277],[-10639270.100080082,4561492.3165392764],[-10639272.684416832,4561749.4369377391],[-10639272.716773551,4561753.0916925026],[-10639273.072666571,4561787.7424279246],[-10639274.162011849,4562007.1459607268],[-10639275.444591025,4562265.4786510263],[-10639020.031398885,4562263.3860975197],[-10638768.748854738,4562261.3221810404],[-10638766.004967311,4562261.3006377984],[-10638512.440856116,4562259.215175393],[-10638259.64661134,4562257.1303424779],[-10638004.558285406,4562255.0154662458],[-10637750.147722248,4562252.8999518193],[-10637494.047157718,4562250.7720193313],[-10637239.594948079,4562248.6521935919],[-10637238.906202754,4562505.2908020336],[-10637238.21645638,4562761.9631474521],[-10637237.536020562,4563018.6708812574],[-10637236.856485678,4563275.3814082071],[-10637236.163736019,4563532.128595979],[-10637235.471086815,4563788.9624249637],[-10637234.787747763,4564045.7508507883],[-10637234.105610326,4564302.6109556826],[-10636978.112780944,4564302.6563024893],[-10636723.619439248,4564302.6951697795],[-10636468.197652539,4564302.731252498],[-10636212.655830685,4564302.7602322493],[-10635957.000981541,4564302.7746246401],[-10635701.235407749,4564302.7841973463],[-10635445.346094662,4564302.7890773136],[-10635189.337747568,4564302.7881228421],[-10634934.088452486,4564302.297636861],[-10634677.766049584,4564301.7978977589],[-10634422.175470438,4564301.3008176805],[-10634166.713135658,4564300.7968866611],[-10633911.393861897,4564300.2840749454],[-10633656.176002311,4564299.7661884334],[-10633401.10380668,4564299.2385332258],[-10633146.156852033,4564298.7040271088],[-10632889.598685063,4564298.4215889797],[-10632632.681514012,4564298.1315420391],[-10632376.208242593,4564297.836418001],[-10632119.921681317,4564297.5343157742],[-10631863.857069876,4564297.2287870264],[-10631607.958144911,4564296.9152653981],[-10631352.279467866,4564296.5981904082],[-10631096.729135267,4564296.2731227949],[-10631096.903098788,4564040.7372771399],[-10631097.074765254,4563786.5789344469],[-10631097.23741675,4563531.2390458714],[-10631097.400066892,4563275.5726046925],[-10631097.56201482,4563019.5654291296],[-10631097.72486265,4562763.2921229266],[-10631097.891612913,4562506.5454632724],[-10631098.059562881,4562249.4013284463]]]},"attributes":{"objectid":4067,"field_kid":"1000146306","approxacre":172678,"field_name":"HUMBOLDT-CHANUTE","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":8116716.7199999997,"maxoilwell":1358,"lastoilpro":7182.4200000000001,"lastoilwel":678,"lastodate":"2-2009","cumm_gas":1684855,"maxgaswell":42,"lastgaspro":2825,"lastgaswel":35,"lastgdate":"2-2009","avgdepth":755.30462963000002,"avgdepthsl":-214.16759259,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146306}},{"geometry":{"rings":[[[-10629780.144596901,4503963.7417302858],[-10629785.344266217,4503707.7355460366],[-10629790.514713323,4503453.1143132597],[-10629795.681755137,4503198.0480300104],[-10629800.846697263,4502943.1467229128],[-10629569.269164121,4502942.9601594238],[-10629541.035109565,4502943.2841551136],[-10629287.951079782,4502946.1716289269],[-10629282.452937745,4502946.2431894746],[-10629066.194917683,4502948.6985751633],[-10629025.456363164,4502948.6534137204],[-10628778.263800904,4502948.3782482725],[-10628769.941451654,4502948.3614958161],[-10628771.154931121,4502691.3725656345],[-10628772.365811348,4502434.8399972422],[-10628773.584902072,4502178.4208889576],[-10628774.804795653,4501922.2193890363],[-10628776.016988907,4501667.1128482064],[-10628777.193298291,4501419.666528184],[-10628777.218382251,4501413.6344280457],[-10628778.410377169,4501161.7710233061],[-10628779.59567672,4500911.5222654454],[-10628798.183001516,4500911.1982115395],[-10629040.898952916,4500906.974303972],[-10629303.225693731,4500902.4029057985],[-10629315.8421326,4500902.173591936],[-10629566.618046926,4500897.7833587527],[-10629831.068904668,4500893.1481928434],[-10629830.72049896,4500639.3314001979],[-10629830.384872586,4500395.1574971844],[-10629830.368295712,4500386.5438813465],[-10629830.020999802,4500134.0393164307],[-10629829.742728936,4499932.9947212124],[-10629829.442289032,4499888.7291452745],[-10629829.387581877,4499882.0591114126],[-10630081.605441893,4499884.7978946473],[-10630334.103719944,4499887.5327738691],[-10630586.816140657,4499890.263243922],[-10630839.69034449,4499892.9895562828],[-10631094.38237414,4499895.732313022],[-10631349.679052472,4499898.4696600894],[-10631605.598830771,4499901.2133093169],[-10631862.134300668,4499903.9560745433],[-10631862.14678897,4499899.5708621098],[-10632115.326371081,4499899.4106697347],[-10632368.293814814,4499899.2444264572],[-10632621.023991877,4499899.0667112013],[-10632873.532019323,4499898.8840797395],[-10632872.738380635,4500153.044624377],[-10632871.942843191,4500407.7902828762],[-10632871.154517179,4500663.1151720583],[-10632870.363591628,4500919.0260168817],[-10632867.676331168,4501174.1513997605],[-10632864.983467672,4501429.8157254364],[-10632862.283399405,4501686.0326516749],[-10632859.576626999,4501942.8112981357],[-10632857.011517003,4502200.1348081054],[-10632854.440904126,4502458.0067532239],[-10632851.872997565,4502716.4232647028],[-10632849.299387917,4502975.3908145651],[-10632845.466082105,4502975.3350885548],[-10632844.81241741,4503232.2529976405],[-10632844.162850507,4503487.9769502161],[-10632843.516379619,4503742.392846968],[-10632842.873105198,4503995.5631496124],[-10632590.380945761,4503994.8892013291],[-10632338.589373022,4503994.2107096137],[-10632086.987413198,4503993.5353701077],[-10631835.709216887,4503992.8558671139],[-10631835.727383438,4503983.6832250915],[-10631582.570467409,4503981.4010910727],[-10631327.962421412,4503979.0965134334],[-10631072.935204431,4503976.7818478635],[-10630817.152424166,4503974.4485428203],[-10630559.672930088,4503971.7940587737],[-10630299.497976238,4503969.1042268965],[-10630040.040035257,4503966.4281520732],[-10629780.144596901,4503963.7417302858]]]},"attributes":{"objectid":3560,"field_kid":"1000150025","approxacre":2243,"field_name":"THAYER SOUTH","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":39866.419999999998,"maxoilwell":8,"lastoilpro":83.340000000000003,"lastoilwel":6,"lastodate":"1-2002","cumm_gas":1324907,"maxgaswell":17,"lastgaspro":4161,"lastgaswel":16,"lastgdate":"2-2009","avgdepth":929.66666667000004,"avgdepthsl":-104.33333333,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150025}},{"geometry":{"rings":[[[-10585707.374288041,4478405.0874557337],[-10585962.638573932,4478404.7229789011],[-10585961.049465152,4478655.0912107965],[-10585959.452574078,4478906.6546660932],[-10585957.839871924,4479158.5397011321],[-10585956.222478149,4479411.0460617645],[-10585954.597792864,4479664.3113261778],[-10585952.969420161,4479918.334416802],[-10585951.353778496,4480173.0995333763],[-10585949.732847512,4480428.6194394687],[-10585698.748273397,4480425.9430008195],[-10585454.524445541,4480423.3321100697],[-10585448.806093559,4480423.2713617831],[-10585199.903304551,4480420.6045223167],[-10584952.059328657,4480417.9437411325],[-10584951.498602174,4480163.7871259041],[-10584950.967821674,4479923.5716448231],[-10584950.952208709,4479910.378313059],[-10584950.414642101,4479657.723665786],[-10584949.917233618,4479423.5007242486],[-10584949.859071737,4479405.8287914963],[-10584949.330045387,4479154.5478050765],[-10584948.830474783,4478917.6682491647],[-10584948.785821453,4478904.1584768184],[-10584948.244621446,4478654.6895558825],[-10584947.70424271,4478406.1349375239],[-10585199.90522032,4478405.7965804199],[-10585453.120059077,4478405.4499360053],[-10585466.57266788,4478405.424614802],[-10585707.374288041,4478405.0874557337]]]},"attributes":{"objectid":3626,"field_kid":"1000149410","approxacre":314,"field_name":"ZWAHLEN","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":81948,"maxgaswell":10,"lastgaspro":4,"lastgaswel":6,"lastgdate":"10-2007","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149410}},{"geometry":{"rings":[[[-10637682.145767085,4781911.659128095],[-10637917.531612659,4781904.8491576435],[-10637914.870831033,4782167.5795865133],[-10637912.212251216,4782430.092165567],[-10637909.555072365,4782692.407743644],[-10637906.89979497,4782954.5047909897],[-10637904.255728133,4783215.9966690382],[-10637901.615564728,4783477.1911582891],[-10637898.969894016,4783738.1048264997],[-10637896.326925337,4783998.7182089724],[-10637889.085513698,4783998.9526962601],[-10637656.735222874,4784006.2253253274],[-10637416.133161165,4784013.7497075144],[-10637411.230233563,4784013.8905663062],[-10637174.493108422,4784021.2752833972],[-10636931.829781711,4784028.8396421392],[-10636674.771712037,4784031.8334018895],[-10636418.875476191,4784034.8082168708],[-10636162.243495937,4784037.7752703093],[-10635905.51450452,4784040.7383090314],[-10635909.209400076,4783778.0933906352],[-10635912.898891004,4783515.7566911355],[-10635916.593289405,4783253.7861212408],[-10635920.281982956,4782992.1508063283],[-10635924.859999379,4782730.882844992],[-10635929.431710593,4782470.0115144486],[-10635933.989507431,4782209.4384209653],[-10635938.540498229,4781949.2028074712],[-10636196.229060279,4781944.9677813277],[-10636451.340864118,4781940.7694787839],[-10636454.004021803,4781940.7274432238],[-10636711.85467053,4781936.4852923499],[-10636969.791718736,4781932.2353672851],[-10637208.275619885,4781925.3513257122],[-10637445.726635616,4781918.4925793381],[-10637682.145767085,4781911.659128095]]]},"attributes":{"objectid":3652,"field_kid":"1000146339","approxacre":606,"field_name":"WORNER","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":2370.6666666699998,"avgdepthsl":1364,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146339}},{"geometry":{"rings":[[[-10630797.181417346,4517491.0753817819],[-10630796.17428364,4517236.8191319387],[-10631040.06988281,4517244.9144582581],[-10631045.181019399,4517245.0120463669],[-10631289.78593448,4517249.6969936593],[-10631293.48498586,4517249.7702163821],[-10631541.120001519,4517254.5117232623],[-10631660.500880182,4517256.7935999734],[-10631787.957636906,4517261.5946121328],[-10632042.804426858,4517263.3723961236],[-10632290.717836104,4517265.0957911331],[-10632297.447388016,4517265.1403316576],[-10632551.882916301,4517266.8957668487],[-10632797.061556438,4517268.581924526],[-10632797.284186723,4517007.2759349728],[-10632797.507816214,4516745.667350118],[-10632797.729141258,4516483.7642739341],[-10632797.950564552,4516221.5678648269],[-10632542.628031937,4516218.9469289118],[-10632288.208913097,4516216.3276302386],[-10632034.676589441,4516213.7175449962],[-10631782.02955924,4516211.1111173918],[-10631781.936447185,4516193.7957074456],[-10631532.85020853,4516190.5124687264],[-10631283.536914997,4516187.2193834772],[-10631034.297959164,4516183.9298698623],[-10630785.037869347,4516180.6303744651],[-10630783.455357589,4515922.1327744983],[-10630781.907521784,4515669.5258613359],[-10630781.883274792,4515666.4059331333],[-10630780.332436604,4515413.9939485015],[-10630778.79202038,4515163.2372021955],[-10631028.275805797,4515164.15515499],[-10631040.329327887,4515164.19833038],[-10631274.160210742,4515161.0671505975],[-10631277.68496586,4515161.0151136434],[-10631526.969889719,4515157.6659315061],[-10631776.056891488,4515154.3151101144],[-10632030.404739441,4515157.8078165278],[-10632285.653498394,4515161.3064531982],[-10632292.894124359,4515161.4059023159],[-10632541.797261715,4515164.8100101268],[-10632798.832125038,4515168.3203811878],[-10632808.466337262,4515168.4523910349],[-10633056.736363972,4515171.8352938918],[-10633315.532203445,4515175.354116844],[-10633322.77322986,4515175.4544498958],[-10633575.216539994,4515178.8796276972],[-10633835.794979909,4515182.4104376137],[-10633837.057391062,4514922.8327681813],[-10633838.31480057,4514663.9003590783],[-10633839.567108687,4514405.674896867],[-10633840.814415418,4514148.1368876416],[-10633842.053717503,4513891.304585414],[-10633843.28962001,4513635.163294605],[-10633844.526928317,4513379.709051094],[-10633845.761838127,4513124.936881504],[-10634094.227168195,4513124.6609163294],[-10634343.687314631,4513124.3796438007],[-10634594.174313337,4513124.0847324682],[-10634845.688664908,4513123.781862746],[-10635109.688627923,4513123.4618808338],[-10635354.299632441,4513123.1576618077],[-10635364.21265687,4513123.1370297829],[-10635613.559375826,4513122.8231902802],[-10635862.099189231,4513122.5048110383],[-10636099.474782983,4513123.6502709491],[-10636348.655524978,4513124.8470399706],[-10636602.903553728,4513126.0738233682],[-10636844.115953265,4513127.2321375329],[-10636856.481330199,4513127.2829383826],[-10637105.189942207,4513128.4595136279],[-10637339.200659553,4513129.5632109605],[-10637351.487448394,4513129.6306747915],[-10637595.431713523,4513130.7680195477],[-10637836.996007698,4513131.8889679257],[-10638087.082004273,4513139.4078994999],[-10638337.068589168,4513146.9167387448],[-10638586.962670153,4513154.4173790673],[-10638836.768251719,4513161.9089368116],[-10639084.457958337,4513169.3303273441],[-10639333.363829901,4513176.783274373],[-10639581.776748136,4513184.2246163962],[-10639834.903457042,4513191.800752853],[-10639833.41493582,4513445.5586991198],[-10639832.655873081,4513574.8111429373],[-10639832.687169459,4513699.5063417396],[-10639832.697725944,4513821.4811748536],[-10639836.707829872,4513953.1428736094],[-10639844.423234748,4514206.4970620358],[-10639852.12973031,4514459.9787060674],[-10639859.830417946,4514713.2441617604],[-10639867.54061483,4514966.2916458873],[-10639875.244503217,4515219.1212690854],[-10639876.181056758,4515481.6900036773],[-10639877.075788734,4515732.0371664735],[-10639877.108989077,4515742.3742888635],[-10639878.036409216,4516001.1642614566],[-10639878.908271201,4516244.263394908],[-10639878.959212556,4516258.058392087],[-10639879.871292293,4516513.0646226741],[-10639880.734435387,4516754.6849726783],[-10639880.774650643,4516766.1757439068],[-10639881.678397782,4517017.3864409085],[-10639882.575425787,4517266.7045326317],[-10639631.776996771,4517267.8460914772],[-10639380.960347265,4517268.9813364567],[-10639377.813015496,4517268.9875413841],[-10639130.118069019,4517270.1164553864],[-10638879.246357745,4517271.2517008493],[-10638875.049648458,4517271.2668774566],[-10638628.340908479,4517272.3633320034],[-10638377.413834939,4517273.4726903122],[-10638374.146768911,4517273.4963226896],[-10638126.449219313,4517274.5873527108],[-10637875.442956859,4517275.6854725871],[-10637619.345282534,4517277.0292372378],[-10637373.556175718,4517278.3135936782],[-10637364.40951198,4517278.359231039],[-10637110.605411351,4517279.6895976504],[-10636869.946260996,4517280.9434926035],[-10636857.929476613,4517281.0036679516],[-10636606.339660596,4517282.303588965],[-10636364.892125497,4517283.5454917448],[-10636355.884017268,4517283.596053334],[-10636106.536917806,4517284.8717163717],[-10635858.312778428,4517286.1367657799],[-10635860.200668426,4517541.3980783382],[-10635862.051784893,4517791.4265847001],[-10635862.078946587,4517796.4970250102],[-10635863.960026743,4518051.4171761665],[-10635865.790707739,4518299.4251771504],[-10635865.84731276,4518306.1668542204],[-10635867.72068209,4518560.7509724945],[-10635869.55407338,4518809.9542243704],[-10635869.597654361,4518815.1649721079],[-10635871.47252324,4519069.4198291488],[-10635873.348392196,4519323.5122481296],[-10635618.71615795,4519322.9958781349],[-10635370.139118465,4519322.4842755226],[-10635364.477164933,4519322.4733171007],[-10635110.632414289,4519321.9488594178],[-10634863.643556906,4519321.431312032],[-10634857.189914986,4519321.4175791116],[-10634604.141958414,4519320.888822861],[-10634356.17840725,4519320.3650917662],[-10634351.486041784,4519320.3636011267],[-10634099.235379733,4519319.8103373693],[-10633847.385967901,4519319.2530297395],[-10633592.469207559,4519317.6388114216],[-10633336.005411131,4519316.0080555826],[-10633080.538833741,4519314.3849993879],[-10632825.218019862,4519312.7547432855],[-10632570.269824047,4519311.1147599528],[-10632315.539772976,4519309.4711128967],[-10632061.048790067,4519307.8123081978],[-10631806.79207,4519306.1492081648],[-10631556.963600455,4519301.5012303898],[-10631306.520841451,4519296.8349437891],[-10631055.364481539,4519292.1484543337],[-10631040.149906999,4519291.8646007646],[-10630803.486084957,4519283.2525956547],[-10630802.672367252,4519028.439748859],[-10630801.8543352,4518772.1389891254],[-10630801.032894544,4518515.1011297936],[-10630800.210349284,4518257.5512792375],[-10630799.198898755,4518001.3163830955],[-10630798.190254638,4517745.6219555819],[-10630797.181417346,4517491.0753817819]]]},"attributes":{"objectid":3662,"field_kid":"1000150002","approxacre":6073,"field_name":"ALTOONA EAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":15487.66,"maxoilwell":13,"lastoilpro":35.310000000000002,"lastoilwel":2,"lastodate":"11-2008","cumm_gas":2259926,"maxgaswell":13,"lastgaspro":13881,"lastgaswel":13,"lastgdate":"2-2009","avgdepth":868,"avgdepthsl":-97,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150002}},{"geometry":{"rings":[[[-10600950.940541279,4677346.6426438987],[-10600951.109549927,4677102.3110948931],[-10600694.50839014,4677099.7561489297],[-10600437.519986574,4677097.1901752139],[-10600179.966935933,4677094.6081725564],[-10599921.921921512,4677092.0157838315],[-10599663.451119132,4677089.4117262512],[-10599404.515083602,4677086.7940761754],[-10599145.052444581,4677084.1832260629],[-10598885.076216985,4677081.5603226908],[-10598885.192662831,4677067.185626328],[-10598887.43693836,4676831.2183387922],[-10598889.822088024,4676580.5476448294],[-10598889.902188145,4676570.8974818187],[-10598892.199730381,4676328.394202929],[-10598894.569061445,4676078.3074270543],[-10598895.188092954,4675820.9548485596],[-10598895.814135212,4675560.4684434198],[-10598896.420453599,4675301.4525654139],[-10598897.028173668,4675042.3705556383],[-10598897.641400123,4674783.1976718009],[-10598898.254927017,4674523.9363569301],[-10598898.852135254,4674264.625339401],[-10598899.449744022,4674005.2456471501],[-10598900.844866691,4673745.9422890851],[-10598902.235183449,4673487.1184752947],[-10598903.63821519,4673227.8354563434],[-10598905.04134718,4672968.4123598505],[-10598648.026900064,4672971.5858259676],[-10598391.014855722,4672974.753652432],[-10598133.013577685,4672977.9462262923],[-10597874.3324205,4672981.1397010731],[-10597876.435452571,4672721.5220771506],[-10597878.539385796,4672461.7791418806],[-10597880.631906062,4672201.9132122304],[-10597882.724326344,4671941.9177598553],[-10597877.899296677,4671941.9577703113],[-10597877.937463453,4671681.0919010043],[-10597877.976431452,4671419.8864763714],[-10597878.018202184,4671159.2477440899],[-10597878.060172906,4670898.89149627],[-10597878.108951759,4670638.1633934658],[-10597878.158531493,4670377.4794995319],[-10597878.21201512,4670117.4762803279],[-10597878.267700706,4669858.1517613363],[-10597711.359313169,4669861.0435975362],[-10597620.298852623,4669862.061861421],[-10597361.646822464,4669864.9519220218],[-10597103.764472457,4669870.1494152183],[-10596871.973925374,4669874.8141907183],[-10596846.247840969,4669876.0835876809],[-10596587.205563648,4669878.9462274099],[-10596329.701349042,4669881.7847690172],[-10596071.108186463,4669884.6286976729],[-10595812.309888804,4669887.4692957001],[-10595553.310460651,4669890.3115614168],[-10595293.389976932,4669893.157547594],[-10595109.023482407,4669895.1711488971],[-10595078.647668578,4669897.2068472626],[-10595033.430347018,4669897.6188972192],[-10594773.143644014,4669899.9833796108],[-10594774.764616366,4669641.2759771338],[-10594776.379481168,4669383.2442301633],[-10594777.993145173,4669124.5337664969],[-10594779.60741006,4668865.6004662355],[-10594780.294988159,4668757.023865384],[-10594775.668210523,4668606.4828058183],[-10594774.832675491,4668579.3109183768],[-10594778.286826937,4668346.9818865862],[-10594781.988775408,4668098.9683915637],[-10594781.97737189,4668087.4565453548],[-10594781.741217038,4667827.4228251511],[-10594781.56673317,4667567.0177282691],[-10594781.392950436,4667306.2269325936],[-10594781.372434326,4667297.3081786558],[-10594781.216064798,4667044.6519928724],[-10594781.053596225,4666782.4350582613],[-10594781.055708591,4666770.4506381908],[-10594780.893030351,4666519.5909119621],[-10594780.722854087,4666256.0068593165],[-10594780.703239042,4666247.0487931408],[-10594780.541665589,4665991.9612204321],[-10594780.37269217,4665726.6201604195],[-10594776.411566913,4665468.1691919714],[-10594772.452043517,4665209.6705698268],[-10594768.498727964,4664950.283444766],[-10594764.534600517,4664690.2867523963],[-10594760.550851233,4664429.4842989231],[-10594756.556790669,4664168.0231942125],[-10594752.569638591,4663905.8604512122],[-10594752.523588335,4663902.8260572394],[-10594752.534715045,4663765.5179136703],[-10594750.198439112,4663643.0172542296],[-10595009.798765138,4663645.1159928562],[-10595268.829938855,4663647.2051266814],[-10595527.899756853,4663649.2992559951],[-10595786.858747829,4663651.3853165228],[-10596045.953694632,4663653.4475533385],[-10596304.968950098,4663655.5012089591],[-10596563.955772961,4663657.5654959176],[-10596822.837475348,4663659.6244038269],[-10596824.969637038,4663402.2255412256],[-10596827.066755256,4663148.7596462816],[-10596827.115214041,4663144.9301131703],[-10596829.242670158,4662887.7769184783],[-10596831.328374069,4662635.7866090517],[-10596831.375532387,4662630.7463513408],[-10596833.476758728,4662373.3016680656],[-10596835.538235418,4662120.6998459008],[-10596835.565570472,4662116.30362543],[-10596837.674705189,4661859.6958423797],[-10596839.781637052,4661603.5004436271],[-10596840.929973014,4661344.0539888814],[-10596842.080411602,4661084.3676145133],[-10596843.226145018,4660824.4317350499],[-10596844.373480488,4660564.2536680046],[-10596845.503495649,4660304.6297276942],[-10596846.63511258,4660045.0913763894],[-10596847.781846799,4659785.6141525935],[-10596848.927780055,4659526.1983076567],[-10597106.368239267,4659528.3894241871],[-10597364.368740354,4659530.5793878296],[-10597370.190012274,4659530.6143312845],[-10597622.949906968,4659532.7486095317],[-10597882.139671087,4659534.9319141684],[-10597889.885949302,4659534.9905405631],[-10598141.900689956,4659537.0914040934],[-10598402.237668945,4659539.2535820706],[-10598408.058940865,4659539.288525545],[-10598663.15871734,4659541.4144790787],[-10598924.625090739,4659543.5879227323],[-10598921.200641174,4659803.4604627332],[-10598917.767180644,4660064.0981095405],[-10598914.34583454,4660324.1256154878],[-10598910.928793533,4660583.9914789554],[-10598907.510251358,4660843.2455949597],[-10598904.090107225,4661102.6617376776],[-10598900.662053918,4661362.2306995364],[-10598897.232398652,4661621.9619686175],[-10599155.606624838,4661622.7154876459],[-10599414.23744511,4661623.4632435348],[-10599418.052417504,4661623.4710478615],[-10599511.642582972,4661623.1403496861],[-10599673.10854244,4661622.281279414],[-10599932.139923664,4661620.8957016021],[-10599937.121132735,4661620.8618845809],[-10600191.365227144,4661619.5107640075],[-10600450.811583985,4661618.1269787923],[-10600454.468074786,4661618.087401662],[-10600710.421628479,4661616.6954276189],[-10600970.18815231,4661615.2737369752],[-10601237.753515106,4661613.1995724449],[-10601504.667130927,4661611.1229766021],[-10601770.914783509,4661609.0303752646],[-10602036.515394513,4661606.9367512614],[-10602301.736470524,4661604.852092647],[-10602566.092555167,4661602.766795963],[-10602829.596863586,4661600.6730495971],[-10603092.255002217,4661598.5773845343],[-10603210.104474727,4661596.3164118249],[-10603350.740236824,4661596.3468510136],[-10603602.043755129,4661596.3969429173],[-10603608.833250079,4661596.3802439794],[-10603866.527505545,4661596.3896930208],[-10604013.746225474,4661596.3926779227],[-10604114.197852848,4661596.2451634659],[-10604123.916811062,4661596.2445777562],[-10604381.49203027,4661595.8706205618],[-10604628.85832876,4661595.5044240663],[-10604637.714796793,4661595.4745194828],[-10604892.79495151,4661595.0881595118],[-10605146.010165142,4661594.6987402532],[-10605402.028596839,4661594.558757728],[-10605660.17206829,4661594.4128684532],[-10605672.38108531,4661594.4116236297],[-10605919.788931321,4661594.274011259],[-10606181.100339865,4661594.1214390015],[-10606195.39945652,4661594.106988349],[-10606442.258572573,4661593.9611843899],[-10606704.359487567,4661593.8000262603],[-10606715.082598651,4661593.788163811],[-10606967.400281683,4661593.607486696],[-10607231.394570509,4661593.4116104105],[-10607488.248161402,4661593.0724907108],[-10607745.204069803,4661592.7258147998],[-10608002.189912591,4661592.3770897482],[-10608259.214900354,4661592.0206809035],[-10608516.33029194,4661591.66311887],[-10608773.526476311,4661591.2983849719],[-10609030.768213004,4661590.9301931625],[-10609287.998236287,4661590.5562388329],[-10609288.472454406,4661850.0339205014],[-10609288.949173246,4662110.808311386],[-10609289.425092587,4662370.708370652],[-10609289.901212342,4662630.4840180418],[-10609290.377532564,4662890.1036097119],[-10609290.852751805,4663149.5407498246],[-10609291.32977332,4663408.8387160227],[-10609291.806795144,4663667.9372981312],[-10609550.840025442,4663666.0478764297],[-10609810.296741962,4663664.1492298068],[-10610069.918848462,4663662.2421287289],[-10610329.791242385,4663660.3256759709],[-10610589.950065237,4663658.3915457744],[-10610849.808543475,4663656.4517825479],[-10611109.224614007,4663654.5190676954],[-10611368.237521917,4663652.5811048467],[-10611368.943034604,4663914.6369868126],[-10611369.64804613,4664176.9852280896],[-10611369.667560186,4664181.382458074],[-10611370.349553054,4664439.6249546483],[-10611371.044952476,4664702.5036691502],[-10611371.051949102,4664708.5156655656],[-10611371.743955201,4664965.8085451573],[-10611372.400444405,4665210.5006903624],[-10611372.238622963,4665229.3338822657],[-10611372.191360001,4665233.9308953201],[-10611370.020877313,4665493.1777188983],[-10611367.808036683,4665757.4220498484],[-10611366.293910159,4666015.264950633],[-10611364.771170866,4666274.6880183052],[-10611363.257543392,4666533.4459359152],[-10611361.744116144,4666792.2639606521],[-10611360.229287257,4667051.1572161634],[-10611358.750009861,4667304.4599258788],[-10611358.709452622,4667310.1067450494],[-10611356.442961274,4667569.1329305554],[-10611354.17346623,4667828.3724946333],[-10611095.356721055,4667827.3747641034],[-10610838.834608505,4667826.378297382],[-10610580.441549307,4667825.3823576765],[-10610321.586259734,4667824.3788615717],[-10610063.567429805,4667823.3635705458],[-10609805.322740685,4667822.3428996243],[-10609547.882073976,4667821.3232476972],[-10609290.908843517,4667820.2991074901],[-10609035.198360099,4667820.3128630603],[-10608778.616376802,4667820.3172713779],[-10608521.154884459,4667820.2997751199],[-10608262.809878444,4667820.2757506995],[-10608004.875643721,4667820.2498010704],[-10607746.096339431,4667820.218604343],[-10607488.395973049,4667820.1762514478],[-10607229.184072454,4667820.1266064011],[-10607230.752510214,4668080.2698934367],[-10607230.863712238,4668098.6495046839],[-10607228.334983652,4668334.1450580275],[-10607228.27680923,4668339.6721205898],[-10607225.500564501,4668598.4367448818],[-10607222.802219199,4668850.0943470262],[-10607222.732430112,4668856.5884484174],[-10607219.95578647,4669114.5067732995],[-10607217.228906354,4669367.9233404649],[-10607217.186051084,4669372.3215237856],[-10607214.418718759,4669630.0474304818],[-10607211.65068589,4669887.7169118505],[-10607214.745763186,4669940.2857845323],[-10607212.940904092,4670148.3424662407],[-10607210.668734368,4670410.2294724118],[-10607208.40788104,4670669.7693101848],[-10607206.156440182,4670928.2133059315],[-10607206.126900762,4670932.2073827377],[-10607203.893783092,4671189.1905008769],[-10607201.623316683,4671450.5418628408],[-10607201.605592161,4671453.5679846667],[-10607199.349946622,4671712.238707114],[-10607197.065663677,4671974.3087491468],[-10606938.707673427,4671974.6190529559],[-10606684.863159351,4671974.9167591762],[-10606681.003633181,4671974.9111489048],[-10606423.914297892,4671975.2208019244],[-10606172.056562321,4671975.5188772744],[-10606167.492227849,4671975.5295524439],[-10605911.186090793,4671975.8272778485],[-10605658.606026897,4671976.1136936853],[-10605655.268899808,4671976.1257693814],[-10605399.777597286,4671976.3979789307],[-10605144.594047725,4671976.664033046],[-10605142.325952755,4672235.6069648415],[-10605140.057657599,4672494.6474817749],[-10605137.795669705,4672753.7867451031],[-10605135.529877497,4673013.0218138909],[-10605133.270092739,4673271.900003951],[-10605131.011309545,4673530.5339832241],[-10605128.747120602,4673788.9105275087],[-10605126.484233554,4674047.0633377666],[-10604868.579027312,4674047.9349075081],[-10604614.519130044,4674048.7875997033],[-10604610.981574005,4674048.7919866797],[-10604353.67205085,4674049.6707319552],[-10604101.326319091,4674050.5270008966],[-10604096.66157065,4674050.534473856],[-10603839.936317544,4674051.3798789065],[-10603587.069188105,4674052.2056369893],[-10603583.529930109,4674052.2086136229],[-10603327.398057478,4674053.0433723703],[-10603209.544630511,4674053.4241947699],[-10603071.534570018,4674052.3194719367],[-10603070.231944477,4674311.6182899913],[-10603068.931821955,4674570.7577765966],[-10603067.637606492,4674829.5830245363],[-10603066.343191028,4675088.1733829798],[-10603065.045271553,4675346.7688825494],[-10603063.749054177,4675605.2105132742],[-10603062.460045218,4675863.4954423197],[-10603061.233619066,4676109.4343863111],[-10603062.018107153,4676121.6171144061],[-10603060.722302215,4676366.7660137592],[-10603059.461843859,4676605.1468053255],[-10603059.437109936,4676611.3645958267],[-10603058.136500463,4676855.4534764551],[-10603057.916911963,4676896.526495696],[-10603056.764517335,4677090.4707101742],[-10603056.704841269,4677099.0314653106],[-10603055.244848853,4677343.4676588168],[-10603053.84263118,4677578.3964764075],[-10603053.799374398,4677586.4320350178],[-10603052.354401244,4677828.6055609137],[-10603050.923546737,4678068.042269201],[-10602786.960746571,4678072.3778064987],[-10602782.239936538,4678072.4555543847],[-10602523.498620186,4678076.7057762519],[-10602266.265832625,4678080.9213624038],[-10602260.478300238,4678080.9049679451],[-10601997.833114605,4678080.1506799124],[-10601752.689585473,4678079.4639166472],[-10601735.576273987,4678079.4166562269],[-10601473.596150478,4678078.6885316297],[-10601238.910806203,4678078.0136545748],[-10601211.917272203,4678077.9377028458],[-10600950.425708583,4678077.1932865698],[-10600950.598321309,4677832.8949060338],[-10600950.770031277,4677590.5689731771],[-10600950.940541279,4677346.6426438987]]]},"attributes":{"objectid":3827,"field_kid":"1000148264","approxacre":25753,"field_name":"OTTAWA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":96475.419999999998,"maxoilwell":36,"lastoilpro":78.319999999999993,"lastoilwel":12,"lastodate":"2-2009","cumm_gas":17541,"maxgaswell":5,"lastgaspro":743,"lastgaswel":4,"lastgdate":"10-1991","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000148264}},{"geometry":{"rings":[[[-10647379.979556344,4563591.9726023125],[-10647380.75532463,4563336.4644163726],[-10647125.504961839,4563334.3798035532],[-10646870.276624,4563332.289863538],[-10646614.666156249,4563330.1891448041],[-10646358.803204499,4563328.0794222848],[-10646102.979597228,4563325.9695729362],[-10645846.912315881,4563323.8518613288],[-10645591.01963119,4563321.7295825845],[-10645335.162586778,4563319.6022302536],[-10645335.18527909,4563314.6313327113],[-10645081.043472763,4563313.618648286],[-10644827.168266511,4563312.5991127407],[-10644573.353228072,4563311.582621011],[-10644319.667935701,4563310.5587716913],[-10644320.60152233,4563054.3807211556],[-10644321.532906469,4562798.2223065402],[-10644322.467689928,4562541.3886163998],[-10644323.396475831,4562285.9916469222],[-10644577.393361203,4562285.5883557154],[-10644831.524697749,4562285.1768198451],[-10644955.618922744,4562284.9846415855],[-10645085.843057413,4562286.6803912828],[-10645340.423424095,4562289.9913928416],[-10645343.357502785,4562032.3445316833],[-10645346.140899781,4561787.8810161492],[-10645346.153827824,4561774.9450234845],[-10645346.407595795,4561518.0943136336],[-10645346.661367347,4561261.789047922],[-10645346.91003176,4561005.2845414858],[-10645347.160198985,4560748.9585747654],[-10645347.419173764,4560492.2895793309],[-10645347.677746911,4560235.4543444263],[-10645349.560253903,4559979.7294969596],[-10645351.416754954,4559727.520306618],[-10645351.447668495,4559724.3475887114],[-10645353.32437305,4559469.2985776486],[-10645355.165070489,4559219.2718014084],[-10645355.199277578,4559214.5814248016],[-10645357.07258046,4558959.9202154242],[-10645358.919776883,4558708.7132824892],[-10645358.952391928,4558705.4807796413],[-10645360.825597279,4558451.2709615789],[-10645362.700005252,4558197.2825036524],[-10645108.278231394,4558197.1333765555],[-10644955.692062279,4558197.0395640759],[-10644854.469242707,4558196.3986560572],[-10644600.525096303,4558194.7747121835],[-10644346.643220013,4558193.1441756031],[-10644346.7082173,4557935.4686544482],[-10644346.772417853,4557678.4395930432],[-10644346.83521536,4557421.1925052702],[-10644346.896611731,4557164.0201096646],[-10644347.190673269,4556907.4108161842],[-10644347.485434851,4556650.6973216087],[-10644347.764974631,4556393.273484041],[-10644348.045522954,4556137.0002221903],[-10644602.830306085,4556136.9431615891],[-10644857.79228835,4556136.8796355901],[-10644955.676812408,4556136.8465160234],[-10645112.981938982,4556138.6938327821],[-10645368.470333498,4556141.6891167583],[-10645624.655205501,4556143.8463037582],[-10645880.493788403,4556145.993479454],[-10646135.997394966,4556148.1372349616],[-10646391.165224247,4556150.2719931304],[-10646391.191526778,4556407.8023008797],[-10646391.217025818,4556664.9621304534],[-10646391.243923858,4556921.7547502872],[-10646391.271920433,4557178.1609916054],[-10646390.882845487,4557434.192237542],[-10646390.494268557,4557689.8658259306],[-10646390.107791407,4557945.1757720429],[-10646389.722212661,4558200.1192600373],[-10646646.151547769,4558200.8111140737],[-10646902.447332721,4558201.4952353975],[-10647158.600757632,4558202.1746667502],[-10647414.61792936,4558202.8482670793],[-10647413.276323872,4558457.7639406454],[-10647411.932718033,4558712.9717657026],[-10647410.595020637,4558968.4581975341],[-10647409.255022408,4559224.2183119897],[-10647407.908117391,4559480.1404237989],[-10647406.560011167,4559736.1068771901],[-10647405.209303813,4559992.3517489666],[-10647403.859794835,4560248.2013529902],[-10647401.347181657,4560504.6554104714],[-10647398.827265937,4560761.951093425],[-10647398.786449792,4560766.1628262298],[-10647396.299442187,4561019.4107764456],[-10647393.768217107,4561277.2638820112],[-10647393.716596417,4561282.5531263985],[-10647651.030381143,4561284.326432934],[-10647907.869031457,4561286.0903582443],[-10648164.316742022,4561287.8372928062],[-10648420.351187773,4561289.5749725457],[-10648418.793899536,4561546.3640058339],[-10648417.239810642,4561802.5926169688],[-10648415.695228118,4562058.2527745413],[-10648414.154045071,4562313.3397440594],[-10648409.124485943,4562313.335844581],[-10648407.980859082,4562569.7013253542],[-10648406.837732209,4562826.0094623454],[-10648405.6892986,4563082.2333617918],[-10648404.541365039,4563338.4077720167],[-10648403.998010855,4563594.4629211025],[-10648403.452662809,4563851.6874473523],[-10648402.909514526,4564108.5517465007],[-10648402.366762787,4564364.8915163763],[-10648146.350796066,4564363.7677819636],[-10647890.229811205,4564362.6378324702],[-10647816.479098881,4564362.3186542308],[-10647653.732298195,4564359.3395689493],[-10647634.021912694,4564359.267394132],[-10647377.634729883,4564358.3293762328],[-10647378.421505442,4564102.0471941149],[-10647379.203887874,4563847.4544745758],[-10647379.979556344,4563591.9726023125]]]},"attributes":{"objectid":3830,"field_kid":"1000152657","approxacre":2877,"field_name":"OWL CREEK SOUTHEAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":45454.290000000001,"maxoilwell":14,"lastoilpro":82.25,"lastoilwel":3,"lastodate":"1-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000152657}},{"geometry":{"rings":[[[-10636133.914442409,4594082.0899659069],[-10636136.167656129,4593825.8649026034],[-10636138.415162791,4593570.2617706666],[-10636140.661367361,4593315.2936263569],[-10636142.902765879,4593060.9614402708],[-10636136.960145695,4593060.9642811688],[-10636139.260211175,4592805.7804957069],[-10636141.562178679,4592550.4721204229],[-10636143.868751233,4592295.0745250825],[-10636146.176625105,4592039.5847907672],[-10636402.016592164,4592040.1429683128],[-10636658.226877987,4592040.6956739277],[-10636914.798272146,4592041.2423988841],[-10637171.731475448,4592041.7840335555],[-10637171.78503806,4592037.2797319377],[-10637174.788349748,4591782.2272517374],[-10637177.746908823,4591531.0038002972],[-10637177.786054606,4591527.6417345675],[-10637180.773447327,4591273.5082653221],[-10637183.755133117,4591019.8297357159],[-10637438.714056436,4591020.4310749872],[-10637693.635137035,4591021.0251652924],[-10637948.50035454,4591021.610353413],[-10638203.317217436,4591022.1880382802],[-10638458.111955382,4591022.7582197106],[-10638712.857738035,4591023.3214066159],[-10638967.549459632,4591023.8859929666],[-10639222.160389945,4591024.4424404008],[-10639219.308545567,4591280.547054152],[-10639216.436177576,4591538.3072486883],[-10639213.590539603,4591795.3198834453],[-10639210.744901355,4592052.3988149697],[-10639207.88604789,4592309.5490090819],[-10639205.026493363,4592566.7553343037],[-10639202.163134255,4592824.0232646838],[-10639199.299774874,4593081.3571299156],[-10639197.792648945,4593339.0946664987],[-10639196.28642391,4593596.647301578],[-10639194.790009845,4593854.0267252345],[-10639193.294396555,4594111.2419572379],[-10639448.106398404,4594112.4412468802],[-10639702.395108493,4594113.6308717662],[-10639956.12929151,4594114.8147758888],[-10640209.321761934,4594115.9887609221],[-10640208.906017805,4594372.9088921156],[-10640208.491775349,4594630.0118715921],[-10640208.076932194,4594887.3045834471],[-10640207.661788678,4595144.7813165188],[-10639953.378736792,4595143.1945785088],[-10639698.553972257,4595141.5986838918],[-10639443.1983073,4595139.9866348542],[-10639187.291819388,4595138.3655565241],[-10638932.213668671,4595136.7057944303],[-10638677.049220495,4595135.0382721862],[-10638421.817095909,4595133.3601905555],[-10638166.508585081,4595131.6762571763],[-10637911.545465125,4595129.9843062116],[-10637656.646417808,4595128.2872659341],[-10637401.913058082,4595126.5899704369],[-10637147.303038042,4595124.8882213775],[-10636891.963493491,4595122.028163258],[-10636635.693797005,4595119.1527175233],[-10636379.577073844,4595116.2630218044],[-10636123.248611445,4595113.3645495744],[-10636125.927609354,4594854.5977265136],[-10636128.598897872,4594596.4824125646],[-10636131.2599742,4594338.9742856501],[-10636133.914442409,4594082.0899659069]]]},"attributes":{"objectid":3836,"field_kid":"1000147229","approxacre":1901,"field_name":"PARMELY","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":96571.070000000007,"maxoilwell":28,"lastoilpro":77.359999999999999,"lastoilwel":9,"lastodate":"1-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147229}},{"geometry":{"rings":[[[-10616232.435833547,4490677.0337168947],[-10616240.09769045,4490677.0209705401],[-10616238.385109397,4490940.0594977317],[-10616236.672027111,4491203.0244931066],[-10616234.955540199,4491465.9107863503],[-10616233.239052556,4491728.7182457559],[-10615985.186913103,4491729.3997628773],[-10615735.842898138,4491730.0801291587],[-10615485.534381641,4491730.7616165057],[-10615234.239738882,4491731.4408232942],[-10615234.323553842,4491726.3068200266],[-10615237.412164003,4491515.4073188519],[-10615238.148969732,4491468.622982664],[-10615242.285960898,4491205.7360113934],[-10615242.350474117,4491201.8899213439],[-10615246.434064746,4490942.7689526444],[-10615250.580967283,4490679.726850654],[-10615499.750644308,4490679.057143352],[-10615740.935395459,4490678.4042089852],[-10615747.688613676,4490678.3811215879],[-10615994.479772402,4490677.6990384264],[-10616232.435833547,4490677.0337168947]]]},"attributes":{"objectid":1880,"field_kid":"1000149396","approxacre":161,"field_name":"LADORE SOUTHWEST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":893,"avgdepthsl":-44,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149396}},{"geometry":{"rings":[[[-10585672.567043209,4625328.7378168907],[-10585670.924746523,4625070.2830683896],[-10585669.28264836,4624812.1174465306],[-10585667.641049091,4624554.2377395444],[-10585666.001450418,4624296.6466052821],[-10585683.891338499,4624296.5679967953],[-10585686.460055972,4624039.4816456866],[-10585689.036987968,4623781.557861574],[-10585691.615219688,4623523.9208436487],[-10585694.19435286,4623266.2129632942],[-10585435.794536328,4623267.1806979263],[-10585177.036709838,4623268.1438425109],[-10584917.916568492,4623269.0930837337],[-10584658.438317066,4623270.0374797471],[-10584661.774528986,4623012.0908244783],[-10584665.11194274,4622754.0669468427],[-10584668.434440006,4622495.9419970121],[-10584671.757538535,4622237.7195542241],[-10584930.483116867,4622236.9101497252],[-10585188.851886628,4622236.096155717],[-10585446.85874195,4622235.278975497],[-10585704.50648606,4622234.4566955268],[-10585706.564413713,4621978.1549759125],[-10585708.622643733,4621721.5238988446],[-10585710.677271126,4621464.6479321253],[-10585712.735404132,4621207.5106394086],[-10585715.551807474,4620950.0372884804],[-10585718.370314874,4620692.2923227949],[-10585721.207145115,4620434.2410702538],[-10585724.046179671,4620175.8952877885],[-10585981.486558504,4620176.2687284388],[-10586238.912220534,4620176.6355371103],[-10586496.373823822,4620176.9860201692],[-10586753.861256732,4620177.3307636846],[-10586751.513942171,4619919.0266005397],[-10586749.168128686,4619660.8419154212],[-10586746.832626157,4619402.8116429737],[-10586744.498124,4619144.9221259821],[-10586742.146303164,4618886.8591302317],[-10586739.795283264,4618628.8055359814],[-10586737.462584246,4618370.782510506],[-10586735.130686119,4618112.7770449016],[-10586989.96035314,4618113.4980224213],[-10587244.869010653,4618114.2132611079],[-10587242.96979728,4617857.1383980643],[-10587241.069682188,4617600.1899398277],[-10587238.921181781,4617343.4068963174],[-10587236.773481447,4617086.7763748262],[-10587233.708214534,4616832.8001861125],[-10587230.633541455,4616578.082489267],[-10587485.900490807,4616579.3315933868],[-10587742.696190458,4616580.5814476283],[-10587742.668081505,4616576.744926461],[-10587741.050258286,4616324.1975965472],[-10587739.424333382,4616070.4066645801],[-10587825.926163929,4616071.1193598127],[-10587827.939183889,4615754.6180382604],[-10587829.951602602,4615438.21045224],[-10588088.694030231,4615437.7126530195],[-10588346.713730464,4615437.2086144937],[-10588603.242223494,4615436.699109436],[-10588858.957885947,4615436.1861706227],[-10588858.754861023,4615750.9867930505],[-10588858.555762986,4616062.0700925449],[-10588769.4839812,4616062.8444783036],[-10588770.310401844,4616316.471348417],[-10588771.147513576,4616573.6235158946],[-10588772.004048271,4616830.6646759491],[-10588772.863279741,4617088.7644115249],[-10588773.715810081,4617345.7865525829],[-10588774.569840748,4617603.0484519489],[-10588775.405348858,4617860.5445173075],[-10588776.241155557,4618118.3413296985],[-10588520.188788213,4618117.6658860939],[-10588265.504086832,4618116.9878793117],[-10588010.231412269,4618116.3066903474],[-10587755.006792795,4618115.6179776061],[-10587757.177417433,4618373.4592176229],[-10587759.344940599,4618630.9708924629],[-10587761.509255875,4618889.1920586154],[-10587763.67507077,4619147.7738498421],[-10587765.846995361,4619405.9240625817],[-10587768.020821299,4619664.2235887684],[-10587770.202055063,4619922.6469319556],[-10587772.385890849,4620181.2406544024],[-10587779.225622436,4620181.2777080759],[-10587777.957817223,4620438.0258765975],[-10587776.686303075,4620695.550585825],[-10587775.434913896,4620952.7591603296],[-10587774.183224114,4621210.0133217173],[-10587772.920220356,4621467.4388456466],[-10587771.654311474,4621725.1631785147],[-10587770.372682728,4621983.1976961764],[-10587769.086446965,4622241.52264902],[-10587763.887894221,4622241.4813605212],[-10587762.367590599,4622499.7690419639],[-10587760.848791789,4622757.549211489],[-10587759.324790103,4623014.8203001833],[-10587757.802393403,4623271.5728289606],[-10587756.083873833,4623528.0417693183],[-10587754.368260302,4623784.0639152778],[-10587752.642938554,4624039.6060603457],[-10587750.919521898,4624294.6685515307],[-10588009.354979852,4624295.2840949679],[-10588267.816567795,4624295.8909620168],[-10588526.211980002,4624296.4925983818],[-10588784.79220389,4624297.0891297301],[-10588784.073061183,4624316.9148073616],[-10588782.319317067,4624555.8229024364],[-10588780.458361914,4624809.4168402273],[-10588780.408174859,4624814.3382206559],[-10588778.533475786,4625072.6225670418],[-10588776.703165065,4625324.6632680986],[-10588776.657176306,4625330.6689062668],[-10588518.262852121,4625330.5488456776],[-10588259.794443134,4625330.4213845134],[-10588001.301205713,4625330.2934131427],[-10587742.773128433,4625330.1605930319],[-10587484.219221631,4625330.0179474931],[-10587225.670821162,4625329.8710909383],[-10586967.08627931,4625329.7241070755],[-10586708.487220876,4625329.570487855],[-10586708.51147397,4625325.4128390662],[-10586446.727962472,4625326.2631177511],[-10586186.816895457,4625327.0992181608],[-10585928.756848361,4625327.9244582048],[-10585672.567043209,4625328.7378168907]]]},"attributes":{"objectid":1925,"field_kid":"1000146327","approxacre":2768,"field_name":"GRAVES","status":"Abandoned","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":2413,"maxoilwell":2,"lastoilpro":61,"lastoilwel":2,"lastodate":"9-1988","cumm_gas":14159,"maxgaswell":1,"lastgaspro":140,"lastgaswel":1,"lastgdate":"11-1983","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146327}},{"geometry":{"rings":[[[-10650446.318368169,4476863.7374614868],[-10650445.285322702,4476610.8261894574],[-10650190.973076984,4476610.598080962],[-10649943.005983109,4476610.3695017509],[-10649937.5055834,4476610.3706057183],[-10649684.83879224,4476610.1243912922],[-10649439.700987274,4476609.8782154005],[-10649432.998132188,4476609.8653501142],[-10649181.961878804,4476609.6097094361],[-10648936.75169218,4476609.3539727777],[-10648931.744848762,4476609.3477832405],[-10648682.335428987,4476609.0877480442],[-10648433.744031198,4476608.8210499389],[-10648434.965247,4476354.9921820723],[-10648436.186162537,4476101.1623869222],[-10648437.409681035,4475847.3199664997],[-10648438.631998219,4475593.467562994],[-10648185.044321699,4475590.7204906363],[-10647931.851389961,4475587.9702761369],[-10647679.00795199,4475585.2204411421],[-10647426.530626528,4475582.4696021425],[-10647427.013471875,4475328.7156848898],[-10647427.494215904,4475075.252132155],[-10647427.981468303,4474822.0754012801],[-10647428.466719491,4474569.1893703034],[-10647430.149519183,4474315.816789099],[-10647431.836121675,4474061.9927737918],[-10647433.51714834,4473808.2339485697],[-10647435.198082535,4473554.3679423165],[-10647181.967641275,4473551.8982249675],[-10646928.739001969,4473549.4208373874],[-10646676.017734677,4473546.9352795174],[-10646423.620432617,4473544.447460846],[-10646424.508765722,4473290.3457974996],[-10646425.396197574,4473036.2072539898],[-10646426.266409649,4472782.0103299562],[-10646427.137822701,4472527.7537721703],[-10646427.735123429,4472272.9392696572],[-10646428.332926741,4472018.479851434],[-10646428.335204825,4472014.2435968937],[-10646428.926226953,4471764.3651813613],[-10646429.526436906,4471510.5951087158],[-10646429.53780775,4471503.3326803697],[-10646430.109730475,4471257.2948348708],[-10646430.698631765,4471004.2400300931],[-10646431.290438818,4470751.6213989537],[-10646431.882345021,4470498.8404810121],[-10646430.940320265,4470245.8444789164],[-10646429.999498839,4469993.1973703941],[-10646429.067584988,4469740.1317883711],[-10646428.153118571,4469491.8757208455],[-10646175.228410106,4469491.5161164794],[-10645922.483103899,4469491.1509818621],[-10645669.121402638,4469490.7881071111],[-10645415.37636907,4469490.4185680412],[-10645161.827056196,4469490.0480243135],[-10644907.93265415,4469489.6714449981],[-10644654.518693767,4469489.2794059264],[-10644401.298251573,4469488.8813338559],[-10644401.284383111,4469479.8194067329],[-10644150.200035822,4469477.0631872881],[-10643898.843982069,4469474.2989223199],[-10643647.188390508,4469471.5331485234],[-10643395.163982956,4469468.7558089262],[-10643395.306149984,4469213.6029969966],[-10643395.446425872,4468960.3354762197],[-10643395.590698708,4468705.7808474191],[-10643395.734970238,4468451.0103836516],[-10643647.161599819,4468452.0948886033],[-10643892.548017904,4468453.147565553],[-10643898.358169954,4468453.1793927811],[-10644149.239784885,4468454.2578624003],[-10644399.840482982,4468455.32904064],[-10644400.866759084,4468201.2455659667],[-10644401.818959374,4467965.6436344581],[-10644401.809242774,4467947.5220284956],[-10644401.679895628,4467741.4612582168],[-10644401.355449444,4467693.3785095587],[-10644399.638531044,4467439.1272388548],[-10644652.022354752,4467441.7196563818],[-10644904.862092538,4467444.3084319914],[-10645156.600888738,4467446.8897885764],[-10645407.762533991,4467449.4580725599],[-10645660.303833891,4467451.8309247093],[-10645912.211318946,4467454.1913323067],[-10646163.502709119,4467456.5348964678],[-10646414.179205794,4467458.8672729777],[-10646411.62665811,4467204.8043797063],[-10646409.076214502,4466951.0481017623],[-10646406.506844781,4466696.4776467104],[-10646403.952900166,4466443.2519930983],[-10646402.934187364,4466190.1269265888],[-10646401.908156496,4465935.3130755825],[-10646400.887633638,4465680.8179021096],[-10646399.864806116,4465425.974882789],[-10646398.835874328,4465171.5925190495],[-10646397.806742191,4464917.1976907216],[-10646396.779411877,4464662.7736870432],[-10646395.751580806,4464408.3256615624],[-10646649.125941783,4464411.3273740839],[-10646902.395384355,4464414.3212973299],[-10647155.534379713,4464417.3031591913],[-10647408.547432957,4464420.2766034519],[-10647661.405711602,4464423.2481637131],[-10647914.187604034,4464426.2128142994],[-10648166.798403403,4464429.1650263788],[-10648419.473475195,4464432.112213972],[-10648672.103691481,4464434.2072566403],[-10648924.219027018,4464436.2906129677],[-10648927.801967818,4464436.3133675568],[-10649176.086482951,4464438.368943207],[-10649427.626069095,4464440.4446343882],[-10649432.763663299,4464440.4926496316],[-10649679.518152703,4464442.5136681171],[-10649930.696831634,4464444.563978482],[-10649936.996736724,4464444.6258190498],[-10650181.988437926,4464446.6190645443],[-10650430.974143503,4464448.6382079385],[-10650679.292776182,4464447.0360364942],[-10650912.963690395,4464445.5231508994],[-10650928.305992149,4464445.4253233662],[-10651175.601771332,4464443.8227715297],[-10651393.572880631,4464442.4043197939],[-10651405.987783678,4464442.7777892845],[-10651422.042492101,4464443.2526695011],[-10651662.977847336,4464450.3053874271],[-10651899.609848652,4464457.2293064333],[-10651905.769095737,4464457.403727768],[-10652150.314222243,4464464.545051665],[-10652396.65987948,4464471.7328775618],[-10652398.794629788,4464727.3746530563],[-10652400.799345974,4464967.5270031188],[-10652400.90243669,4464980.7201224426],[-10652402.998116106,4465231.6275041308],[-10652404.956648786,4465466.2319785962],[-10652405.068752021,4465479.8425382199],[-10652405.134167878,4465487.2996274373],[-10652417.757573407,4465730.0373773137],[-10652430.165512351,4465968.6220273338],[-10652430.715692593,4465979.2192460876],[-10652443.607831055,4466227.3144291965],[-10652456.445001258,4466474.3316471754],[-10652460.755092299,4466727.9053302733],[-10652465.079703672,4466982.1967014922],[-10652465.232023897,4466990.7857105248],[-10652469.413429303,4467237.2074467],[-10652473.752565,4467492.9376181634],[-10652473.941142624,4467504.4552490991],[-10652478.112528492,4467749.4465930257],[-10652481.042303363,4467921.605978542],[-10652482.381393304,4468006.6888019517],[-10652482.514992414,4468015.2792736553],[-10652486.426204208,4468263.7249873495],[-10652486.48707814,4468264.6617844766],[-10652487.963372318,4468287.6081238734],[-10652491.028458383,4468523.3760298826],[-10652491.069038812,4468777.7640971672],[-10652491.109327553,4469033.6921298308],[-10652490.500880167,4469288.8114175228],[-10652489.893033361,4469543.9185236767],[-10652489.290293306,4469799.2067929627],[-10652488.690055337,4470054.3696190882],[-10652488.18468518,4470267.1241133204],[-10652488.845268406,4470309.3917849008],[-10652492.822990993,4470564.2832280099],[-10652494.362853678,4470817.2432831088],[-10652495.829766158,4471058.1629710589],[-10652495.893200174,4471069.2458333448],[-10652495.947009619,4471077.8953774069],[-10652495.782991398,4471320.3008599617],[-10652495.623834763,4471554.924253054],[-10652495.622220526,4471570.4589740867],[-10652495.458345549,4471820.515394466],[-10652495.305995807,4472055.0103510739],[-10652495.29826396,4472068.6461396944],[-10652495.285807705,4472078.8970403606],[-10652497.588033764,4472314.8346151998],[-10652499.96889382,4472558.8239006549],[-10652744.590956107,4472565.1849611988],[-10652990.033944041,4472571.5603659777],[-10653236.302262586,4472577.948606126],[-10653478.386863025,4472584.2230278449],[-10653483.389404375,4472584.3441488296],[-10653706.416613515,4472590.1107075689],[-10653729.531379811,4472590.6426153705],[-10653970.860023623,4472596.1874658531],[-10653974.759821387,4472596.2768929163],[-10654220.279092994,4472602.2987241307],[-10654465.595035201,4472608.3092413172],[-10654465.677755708,4472863.5715210428],[-10654465.758373115,4473118.7112134825],[-10654465.834982557,4473373.242015522],[-10654465.840833168,4473398.9999249773],[-10654465.677425358,4473627.3102640677],[-10654465.464503082,4473880.9116509147],[-10654465.347152399,4474020.9025364108],[-10654464.375236951,4474133.741815215],[-10654462.200113922,4474387.0077887904],[-10654460.892918572,4474539.2819249835],[-10654458.608194245,4474640.4910101006],[-10654375.261310868,4474634.3879200583],[-10654211.545327939,4474632.892951306],[-10653970.234660108,4474630.6856756406],[-10653965.89987275,4474630.6232686788],[-10653720.110448824,4474625.9442130663],[-10653479.126943158,4474621.3541058376],[-10653474.693544552,4474621.2681793915],[-10653230.234820256,4474616.602968758],[-10652985.578673005,4474611.9281997755],[-10652739.220105954,4474607.2232375005],[-10652489.547902433,4474602.4490840351],[-10652234.530277498,4474599.6577833761],[-10651991.945369879,4474596.997355449],[-10651982.56569455,4474596.8901453502],[-10651731.179163089,4474594.1174801616],[-10651724.08916931,4474594.0392103605],[-10651491.339743128,4474588.9626828842],[-10651488.488977456,4474844.189576894],[-10651485.64041418,4475099.3207761571],[-10651482.813672896,4475353.4935586518],[-10651479.995339315,4475606.9932534974],[-10651477.181908751,4475859.5715133203],[-10651474.420122398,4476107.3088563196],[-10651474.377284857,4476110.9706589226],[-10651471.587174041,4476361.1867065001],[-10651468.811876647,4476610.2219619052],[-10651716.672148921,4476610.0534101436],[-10651802.836768178,4476609.9925900213],[-10651970.871876951,4476613.4853547476],[-10651975.896140283,4476613.5887828134],[-10652225.373450188,4476618.7801794931],[-10652479.727056215,4476624.0651933048],[-10652481.003605077,4476879.2361703822],[-10652481.282074226,4476935.0435337322],[-10652481.295035625,4477131.5611919342],[-10652481.326673159,4477383.8228144487],[-10652481.357707372,4477635.1383813638],[-10652226.961402625,4477633.6653650627],[-10651973.421663104,4477632.1908431333],[-10651719.030463843,4477630.7005913723],[-10651464.362452475,4477629.2029156974],[-10651464.457800828,4477881.6319204522],[-10651464.551733656,4478129.3257601634],[-10651464.546238275,4478133.0087733902],[-10651210.614978956,4478132.3946491741],[-10650956.694231424,4478131.7741085254],[-10650702.998837758,4478131.139729551],[-10650449.729924629,4478130.5001941817],[-10650448.93815832,4477879.80116875],[-10650448.938049547,4477876.999784722],[-10650448.964793811,4477622.4790324308],[-10650448.981385039,4477516.4233322097],[-10650448.379550438,4477368.6407436738],[-10650447.351814007,4477116.6551840091],[-10650446.318368169,4476863.7374614868]]]},"attributes":{"objectid":1943,"field_kid":"1000149901","approxacre":12285,"field_name":"BREWSTER","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":190488.35000000001,"maxoilwell":48,"lastoilpro":453.81999999999999,"lastoilwel":15,"lastodate":"2-2009","cumm_gas":1090433,"maxgaswell":16,"lastgaspro":8460,"lastgaswel":12,"lastgdate":"2-2009","avgdepth":936.83333332999996,"avgdepthsl":125.16666667,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149901}},{"geometry":{"rings":[[[-10627760.58595534,4499891.7141630976],[-10627760.711634392,4499883.7399008824],[-10627506.894575821,4499883.9703745143],[-10627254.131115487,4499884.191280148],[-10626999.739603654,4499884.4103998085],[-10626744.566302745,4499884.6253490094],[-10626489.116086826,4499884.8228965392],[-10626232.454192884,4499885.0131162265],[-10625976.889947288,4499885.1979289036],[-10625721.646967052,4499885.3755595442],[-10625464.73600094,4499886.7233812632],[-10625208.947812011,4499888.0554584805],[-10624952.994335579,4499889.3934592186],[-10624697.295849485,4499890.7227643747],[-10624442.270937037,4499892.7680492364],[-10624188.406144448,4499894.7975903004],[-10623934.312692501,4499896.8322978793],[-10623680.463619025,4499898.8588142637],[-10623682.419268647,4499644.6681504482],[-10623684.378120311,4499390.2737419847],[-10623686.346481675,4499135.7198522314],[-10623688.315943092,4498881.0004416481],[-10623690.026812484,4498626.4430180145],[-10623691.739782961,4498371.7170562167],[-10623693.46176238,4498116.820803795],[-10623695.185142189,4497861.7647350114],[-10623952.747869018,4497860.4034670135],[-10624209.563946182,4497859.0404248545],[-10624465.665310081,4497857.6790122883],[-10624721.038345177,4497856.3168341853],[-10624975.748926468,4497854.9533872269],[-10625229.903174745,4497853.5852694493],[-10625483.506696416,4497852.2152540162],[-10625736.55438564,4497850.8408198813],[-10625735.606856819,4497597.0400661891],[-10625734.655915974,4497342.398567589],[-10625733.872246187,4497128.8855474321],[-10625733.3277383,4497087.0221276022],[-10625730.006483003,4496830.9206095655],[-10625731.206701081,4496577.3130483059],[-10625732.398427529,4496325.6187073234],[-10625733.584937297,4496072.7318783533],[-10625734.771846531,4495819.7041957472],[-10625735.177187946,4495731.1000369266],[-10625735.422634255,4495565.5230803322],[-10625735.801410832,4495311.2147868099],[-10625736.174980585,4495056.8042788319],[-10625736.549650673,4494802.2876574425],[-10625990.971291469,4494801.9266897375],[-10626245.613884317,4494801.5605584467],[-10626500.372209266,4494801.1959408429],[-10626755.270293672,4494800.8254025225],[-10626834.560515847,4494800.7117703408],[-10627009.839821039,4494802.5241071768],[-10627249.112609826,4494804.994310909],[-10627264.579447942,4494804.9539376097],[-10627519.06686081,4494804.2408923451],[-10627773.248525176,4494803.522550608],[-10627774.289859269,4494547.0459793052],[-10627775.321798399,4494292.5015491182],[-10627776.363144059,4494037.3976604389],[-10627777.402690044,4493782.5566299064],[-10627777.445370479,4493774.0294561023],[-10627777.17378211,4493526.8860279219],[-10627776.892215984,4493271.4674624708],[-10627776.610852256,4493016.3378310651],[-10627776.329891123,4492761.4918210683],[-10627852.094285961,4492761.1636149129],[-10628031.39468042,4492760.3601634912],[-10628286.501317715,4492759.2120022131],[-10628345.438001711,4492758.957402885],[-10628541.639291255,4492758.0774481827],[-10628796.75143555,4492756.9282793878],[-10628839.117702303,4492756.7392270165],[-10629051.68297396,4492755.7704152111],[-10629305.915714893,4492754.6062425822],[-10629335.324689239,4492754.4734617351],[-10629559.526260098,4492755.5047322772],[-10629812.595488776,4492756.6628755415],[-10629814.12947032,4493012.9523625765],[-10629815.653330328,4493267.8408772275],[-10629815.722177338,4493277.9789774045],[-10629817.186502179,4493522.9870669506],[-10629818.709759796,4493777.7765745549],[-10629818.791945528,4493791.4044878706],[-10629820.198944204,4494027.5546977231],[-10629820.189180493,4494034.5847827522],[-10629819.831598034,4494290.3342426131],[-10629819.810640635,4494300.1920827068],[-10629819.463896984,4494545.0281771533],[-10629819.104298728,4494798.7558525642],[-10630073.624712814,4494792.199246332],[-10630328.359172983,4494785.6301719556],[-10630330.929303609,4494785.5690897936],[-10630583.958921935,4494779.0500241388],[-10630838.501867849,4494772.4846101431],[-10630838.405799698,4495024.3890439421],[-10630838.309241239,4495277.9696364356],[-10630838.310562409,4495281.1828426719],[-10630838.221803486,4495533.235708829],[-10630838.131973291,4495790.1847374877],[-10631093.052587204,4495786.895550142],[-10631348.278707644,4495783.5932368785],[-10631603.729480864,4495780.2841196219],[-10631859.4293343,4495776.9635354681],[-10631859.405958802,4495785.6119294716],[-10631858.712730918,4496032.8184933476],[-10631857.992131414,4496290.0958860656],[-10631857.980362913,4496297.7141541177],[-10631857.274441896,4496548.5142601924],[-10631856.541146809,4496808.9679275658],[-10631857.81779635,4497066.9179785755],[-10631859.094445327,4497324.7949611722],[-10631859.157800643,4497339.1207076432],[-10631860.376805162,4497583.4508121712],[-10631861.667977713,4497842.6094165407],[-10631861.778923567,4497863.2495336346],[-10631862.971873065,4498103.2402762398],[-10631864.276276864,4498365.2366064461],[-10631864.361171508,4498382.1445003757],[-10631865.577979164,4498627.5190737229],[-10631866.896221068,4498893.4057591762],[-10631612.85449825,4498887.8719147369],[-10631358.218006499,4498882.3172736214],[-10631352.194836963,4498882.1941266079],[-10631103.176258827,4498876.751668158],[-10631040.234817317,4498875.3757390939],[-10630847.829210697,4498880.0197462039],[-10630839.859443124,4498880.2144078296],[-10630778.855536146,4498881.6906791823],[-10630592.371023914,4498879.692217594],[-10630336.292515591,4498876.9420372192],[-10630329.200745385,4498876.8644180112],[-10630079.61812832,4498874.1861770498],[-10629822.201895943,4498871.4174497211],[-10629824.014680915,4499126.8921048986],[-10629825.783573041,4499376.0901678586],[-10629825.814845806,4499381.6083816569],[-10629827.627218978,4499635.5829925612],[-10629829.387581877,4499882.0591114126],[-10629829.442289032,4499888.7291452745],[-10629829.742728936,4499932.9947212124],[-10629830.033374209,4500142.9955265792],[-10629830.368295712,4500386.5438813465],[-10629830.384872586,4500395.1574971844],[-10629830.727746753,4500645.2043175045],[-10629831.068904668,4500893.1481928434],[-10629573.716915026,4500897.6598860286],[-10629315.8421326,4500902.173591936],[-10629303.225693731,4500902.4029057985],[-10629057.315811042,4500906.6889306577],[-10628798.183001516,4500911.1982115395],[-10628779.59567672,4500911.5222654454],[-10628778.387187166,4501166.6949112071],[-10628777.218382251,4501413.6344280457],[-10628777.193298291,4501419.666528184],[-10628775.99619869,4501671.6359920045],[-10628774.804795653,4501922.2193890363],[-10628517.638465067,4501924.3713672739],[-10628261.95972494,4501926.5030632596],[-10628007.430891681,4501928.6188860899],[-10627754.157184782,4501930.7165673366],[-10627752.822736803,4501677.1650284557],[-10627751.480768582,4501422.2111728741],[-10627751.463622529,4501418.89634676],[-10627750.123167593,4501165.4450622303],[-10627748.761756768,4500908.0517818965],[-10627751.55519148,4500653.498321956],[-10627754.349727407,4500398.8380709244],[-10627754.372431597,4500396.1399709918],[-10627757.118241282,4500145.0145919956],[-10627758.387553383,4500028.7830089433],[-10627760.58595534,4499891.7141630976]]]},"attributes":{"objectid":1967,"field_kid":"1000150017","approxacre":6101,"field_name":"MOREHEAD","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":62899,"maxoilwell":40,"lastoilpro":18,"lastoilwel":7,"lastodate":"8-1995","cumm_gas":1510639,"maxgaswell":21,"lastgaspro":7811,"lastgaswel":20,"lastgdate":"2-2009","avgdepth":1058.5,"avgdepthsl":54.571428570000002,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150017}},{"geometry":{"rings":[[[-10622663.819598101,4501170.4984833207],[-10622665.901694775,4500913.0425225208],[-10622653.786324121,4500913.0610278696],[-10622655.193294037,4500659.3768328018],[-10622656.604162887,4500405.1654551439],[-10622658.013132857,4500151.2151634153],[-10622659.422003187,4499897.2735394975],[-10622913.6004769,4499897.6707898099],[-10623168.499369742,4499898.0631325338],[-10623424.372670721,4499898.4643129446],[-10623680.463619025,4499898.8588142637],[-10623934.053597867,4499896.8351942357],[-10624188.406144448,4499894.7975903004],[-10624442.738268487,4499892.7642730502],[-10624697.295849485,4499890.7227643747],[-10624952.993134217,4499889.3934592046],[-10625208.947812011,4499888.0554584805],[-10625464.98608534,4499886.7217455348],[-10625721.646967052,4499885.3755595442],[-10625716.948188283,4500140.5361008383],[-10625716.088142909,4500187.2066414682],[-10625713.250850219,4500395.7698086062],[-10625709.760250764,4500651.2717277138],[-10625706.273652984,4500906.3514305986],[-10625961.138645006,4500906.3763849773],[-10626163.994020307,4500906.3918465497],[-10626216.103853539,4500906.6920939796],[-10626471.217841148,4500908.1508968351],[-10626726.525748679,4500909.6049110815],[-10626896.963784499,4500910.5533688022],[-10626981.902227318,4500910.3083386691],[-10627237.433369525,4500909.5696009994],[-10627493.058718905,4500908.8139691399],[-10627748.761756768,4500908.0517818965],[-10627750.110334825,4501163.1767269755],[-10627751.463622529,4501418.89634676],[-10627751.480768582,4501422.2111728741],[-10627752.809201475,4501674.6756644426],[-10627754.157184782,4501930.7165673366],[-10627498.734920122,4501930.658199857],[-10627243.579658711,4501930.5926482109],[-10626988.222067421,4501930.5264634797],[-10626732.764462437,4501930.4537203927],[-10626477.618411293,4501930.3731632112],[-10626222.444528444,4501930.2851658994],[-10625967.756797791,4501930.1911220942],[-10625713.389430983,4501930.0900209043],[-10625715.176341383,4502186.9307422675],[-10625716.95663668,4502443.0192370256],[-10625718.739628224,4502698.4388071131],[-10625720.516303817,4502952.977664642],[-10625465.556242729,4502954.8458951591],[-10625210.221256502,4502956.7099596588],[-10625204.942163032,4502956.7454555556],[-10624954.504937803,4502958.5636786353],[-10624747.381587861,4502960.0631420696],[-10624698.400573522,4502959.8526712386],[-10624692.075391853,4502959.8364486303],[-10624442.678419985,4502958.7914778609],[-10624245.071751921,4502957.9596620426],[-10624185.865916962,4502956.6353815896],[-10624180.038799703,4502956.5144938296],[-10623996.634823065,4502952.4179918356],[-10623928.039948024,4502953.0741529455],[-10623669.193182452,4502955.5452671479],[-10623522.730430881,4502959.3412133139],[-10623414.814914662,4502960.219080803],[-10623160.066499844,4502962.2879570993],[-10623154.252899807,4502962.3452633107],[-10622904.886295533,4502964.3662866373],[-10622649.259484665,4502966.4314954747],[-10622640.064445589,4502966.5022524837],[-10622391.75193911,4502968.4975636108],[-10622278.882800197,4502969.4039959833],[-10622133.293499127,4502969.2165087471],[-10622126.295754025,4502969.2152847061],[-10621873.803976692,4502968.9019660978],[-10621613.261758748,4502968.5708895838],[-10621617.423360942,4502712.1699572466],[-10621621.570258558,4502456.6927012308],[-10621621.638179805,4502451.9515621355],[-10621625.716151917,4502200.8470215127],[-10621629.869455619,4501945.0594087783],[-10621888.343675479,4501944.2771192528],[-10622145.786523905,4501943.4924207628],[-10622402.216121444,4501942.7012784239],[-10622657.571899367,4501941.9094919451],[-10622659.650401441,4501685.4634067928],[-10622661.735802032,4501428.1283387635],[-10622663.819598101,4501170.4984833207]]]},"attributes":{"objectid":1968,"field_kid":"1000150018","approxacre":1926,"field_name":"MOREHEAD NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":1407437,"maxgaswell":10,"lastgaspro":4778,"lastgaswel":6,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000150018}},{"geometry":{"rings":[[[-10583450.637403425,4721713.9325623224],[-10583711.259376239,4721715.8601901317],[-10583711.062518869,4721976.8336811969],[-10583710.864660708,4722237.7676441874],[-10583710.649783656,4722498.6494510453],[-10583710.435507603,4722759.4970053826],[-10583710.245158615,4723020.3649308812],[-10583710.052708054,4723281.1341818944],[-10583709.903850734,4723497.7964291656],[-10583709.561318297,4723541.8477877462],[-10583707.537387818,4723802.4776698248],[-10583445.381017881,4723800.7126279986],[-10583182.559692539,4723798.9366421737],[-10582920.756924616,4723797.1651547262],[-10582659.3986619,4723795.3904414242],[-10582398.44445855,4723793.596139296],[-10582137.977008414,4723791.7980954666],[-10581877.768352469,4723789.9941221364],[-10581617.929717099,4723788.1861507483],[-10581617.571528642,4724048.6046999162],[-10581617.212536452,4724309.3799063945],[-10581616.850137688,4724570.4981391206],[-10581616.487535831,4724831.9793978455],[-10581616.267744711,4724999.8150049243],[-10581616.257591994,4725092.5553164016],[-10581616.226667004,4725354.0530115003],[-10581616.203555489,4725614.9825725509],[-10581616.180344509,4725875.837408172],[-10581359.190393871,4725874.1086508576],[-10581106.405321902,4725872.402656802],[-10581102.203747105,4725872.3757699132],[-10580845.26054984,4725870.6387649095],[-10580594.16810165,4725868.935845349],[-10580588.308442621,4725868.8908061935],[-10580331.643261546,4725867.1464530025],[-10580079.140811244,4725865.4238325851],[-10580074.977079108,4725865.4399886113],[-10579818.425900279,4725867.0620354619],[-10579562.136819301,4725868.6768627288],[-10579303.575169234,4725868.6208866397],[-10579044.685346268,4725868.5582128987],[-10579040.602105597,4725868.5755278822],[-10578785.4500305,4725868.5143584134],[-10578525.898655729,4725868.4471816206],[-10578520.118586818,4725868.4432518259],[-10578518.834274823,4726128.1045034705],[-10578517.551268268,4726387.2875699755],[-10578516.279875256,4726646.4277785746],[-10578515.009084085,4726905.4278176595],[-10578513.735996312,4727163.7022638554],[-10578512.468120201,4727421.2821246218],[-10578511.2043567,4727677.9049162315],[-10578509.941194916,4727934.4015750391],[-10578333.28659883,4727933.9562748838],[-10578252.221747058,4727934.792831881],[-10577998.417831365,4727937.4069009982],[-10577994.69670137,4727937.4376205178],[-10577737.800170198,4727940.0554629425],[-10577480.424294034,4727942.6731824474],[-10577481.295898147,4728203.3772984687],[-10577482.139341105,4728455.6458652457],[-10577482.145282472,4728463.4416676173],[-10577483.017197866,4728722.8671425274],[-10577483.857354589,4728973.0713692289],[-10577483.875503032,4728981.6789413122],[-10577484.733512787,4729239.9151757415],[-10577485.565754609,4729490.846260678],[-10577485.575210202,4729497.4238071712],[-10577486.436835296,4729754.3437573789],[-10577487.29626596,4730010.314378663],[-10577242.821701432,4730013.4431380834],[-10577078.052360695,4730015.5478640636],[-10576997.472043309,4730016.4017270254],[-10576752.181955718,4730019.0126051176],[-10576506.626266075,4730021.6197479367],[-10576260.838212188,4730024.2209633915],[-10576014.849229772,4730026.819216406],[-10575768.455687242,4730029.4241786422],[-10575521.736874796,4730032.0282426225],[-10575522.777977088,4729773.266944496],[-10575523.820686305,4729513.911113075],[-10575523.852950135,4729510.7444842076],[-10575524.892133161,4729253.9761345722],[-10575525.945664585,4728993.4664370418],[-10575525.94610407,4728988.9195818249],[-10575526.986988422,4728732.2237648154],[-10575528.047940176,4728470.3280954966],[-10575528.066985831,4728467.5278843241],[-10575529.106294386,4728207.8019088935],[-10575530.159147633,4727944.6591750253],[-10575530.437289374,4727685.123593227],[-10575530.713531878,4727425.2529705828],[-10575530.71737593,4727420.6258753305],[-10575530.993981948,4727165.0621549385],[-10575531.27613689,4726904.5346735809],[-10575531.264669798,4726899.1774230013],[-10575531.531964697,4726643.6869207388],[-10575531.805916039,4726382.5024240911],[-10575531.824871341,4726378.5664662505],[-10575532.080470949,4726120.9867514446],[-10575532.342614498,4725859.1565530011],[-10575531.535625257,4725599.4023815366],[-10575530.730440186,4725339.4133772152],[-10575529.920151174,4725079.2184232445],[-10575529.109663924,4724818.8033608617],[-10575530.83209992,4724576.4756096937],[-10575530.898432242,4724558.1795167616],[-10575531.84644716,4724297.321562049],[-10575532.789158678,4724036.1592825651],[-10575533.732272865,4723774.7401168784],[-10575778.396661576,4723776.9059334164],[-10576023.049737595,4723779.0653083175],[-10576267.360925412,4723781.2036857605],[-10576511.438748231,4723783.3342067711],[-10576756.529522061,4723785.4746378753],[-10577001.889401797,4723787.6122318003],[-10577247.491656957,4723789.7596157528],[-10577493.348000966,4723791.9035184784],[-10577493.898903536,4723532.4708170993],[-10577494.450509867,4723272.6889042836],[-10577494.443929614,4723269.4439595742],[-10577494.977290722,4723012.5846049692],[-10577495.517489512,4722752.1634832546],[-10577495.545857141,4722747.9448593408],[-10577496.085818037,4722492.0110925715],[-10577496.635829788,4722231.3808659064],[-10577496.643769443,4722227.7294220654],[-10577497.175834661,4721970.2191208815],[-10577497.397794072,4721862.0968794301],[-10577506.242332771,4721708.2912205122],[-10577763.204750279,4721709.8009985602],[-10578020.632896997,4721711.3075510487],[-10578278.277690064,4721712.7964530503],[-10578285.585992536,4721712.8388796179],[-10578535.09324705,4721713.5705457479],[-10578792.978519402,4721714.3396023074],[-10579050.222563375,4721715.1002930189],[-10579306.850307209,4721715.8607332483],[-10579430.096522013,4721716.2240073476],[-10579562.500663275,4721713.8661229555],[-10579819.086483279,4721711.7140849475],[-10579838.981386879,4721711.5465202983],[-10579976.914689487,4721711.6512139868],[-10580076.411932083,4721710.9593428969],[-10580334.104806539,4721709.1869234517],[-10580592.244188249,4721707.4049665229],[-10580849.953981746,4721705.6325474223],[-10581107.750874156,4721703.8543307176],[-10581365.634565277,4721702.0522817252],[-10581623.541182408,4721700.2441782383],[-10581884.656815022,4721702.2155960323],[-10582145.733203221,4721704.179027901],[-10582406.758132976,4721706.1519934209],[-10582667.722894538,4721708.1177461818],[-10582928.858450415,4721710.0599234495],[-10583189.834825603,4721711.9951467142],[-10583450.637403425,4721713.9325623224]]]},"attributes":{"objectid":1974,"field_kid":"1000149619","approxacre":5283,"field_name":"LINWOOD","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":39153.57,"maxoilwell":11,"lastoilpro":38.82,"lastoilwel":8,"lastodate":"12-2008","cumm_gas":28799,"maxgaswell":1,"lastgaspro":12,"lastgaswel":1,"lastgdate":"10-2002","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149619}},{"geometry":{"rings":[[[-10585524.025533272,4716563.6931715682],[-10585780.780576551,4716559.7844935209],[-10585783.253485065,4716810.5993311768],[-10585785.714276055,4717060.1966467565],[-10585785.731604084,4717063.1977594243],[-10585788.231050316,4717316.9921121607],[-10585790.760838853,4717573.7329161018],[-10585532.069150936,4717572.7778086215],[-10585272.14876557,4717571.8111254517],[-10585265.606926082,4717571.7847987954],[-10585140.064156834,4717571.2919455171],[-10585011.119520539,4717571.3399434648],[-10584770.4445241,4717571.4268696625],[-10584749.092952607,4717574.5719371615],[-10584748.567084478,4717322.7070109285],[-10584748.070493029,4717085.0570399472],[-10584748.057136295,4717071.4721770072],[-10584747.554904006,4716822.5950351628],[-10584747.057882991,4716575.4944793023],[-10585007.171745077,4716571.545975564],[-10585266.162129823,4716567.6094595948],[-10585524.025533272,4716563.6931715682]]]},"attributes":{"objectid":2000,"field_kid":"1000149604","approxacre":154,"field_name":"FALL LEAF","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149604}},{"geometry":{"rings":[[[-10578606.938939087,4486601.628703854],[-10578859.019655323,4486600.6316772355],[-10578860.087231731,4486856.6235815929],[-10578861.162051933,4487114.2277050735],[-10578862.242056929,4487370.8797375374],[-10578863.320157453,4487627.4332642332],[-10578864.405371577,4487884.2383621149],[-10578865.48806775,4488140.3666748824],[-10578866.581671987,4488396.2989755142],[-10578867.677990304,4488652.7333277129],[-10578614.4982611,4488652.3318558214],[-10578360.727554528,4488651.9224401498],[-10578118.523402611,4488651.5336154811],[-10578107.151873985,4488651.6280096779],[-10577853.602176197,4488653.7377488846],[-10577599.993441423,4488652.7015390079],[-10577345.864710631,4488651.6575125353],[-10577092.290114628,4488650.6032942021],[-10577089.904380575,4488650.5930541996],[-10576837.887071852,4488649.6641703481],[-10576584.534920206,4488648.1281146696],[-10576331.48671682,4488646.5889157234],[-10576077.773351261,4488645.0502098873],[-10575823.744223684,4488643.5012980932],[-10575824.616015119,4488387.9880439378],[-10575825.488007616,4488132.5196613194],[-10575826.366423205,4487877.7751582256],[-10575827.2430475,4487623.528066203],[-10575827.887303254,4487369.1838613972],[-10575828.530071076,4487115.4742771247],[-10575829.164917741,4486861.2208079547],[-10575829.800862102,4486606.8120644875],[-10576082.236316273,4486607.2395101357],[-10576328.282849509,4486607.6485939166],[-10576334.04675407,4486607.6568724541],[-10576585.207447179,4486608.064528795],[-10576835.726905366,4486608.4637384303],[-10577089.195913395,4486607.5079077715],[-10577342.833414301,4486606.5450287592],[-10577596.075762179,4486605.5713147698],[-10577849.111873602,4486604.5919313645],[-10578101.93854497,4486603.6101522557],[-10578354.558979869,4486602.6220741617],[-10578606.938939087,4486601.628703854]]]},"attributes":{"objectid":2008,"field_kid":"1000147520","approxacre":958,"field_name":"MCCUNE TOWNSITE","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147520}},{"geometry":{"rings":[[[-10597506.30778135,4760266.0430578655],[-10597505.491003131,4760004.1216481728],[-10597246.142766636,4760001.6835466651],[-10596986.70953344,4759999.238852446],[-10596726.915489158,4759996.7906712797],[-10596466.854340598,4759994.3339593438],[-10596206.70519192,4759991.8606980126],[-10595946.310063049,4759989.3791643726],[-10595685.887603231,4759986.9059080249],[-10595425.360324131,4759984.4251540294],[-10595425.2687595,4759723.2180121345],[-10595425.177795585,4759462.1390545741],[-10595425.098945515,4759201.19202084],[-10595425.018393539,4758940.369660194],[-10595426.798462266,4758680.1392046902],[-10595428.573925685,4758420.2998407595],[-10595430.368110163,4758159.9210758116],[-10595432.161093073,4757899.3208545949],[-10595691.684141193,4757901.3311229143],[-10595947.238166437,4757903.3049732801],[-10595950.279332101,4757903.3256288571],[-10596207.932349492,4757905.3205327457],[-10596464.626574419,4757907.299933088],[-10596464.502429765,4757646.8452142784],[-10596464.379487969,4757386.6657142835],[-10596464.239935208,4757125.8574673682],[-10596464.099784011,4756864.7144406699],[-10596468.029661613,4756864.7659797575],[-10596722.313092299,4756867.0623665238],[-10596980.680976981,4756869.3887036322],[-10597238.804683629,4756871.702246177],[-10597497.750527196,4756874.0138421301],[-10597498.390439779,4756612.7467609588],[-10597499.031952826,4756351.6944321087],[-10597499.67656789,4756090.8790712366],[-10597500.32368429,4755830.2992380848],[-10597761.491747074,4755830.5669093858],[-10598022.197683381,4755830.8273470262],[-10598282.448801495,4755831.0898572905],[-10598542.247103728,4755831.3478481462],[-10598541.97705112,4755570.4543036306],[-10598541.70799822,4755309.7960200859],[-10598541.445852134,4755049.3130094232],[-10598541.185807394,4754789.0029316992],[-10598799.614926558,4754788.8249650793],[-10599053.934363738,4754788.6434208183],[-10599057.583020501,4754788.6442890009],[-10599315.107709397,4754788.4453942804],[-10599572.177480059,4754788.2387496112],[-10599828.652973376,4754788.0805765186],[-10600085.165909382,4754787.9156824844],[-10600341.708779631,4754787.726749192],[-10600598.278580599,4754787.5305780964],[-10600854.887225693,4754787.3522419669],[-10601111.531411331,4754787.1653755186],[-10601368.200225158,4754786.9544698857],[-10601624.886158524,4754786.7361972993],[-10601626.129094593,4755047.9519922379],[-10601627.349729929,4755305.1046525771],[-10601627.372834345,4755308.7274834644],[-10601628.60145973,4755569.0469976123],[-10601629.806989223,4755824.3545190394],[-10601629.837195816,4755828.9550922085],[-10601631.061721714,4756088.451606459],[-10601632.270249443,4756344.6486738296],[-10601632.276939828,4756347.4985057088],[-10601633.510181386,4756606.0816652393],[-10601634.739821777,4756864.195878922],[-10601377.881029464,4756866.1963963388],[-10601120.836225133,4756868.1921330187],[-10600863.602805899,4756870.1687402036],[-10600606.184976483,4756872.1384983249],[-10600349.580073275,4756874.1068267804],[-10600093.031734468,4756876.0675281687],[-10599837.090987995,4756878.0116775082],[-10599581.581633046,4756879.9458692269],[-10599582.075369898,4757140.3439424802],[-10599582.570508949,4757400.6557930578],[-10599582.837810298,4757545.6254980499],[-10599582.621066211,4757660.9186017206],[-10599582.130138986,4757921.139496265],[-10599581.641914716,4758181.2707909178],[-10599581.154090805,4758441.347128191],[-10599580.659459068,4758701.3939745044],[-10599580.164226541,4758961.3786158934],[-10599582.10947744,4759223.4133775234],[-10599584.058933591,4759485.7929482479],[-10599584.114303358,4759493.2460477659],[-10599586.012595018,4759748.5324838096],[-10599587.968259193,4760011.6177885178],[-10599588.042953217,4760021.5565932933],[-10599589.928929565,4760275.0757864397],[-10599591.890701644,4760538.8558152486],[-10599591.94356868,4760546.431767703],[-10599593.849170437,4760802.999799693],[-10599595.813946826,4761067.4246141762],[-10599595.32582384,4761328.5774648078],[-10599594.846907675,4761585.674602502],[-10599594.842005508,4761589.5029991856],[-10599594.359788658,4761850.1038124952],[-10599593.888279399,4762105.5803622967],[-10599593.869161895,4762110.385699803],[-10599332.994197818,4762109.1234880779],[-10599071.437456446,4762107.8526163967],[-10598810.014868127,4762106.5659653172],[-10598548.457025694,4762105.2738836743],[-10598287.009008607,4762103.992536623],[-10598025.356458396,4762102.7039488191],[-10597763.491265818,4762101.3953161268],[-10597501.423242066,4762100.0806067111],[-10597501.46178332,4762095.2750209151],[-10597503.260089803,4761838.6439559162],[-10597505.092331974,4761576.9236166738],[-10597505.114154795,4761573.2584418636],[-10597506.926075505,4761314.8690447584],[-10597508.764624184,4761052.4904825697],[-10597507.943840755,4760789.7604319742],[-10597507.126361741,4760528.0681331577],[-10597506.30778135,4760266.0430578655]]]},"attributes":{"objectid":2011,"field_kid":"1000149125","approxacre":3488,"field_name":"MCLOUTH NORTH","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":142645.60999999999,"maxoilwell":18,"lastoilpro":308.13,"lastoilwel":2,"lastodate":"2-2009","cumm_gas":238446,"maxgaswell":2,"lastgaspro":359,"lastgaswel":2,"lastgdate":"11-1997","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149125}},{"geometry":{"rings":[[[-10601630.320918793,4757915.4741941728],[-10601630.360854583,4757907.4962037839],[-10601373.223827276,4757908.804052555],[-10601116.290031461,4757910.1060814774],[-10600859.711240066,4757911.3804404233],[-10600603.435594013,4757912.6482028617],[-10600604.123803252,4757651.9548642226],[-10600604.812119598,4757391.6668801187],[-10600605.497698221,4757131.7156474628],[-10600606.184976483,4756872.1384983249],[-10600863.221671592,4756870.1719756909],[-10601120.836225133,4756868.1921330187],[-10601377.939496091,4756866.1958786882],[-10601634.739821777,4756864.195878922],[-10601633.501981458,4756604.5250563137],[-10601632.276939828,4756347.4985057088],[-10601632.270249443,4756344.6486738296],[-10601631.042723389,4756084.5949256001],[-10601629.837195816,4755828.9550922085],[-10601629.806989223,4755824.3545190394],[-10601887.991155844,4755824.0220890129],[-10602146.524720579,4755823.6830635136],[-10602405.386359116,4755823.3404156128],[-10602664.621823603,4755822.9901379384],[-10602664.027594713,4755562.7282875162],[-10602663.435064824,4755302.9717942392],[-10602662.847140769,4755043.1294524306],[-10602662.261015577,4754783.8324848572],[-10602662.606958555,4754523.4857806712],[-10602662.953704547,4754262.7885915739],[-10602663.297548657,4754001.8560900614],[-10602663.642095087,4753740.6727868775],[-10602663.300761519,4753479.2721775938],[-10602662.960229559,4753217.7648857823],[-10602662.61769706,4752955.9749244647],[-10602662.274166102,4752693.7445441838],[-10602662.328107009,4752428.3086493406],[-10602662.382744953,4752163.5107904244],[-10602662.44398658,4751899.3643543171],[-10602662.506826194,4751635.8683854099],[-10602922.240857506,4751634.9861477846],[-10603181.802392343,4751634.0974519113],[-10603441.200925134,4751633.1914041992],[-10603700.42854959,4751632.2810970675],[-10603700.435719438,4751638.8309578029],[-10603960.781019377,4751637.4158545267],[-10604221.039620576,4751635.99493788],[-10604481.197607111,4751634.58125728],[-10604741.278105401,4751633.1600836413],[-10604741.775557121,4751896.762560714],[-10604742.271911724,4752159.6561126634],[-10604742.763060294,4752422.580160955],[-10604743.255411563,4752685.2833853243],[-10604747.935740685,4752685.233870998],[-10605003.65109551,4752683.9282076135],[-10605263.82392554,4752682.5930595947],[-10605524.022785228,4752681.2420182331],[-10605783.502826443,4752679.8876213646],[-10605785.819415774,4752812.5254114782],[-10605786.127739973,4752941.3717603758],[-10605786.75437847,4753202.8474401208],[-10605787.38241924,4753464.2146293819],[-10605788.010360297,4753725.5237187715],[-10605788.645510292,4753986.7171958182],[-10605789.278958691,4754247.8613491477],[-10605789.908303019,4754508.9124925109],[-10605790.537547426,4754769.9400214413],[-10605792.020068791,4755030.0505894795],[-10605793.482088579,4755286.3209263664],[-10605793.504393317,4755289.9849806027],[-10605794.97990885,4755549.7549432144],[-10605796.427721167,4755804.5205207346],[-10605796.455325745,4755809.2839458156],[-10605535.563092561,4755811.1355336085],[-10605273.584522072,4755812.9895835984],[-10605012.27391235,4755814.8176500741],[-10604751.038187865,4755816.6377027044],[-10604751.464681964,4756076.3906171443],[-10604751.8891748,4756335.9767544298],[-10604752.306660628,4756595.4052795954],[-10604752.721944826,4756854.6910463804],[-10604747.125870695,4756854.7500237124],[-10604490.962795308,4756856.818443194],[-10604229.007121963,4756858.9260635562],[-10604224.931379627,4756858.9542666432],[-10603966.82288816,4756861.0383393308],[-10603704.441229384,4756863.1494532833],[-10603705.853903236,4757125.7510792455],[-10603707.216674408,4757379.1053967001],[-10603707.251072891,4757386.0674996115],[-10603708.11522877,4757544.8949855426],[-10603708.791851442,4757646.0803883718],[-10603710.466543546,4757896.7329031089],[-10603710.517314248,4757905.1213628761],[-10603712.260096988,4758164.2270436771],[-10603713.955013907,4758415.9011530224],[-10603713.998473657,4758422.5796851916],[-10603715.732444627,4758680.4145409642],[-10603717.458404725,4758937.0507025551],[-10603458.317890618,4758940.2412419105],[-10603209.280986376,4758943.3008826282],[-10603198.633651311,4758943.3945888486],[-10602938.152571896,4758945.6318298243],[-10602676.949769704,4758947.8689479185],[-10602415.140576199,4758950.1086572874],[-10602152.566911204,4758952.3481148733],[-10601889.217261586,4758954.5846055588],[-10601625.101338426,4758956.8204565775],[-10601626.398500849,4758697.2815571446],[-10601627.695061827,4758437.2124043843],[-10601627.725989982,4758431.3916988932],[-10601629.007840518,4758176.6087726802],[-10601630.320918793,4757915.4741941728]]]},"attributes":{"objectid":2012,"field_kid":"1000149126","approxacre":3022,"field_name":"MCLOUTH NORTHWEST","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":3107217,"maxgaswell":12,"lastgaspro":4126,"lastgaswel":1,"lastgdate":"6-2001","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149126}},{"geometry":{"rings":[[[-10599092.044615833,4526378.7037953306],[-10599344.262477919,4526378.381816349],[-10599343.052027678,4526592.3588871192],[-10599342.870922374,4526633.1080017574],[-10599341.762341829,4526883.8080291199],[-10599341.731647328,4526887.1101947241],[-10599340.591862788,4527140.3984528203],[-10599339.456073608,4527392.9474432869],[-10599340.978368297,4527648.1858180761],[-10599342.501261471,4527903.2482709996],[-10599344.018245416,4528158.1155742966],[-10599345.534726454,4528412.7969422694],[-10599094.501320038,4528414.9231078755],[-10598843.158458319,4528417.0435837675],[-10598591.481813446,4528419.1658284198],[-10598339.473187424,4528421.283141721],[-10598087.143092355,4528423.39969551],[-10597834.479814759,4528425.5120764384],[-10597581.497771228,4528427.6240771227],[-10597328.216784488,4528429.7331693396],[-10597328.093318217,4528174.2193205897],[-10597327.967843175,4527918.1828173138],[-10597327.834564945,4527662.6238396643],[-10597327.701989289,4527407.215595236],[-10597326.71212725,4527151.6119781788],[-10597325.720255159,4526895.3798391782],[-10597325.699623169,4526886.5235742899],[-10597324.735382745,4526638.4680341268],[-10597324.557116216,4526592.522362343],[-10597326.169277309,4526380.8253151933],[-10597577.830100674,4526380.5455466658],[-10597829.673133045,4526380.2576904036],[-10598082.582889521,4526379.9579611029],[-10598336.265933378,4526379.6498956047],[-10598588.067317633,4526379.3377719242],[-10598840.007861517,4526379.0198352896],[-10599092.044615833,4526378.7037953306]]]},"attributes":{"objectid":2058,"field_kid":"1000150027","approxacre":630,"field_name":"TRENT NORTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":9054,"maxoilwell":2,"lastoilpro":80,"lastoilwel":1,"lastodate":"6-1989","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150027}},{"geometry":{"rings":[[[-10585758.793385718,4635668.5242813583],[-10585757.94429047,4635410.7497224323],[-10585757.096891385,4635153.9311617464],[-10585756.237482624,4634896.4528122805],[-10585755.377373708,4634638.879123996],[-10586013.148474094,4634639.4438081011],[-10586270.92518096,4634640.000190408],[-10586528.695780775,4634640.5696004331],[-10586786.350848285,4634641.1309646927],[-10586787.101978609,4634382.9637042722],[-10586787.856918361,4634123.9667829312],[-10586787.881679242,4634118.6193593629],[-10586788.38634859,4633939.1709166216],[-10586788.753125081,4633864.129917983],[-10586789.091635894,4633794.564941274],[-10586788.998691674,4633603.4383629207],[-10586789.003132714,4633597.5264838561],[-10586788.902161356,4633343.5773795238],[-10586788.799124738,4633083.5337151596],[-10586788.790041002,4633079.1489398498],[-10586788.68687853,4632823.3394360011],[-10586788.582142035,4632562.9693972757],[-10586531.227928711,4632564.233193201],[-10586274.096370474,4632565.4884322872],[-10586016.163694637,4632566.7236274928],[-10585758.730891442,4632567.9494981691],[-10585758.294968821,4632310.379662401],[-10585757.859046211,4632052.8161559347],[-10585757.420422804,4631794.885624459],[-10585756.981400277,4631536.7443791907],[-10585756.513144711,4631278.5378630841],[-10585756.045691818,4631020.0531166568],[-10585755.562420446,4630761.6339846281],[-10585755.078448754,4630503.146025436],[-10586013.586459156,4630502.5502953557],[-10586266.651635028,4630501.9632794987],[-10586271.657769445,4630501.9356726939],[-10586529.31360388,4630501.311860241],[-10586786.555564262,4630500.6828157622],[-10586791.566584921,4630240.8061693413],[-10586796.491379634,4629985.387208865],[-10586796.588214494,4629981.4519811627],[-10586801.604935292,4629722.6055307407],[-10586803.974292725,4629600.3714241376],[-10586805.967671787,4629469.540680496],[-10586806.028473457,4629464.2755916659],[-10586808.488095773,4629299.048860888],[-10586810.19451379,4629206.4134867834],[-10586814.861400101,4628953.0953171477],[-10586814.92059234,4628949.0773842633],[-10586819.655778049,4628692.2705668062],[-10586824.380448537,4628435.9756351802],[-10586804.535908258,4628174.7885196954],[-10586785.014712831,4627917.8633573595],[-10586784.740320619,4627914.2370411484],[-10586767.343288332,4627685.2757554185],[-10586764.702151449,4627654.3655699026],[-10586742.908543034,4627399.281114826],[-10586742.569279246,4627395.2099315142],[-10586996.491899468,4627395.8261732673],[-10587254.50130037,4627396.4459606651],[-10587264.107202176,4627396.458785262],[-10587515.572908662,4627397.0412218748],[-10587780.043409729,4627397.6483295066],[-10587793.480026703,4627657.7115193214],[-10587806.954182781,4627918.4709164361],[-10587820.486101344,4628179.8901960943],[-10587834.055158691,4628441.9807692468],[-10587851.264969533,4628442.0938763367],[-10588105.532389607,4628443.5994248651],[-10588344.854592536,4628445.0109984111],[-10588358.384388698,4628445.0776672475],[-10588609.789230248,4628446.563833558],[-10588859.737803964,4628448.034820199],[-10589105.509808682,4628447.0564642949],[-10589294.557842372,4628446.2986690551],[-10589337.512841329,4628446.3362962753],[-10589351.68347184,4628446.343989173],[-10589376.064096589,4628446.3411479015],[-10589598.404137371,4628449.6701830002],[-10589826.565144848,4628453.0818949332],[-10589820.524570763,4628194.2336973799],[-10589814.519628169,4627936.9735821318],[-10589808.477554522,4627677.8169951066],[-10589802.417364739,4627417.9153177412],[-10589796.333551737,4627157.396490261],[-10589790.239630008,4626896.4278761018],[-10589784.149014939,4626635.005808291],[-10589778.046889614,4626373.1194738084],[-10589804.04696442,4626373.5738652898],[-10590036.468730455,4626377.4814166669],[-10590297.870784417,4626381.8696301226],[-10590317.991426328,4626382.2015501503],[-10590561.637646712,4626386.280417691],[-10590829.456849806,4626390.7574130241],[-10591087.010237796,4626388.1197224073],[-10591343.354340741,4626385.4858693192],[-10591600.168482009,4626382.8441007808],[-10591856.890217427,4626380.1956970161],[-10591857.236493001,4626638.453597826],[-10591857.583363956,4626897.6196578844],[-10591857.926825626,4627157.7070917264],[-10591858.272885183,4627418.6659376612],[-10591858.974746592,4627680.5937729282],[-10591859.677603656,4627943.4628489977],[-10591860.374748712,4628207.2683878243],[-10591861.075492349,4628472.0247577848],[-10591604.54607781,4628471.0540483911],[-10591348.599530913,4628470.0795060406],[-10591092.390283182,4628469.0984557709],[-10590836.204762682,4628468.1108956914],[-10590835.182446079,4628728.8624494225],[-10590834.20755687,4628977.2887432529],[-10590834.165645966,4628987.9002607018],[-10590833.170680795,4629245.2663259516],[-10590832.231965499,4629488.2204221375],[-10590832.196849739,4629500.9634558223],[-10590831.211207595,4629756.2530701794],[-10590830.265772654,4630001.2281629564],[-10590830.231278578,4630010.4342634007],[-10590829.240543008,4630263.6351312343],[-10590828.256422911,4630515.5074444273],[-10590580.985273939,4630517.7477558302],[-10590338.842499515,4630519.935053424],[-10590333.997449564,4630519.9701918578],[-10590087.312171672,4630522.1970946994],[-10589881.752703374,4630524.0481446004],[-10589847.453718711,4630523.5490320344],[-10589840.89060165,4630523.4429774266],[-10589595.373997545,4630519.7758467942],[-10589353.678169701,4630516.1595077692],[-10589349.516703345,4630516.0964636924],[-10589294.047170974,4630515.2665577428],[-10589163.193436339,4630523.4109175717],[-10589103.612077657,4630525.3213507282],[-10588875.901804013,4630532.6195891974],[-10588858.053668946,4630531.1176543664],[-10588857.479164215,4630788.7681177603],[-10588856.913397748,4631041.7154288283],[-10588856.917775482,4631046.2604654012],[-10588856.853099078,4631063.3060945803],[-10588856.930442488,4631170.788202513],[-10588856.190599579,4631236.6651940905],[-10588855.214279408,4631303.605800353],[-10588853.995782727,4631387.0548353139],[-10588853.72716834,4631554.7632873505],[-10588853.719022568,4631560.834747646],[-10588853.272567641,4631817.9795985948],[-10588852.882271187,4632042.7839795128],[-10588852.542217111,4632070.1972187627],[-10588852.49743711,4632074.979957737],[-10588849.148559427,4632331.7973910486],[-10588846.434700936,4632540.0030433713],[-10588848.053363722,4632588.5572555996],[-10588848.697642982,4632848.2621403504],[-10588849.341222575,4633107.7880389225],[-10588849.998318644,4633367.1561369002],[-10588850.65431447,4633626.3632297991],[-10588851.301506901,4633884.4644918079],[-10588851.947394123,4634143.1942127319],[-10588852.589577897,4634401.7999228621],[-10588853.235259648,4634661.4176974231],[-10588855.373750318,4634921.2567333058],[-10588857.459119078,4635174.6189919105],[-10588857.495432189,4635179.3670290373],[-10588859.59719583,4635436.7250881884],[-10588861.64553625,4635687.7659730371],[-10588861.706674904,4635692.9977225224],[-10588603.654148314,4635691.3083298877],[-10588345.3862751,4635689.6110192211],[-10588086.775509229,4635687.8882914893],[-10587827.867603041,4635686.1554746348],[-10587568.850772072,4635684.428023668],[-10587309.705794372,4635682.6926542958],[-10587050.05794055,4635680.9635467427],[-10586789.901804496,4635679.2258838462],[-10586789.916452343,4635674.1166412206],[-10586532.06415366,4635672.7244906314],[-10586274.095521769,4635671.3249323796],[-10586016.40340668,4635669.9285666123],[-10585758.793385718,4635668.5242813583]]]},"attributes":{"objectid":2114,"field_kid":"1000146328","approxacre":4134,"field_name":"GREELEY","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":22598,"maxgaswell":1,"lastgaspro":42,"lastgaswel":1,"lastgdate":"1-1997","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000146328}},{"geometry":{"rings":[[[-10629658.835544603,4665753.072823571],[-10629917.969119707,4665753.3496100726],[-10629918.327451406,4666012.614614469],[-10629918.676501034,4666265.0182294603],[-10629918.680979297,4666271.4734025532],[-10629919.037312107,4666529.9229967184],[-10629919.383559726,4666782.0379132759],[-10629919.384736387,4666787.9683629321],[-10629919.739571642,4667045.4216367975],[-10629920.088613182,4667299.7684805151],[-10629920.083395442,4667302.5915668989],[-10629920.451748542,4667559.4864603439],[-10629920.817900226,4667816.1144973934],[-10629925.418192651,4668076.8440329116],[-10629925.797638295,4668098.3841977119],[-10629926.753641386,4668337.0421747193],[-10629927.810572371,4668596.8012527544],[-10629928.867204692,4668856.14583614],[-10629929.917928621,4669115.8694147663],[-10629930.97005376,4669375.6798220472],[-10629932.014171947,4669634.9433176043],[-10629933.055288408,4669893.7850745469],[-10629675.408739176,4669896.163199557],[-10629417.111944223,4669898.5383824315],[-10629160.17360777,4669900.8897171468],[-10628903.921658849,4669903.227077405],[-10628646.324967572,4669905.5626543462],[-10628388.238714881,4669907.8964413553],[-10628130.147756949,4669910.2297163075],[-10627871.892811075,4669912.5582510764],[-10627607.50145009,4669908.7921866467],[-10627342.674289024,4669905.0121572195],[-10627334.579404097,4669904.8850825708],[-10627077.425243899,4669901.2003481044],[-10626811.750410127,4669897.3868775526],[-10626800.520328956,4669897.2436787775],[-10626545.796455877,4669893.5900716595],[-10626278.875292053,4669889.754825905],[-10626269.715285309,4669889.6327580148],[-10626010.979409982,4669885.9004928991],[-10625742.107107753,4669882.0129748173],[-10625485.892218728,4669879.6551049277],[-10625236.733523332,4669877.3549821312],[-10625230.566849943,4669877.285565909],[-10624976.139811382,4669874.9397304663],[-10624729.793741915,4669872.6623997968],[-10624722.602192877,4669872.6017065551],[-10624468.815688811,4669870.2431791434],[-10624221.266739367,4669867.9361251649],[-10624215.661910387,4669867.8836220503],[-10623963.142659646,4669865.5305968393],[-10623711.253531547,4669863.1785925673],[-10623454.404604862,4669863.5493017677],[-10623197.090845013,4669863.9143754542],[-10623192.771290196,4669863.9015926644],[-10622939.317257749,4669864.2740698988],[-10622681.079337832,4669864.6476094658],[-10622681.581966359,4669604.7441036776],[-10622682.08579614,4669344.8923210232],[-10622682.585220624,4669085.1332662413],[-10622683.083944129,4668825.4441216057],[-10622940.377814339,4668824.9110872727],[-10623197.206150539,4668824.3719054097],[-10623453.575159896,4668823.8151707137],[-10623709.478535123,4668823.254851467],[-10623709.028703421,4668563.4493560214],[-10623708.579672324,4668303.7359379539],[-10623708.226263417,4668099.1076160427],[-10623708.469329523,4668044.1027987339],[-10623709.619332511,4667784.5451840246],[-10623964.116817659,4667786.7706146566],[-10624218.513286801,4667788.9883583654],[-10624473.539778583,4667791.2237804644],[-10624728.952413274,4667793.4540746147],[-10624985.628697651,4667795.683975094],[-10625242.427222166,4667797.9070838876],[-10625500.131986337,4667800.118013232],[-10625756.424930613,4667802.3102459991],[-10626021.007184928,4667804.6082559889],[-10626286.931779165,4667806.9133036397],[-10626290.627218919,4667806.9473594548],[-10626551.844312115,4667809.2120808819],[-10626785.640845716,4667811.2350923475],[-10626816.50845921,4667811.7026806092],[-10626820.525868332,4667811.7455753768],[-10627080.248039633,4667815.6940210871],[-10627343.254678883,4667819.6843436211],[-10627346.066004207,4667819.731604334],[-10627605.81450532,4667823.65250351],[-10627867.048610592,4667827.5895379158],[-10627865.486126065,4667569.8919387246],[-10627863.916137034,4667311.1255707946],[-10627863.883326067,4667304.3063643733],[-10627862.360165101,4667052.0804167073],[-10627860.791580688,4666792.5090912152],[-10627860.740852153,4666784.9230277743],[-10627859.218191488,4666532.7319349647],[-10627857.647206562,4666272.5482041128],[-10627857.60557932,4666267.3009169381],[-10627856.066311788,4666011.9563923478],[-10627854.494028414,4665750.9575555259],[-10628111.223744852,4665751.2780460613],[-10628368.29805674,4665751.593025215],[-10628625.721869724,4665751.9005712885],[-10628883.489877697,4665752.2033746522],[-10629141.594772283,4665752.4986169301],[-10629400.046765195,4665752.7888602437],[-10629658.835544603,4665753.072823571]]]},"attributes":{"objectid":2123,"field_kid":"1000148267","approxacre":2722,"field_name":"POMONA","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":202313,"maxgaswell":8,"lastgaspro":9,"lastgaswel":1,"lastgdate":"6-1991","avgdepth":1222.51,"avgdepthsl":192.50999999999999,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000148267}},{"geometry":{"rings":[[[-10589867.586613208,4699107.3235788718],[-10589867.825453259,4698845.59358609],[-10589609.461310782,4698846.4095936082],[-10589351.784653755,4698847.2159565715],[-10589294.173641836,4698847.4121309388],[-10589093.525537467,4698851.239383664],[-10588835.168912107,4698856.1605831739],[-10588835.556659156,4698600.2562300619],[-10588835.945305679,4698343.5258803414],[-10588836.343660289,4698085.226502412],[-10588836.742312748,4697825.6156317648],[-10589094.990091953,4697823.3202868346],[-10589353.641833056,4697821.015301072],[-10589612.602227166,4697818.7101853155],[-10589871.909618078,4697816.3950436143],[-10589871.96446644,4697807.7362149125],[-10589873.009233166,4697549.2691556709],[-10589874.017873704,4697299.854634258],[-10589874.036080005,4697291.0727489097],[-10589875.053917166,4697033.173317425],[-10589876.070053006,4696775.5673689451],[-10589876.022768775,4696515.1061573075],[-10589875.975785719,4696255.158656436],[-10589875.934109541,4695995.7136480119],[-10589875.89323508,4695736.7603004556],[-10590136.172792273,4695738.2644090308],[-10590396.45355062,4695739.763635098],[-10590656.78126239,4695741.2365207188],[-10590917.097060315,4695742.7011832036],[-10591177.498256471,4695744.7918429906],[-10591437.937996384,4695746.8753073784],[-10591698.430496281,4695748.9332023412],[-10591958.983064553,4695750.9876279151],[-10591958.883732047,4696011.6937480895],[-10591958.785000293,4696272.4492092626],[-10591958.681663362,4696533.280357603],[-10591958.578026172,4696794.1797458865],[-10591957.328978039,4697053.3059051372],[-10591956.073924471,4697313.5926731983],[-10591954.791439326,4697573.5054494543],[-10591953.51065645,4697833.5545391534],[-10591952.238283539,4698093.7714398308],[-10591950.966311436,4698354.1506380877],[-10591949.707754945,4698614.6301972689],[-10591948.44799733,4698875.1800496383],[-10591946.979301052,4699135.5728296572],[-10591945.529022437,4699392.6605736967],[-10591945.507200757,4699395.6551816016],[-10591944.03399905,4699655.4121712856],[-10591942.584219631,4699910.8537161313],[-10591942.569707394,4699914.8606127361],[-10591681.918223806,4699911.8381360732],[-10591421.619742928,4699908.8133436013],[-10591161.643229319,4699905.7799370335],[-10590901.999795668,4699902.7446004441],[-10590642.718975732,4699899.7225014977],[-10590383.790958289,4699896.6971869534],[-10590125.164985349,4699893.6636441005],[-10589866.872392716,4699890.6275285203],[-10589867.109332085,4699629.8407670287],[-10589867.347672561,4699368.7446266683],[-10589867.586613208,4699107.3235788718]]]},"attributes":{"objectid":2133,"field_kid":"1000147611","approxacre":1439,"field_name":"VINLAND EAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":67411.369999999995,"maxoilwell":25,"lastoilpro":230.24000000000001,"lastoilwel":14,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":706,"avgdepthsl":-231,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147611}},{"geometry":{"rings":[[[-10595847.694665328,4694694.4862033213],[-10596105.635620655,4694694.7915434157],[-10596105.235646546,4694956.1589312954],[-10596104.835672492,4695217.6286232388],[-10596104.449614393,4695479.2076938255],[-10596104.064757727,4695740.8565771431],[-10595845.459517298,4695740.3413075889],[-10595586.227760559,4695739.8184614712],[-10595327.582073741,4695739.2819915144],[-10595069.116292516,4695738.7383249374],[-10595069.964103926,4695477.2747207778],[-10595070.811815372,4695215.9447754929],[-10595071.673943439,4694954.691690946],[-10595072.53617177,4694693.5412848061],[-10595331.145992083,4694693.8616521442],[-10595589.528852822,4694694.1746978704],[-10595847.694665328,4694694.4862033213]]]},"attributes":{"objectid":2207,"field_kid":"1000147608","approxacre":160,"field_name":"ROCKHOLD","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":495,"maxoilwell":1,"lastoilpro":53,"lastoilwel":1,"lastodate":"11-1989","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147608}},{"geometry":{"rings":[[[-10634876.807210488,4502212.0109449672],[-10634878.855224239,4501955.9244697224],[-10634626.483234882,4501957.4696761901],[-10634374.839763964,4501959.0052971486],[-10634122.744986149,4501960.5328499069],[-10633870.587538013,4501962.0549811376],[-10633870.67647705,4501951.1196320364],[-10633618.237892738,4501949.0604532184],[-10633365.571252037,4501946.9923222829],[-10633112.68326243,4501944.9066645708],[-10632859.576626999,4501942.8112981357],[-10632862.283199226,4501686.0403434578],[-10632864.983467672,4501429.8157254364],[-10632867.676030811,4501174.1481214529],[-10632870.363591628,4500919.0260168817],[-10632871.155016951,4500662.976229093],[-10632871.942843191,4500407.7902828762],[-10632872.738680989,4500153.0471459068],[-10632873.532019323,4499898.8840797395],[-10632874.318553599,4499645.3441581884],[-10632875.105989151,4499391.8461658303],[-10632875.881911943,4499138.3747197101],[-10632876.657334365,4498884.9332214296],[-10632737.618084809,4498885.25577542],[-10632624.545020156,4498886.3198836995],[-10632372.274934446,4498888.690959],[-10632119.700807169,4498891.0495559191],[-10631866.896221068,4498893.4057591762],[-10631865.633608228,4498638.8567479337],[-10631864.361171508,4498382.1445003757],[-10631864.276276864,4498365.2366064461],[-10631863.075108908,4498123.6527515901],[-10631861.778923567,4497863.2495336346],[-10631861.667977713,4497842.6094165407],[-10631860.467916153,4497601.9478927609],[-10631859.157800643,4497339.1207076432],[-10631859.094445327,4497324.7949611722],[-10631857.857587349,4497074.7996025914],[-10631856.541146809,4496808.9679275658],[-10631857.260955688,4496553.444678803],[-10631857.980362913,4496297.7141541177],[-10631857.992131414,4496290.0958860656],[-10631858.687154735,4496041.771201456],[-10631859.405958802,4495785.6119294716],[-10632112.208003866,4495790.7919189017],[-10632364.593179774,4495795.9560315479],[-10632616.557381874,4495801.0967059387],[-10632868.104114167,4495806.2241500141],[-10633119.235779347,4495811.3363473639],[-10633369.958484294,4495816.4355664048],[-10633620.255910654,4495821.5206729202],[-10633870.135666994,4495826.5922970129],[-10634122.53593847,4495828.378965972],[-10634375.092785822,4495830.16172795],[-10634627.505771257,4495831.9352903375],[-10634879.831158027,4495833.7010393301],[-10635132.246350557,4495836.3822299493],[-10635384.43739083,4495839.0548514519],[-10635636.398872785,4495841.7202900974],[-10635888.135802032,4495844.3764034649],[-10635888.161154052,4495848.8406976899],[-10635889.530921776,4496100.9436978875],[-10635890.924841288,4496357.7516789911],[-10635890.94468125,4496361.1043482404],[-10635892.325869957,4496614.8059099978],[-10635893.726999789,4496872.0863692658],[-10636145.041502962,4496872.4071920849],[-10636396.902420307,4496872.7224682663],[-10636649.295936244,4496873.022745071],[-10636902.213641366,4496873.3181054741],[-10637155.657137474,4496873.6070370171],[-10637409.637637187,4496873.8920604289],[-10637664.152938014,4496874.1716632657],[-10637919.195030954,4496874.444459145],[-10637918.235403979,4497126.7140911547],[-10637917.308771377,4497370.3673221981],[-10637917.286586704,4497378.481580968],[-10637916.322149444,4497629.7513042204],[-10637915.399803499,4497869.7273945995],[-10637915.357609725,4497880.5393594885],[-10637661.335507022,4497881.332996456],[-10637407.939908491,4497882.1169265322],[-10637154.899208914,4497882.9028728344],[-10636902.297903201,4497883.6798689179],[-10636902.323713936,4498134.3197883144],[-10636902.348480709,4498376.5976613266],[-10636902.340403693,4498382.8670036709],[-10636902.366293075,4498629.3262826176],[-10636902.393373324,4498873.7443728196],[-10636910.18292645,4498873.5995097691],[-10636911.538546035,4499127.1520735975],[-10636912.907492477,4499383.0547267664],[-10636912.949273212,4499389.6640427867],[-10636914.300877748,4499641.2090544673],[-10636915.698979856,4499901.6469935104],[-10636916.175320614,4500157.0928515512],[-10636916.652464185,4500412.9259405574],[-10636917.12620594,4500669.1655795816],[-10636917.599549193,4500925.7986856261],[-10636914.224760728,4501180.7745950837],[-10636910.850472327,4501435.6090491908],[-10636907.48329141,4501690.300902863],[-10636904.118212355,4501944.8506502155],[-10636651.1979977,4501944.731111858],[-10636398.288995599,4501944.6056468459],[-10636145.378691936,4501944.4624020355],[-10635892.459578335,4501944.3141133105],[-10635892.378715796,4501949.6901691416],[-10635888.996655319,4502204.0140217915],[-10635885.676939946,4502453.5602876553],[-10635885.618295066,4502457.5485778134],[-10635882.259252513,4502710.2791515915],[-10635878.908816079,4502962.2961060395],[-10635626.171863742,4502965.5545015046],[-10635374.923383325,4502968.7856530203],[-10635122.841767389,4502972.0160526298],[-10634870.698882852,4502975.2415357251],[-10634872.729890617,4502721.6452002712],[-10634874.765399277,4502467.2565054214],[-10634876.807210488,4502212.0109449672]]]},"attributes":{"objectid":2237,"field_kid":"1000152633","approxacre":4441,"field_name":"NEODESHA EAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":13059.74,"maxoilwell":5,"lastoilpro":64.719999999999999,"lastoilwel":1,"lastodate":"1-2009","cumm_gas":1170086,"maxgaswell":22,"lastgaspro":5635,"lastgaswel":19,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000152633}},{"geometry":{"rings":[[[-10648371.781716544,4597496.3667483302],[-10648370.565329857,4597239.5569184609],[-10648115.951803477,4597237.6261999141],[-10647861.420570381,4597235.6868277909],[-10647606.468060737,4597233.7433866989],[-10647351.777147301,4597231.7956176065],[-10647096.370824741,4597230.0389944818],[-10646841.404700473,4597228.2795691816],[-10646585.942114558,4597226.5104760146],[-10646330.294118987,4597224.7343853377],[-10646074.553018223,4597222.9537144182],[-10645818.505370719,4597221.1642651884],[-10645562.490360305,4597219.3618359258],[-10645306.040357811,4597217.5497384127],[-10645306.866374334,4597103.4186316049],[-10645306.547165873,4596961.2401595069],[-10645305.971649095,4596704.8202573508],[-10645305.394430345,4596448.3093745625],[-10645304.817211565,4596191.723932364],[-10645304.246099649,4595935.0447227042],[-10645303.676690955,4595679.5759456484],[-10645303.092263959,4595422.7934191898],[-10645302.512744201,4595167.5930423122],[-10645302.659143962,4594910.7723408584],[-10645302.80694332,4594652.0523072854],[-10645302.955644121,4594393.7590934401],[-10645303.102542499,4594135.1158658536],[-10645303.249241445,4593877.2608537581],[-10645303.39674155,4593619.6664457181],[-10645303.540437559,4593362.2982755015],[-10645303.683933573,4593105.1652305797],[-10645047.33744503,4593106.8201075895],[-10644955.608813982,4593107.4110000944],[-10644789.545420516,4593107.2787432587],[-10644532.688152436,4593107.0710636238],[-10644275.93750494,4593106.8576589432],[-10644019.86212109,4593106.6369986916],[-10643762.968311731,4593106.4087118823],[-10643754.831209864,4593106.4116956061],[-10643506.509094018,4593106.416008736],[-10643416.850903772,4593106.4160114145],[-10643250.575770743,4593106.0110250786],[-10642993.825623052,4593104.383591501],[-10642737.027321054,4593102.750815941],[-10642480.747705761,4593101.1078605205],[-10642224.796461964,4593099.4609597232],[-10641969.269898575,4593097.8186356938],[-10641714.081918219,4593096.1709669447],[-10641459.294591099,4593094.5157905202],[-10641204.84244317,4593092.8569230828],[-10641205.622952374,4592834.5362630812],[-10641206.399357233,4592577.5324732643],[-10641207.174360275,4592319.9838005882],[-10641207.94726089,4592062.5142983543],[-10641208.718960086,4591805.0884743659],[-10641209.490058549,4591547.7404114883],[-10641210.267263854,4591290.4477193244],[-10641211.044368993,4591033.2148450408],[-10641208.858425291,4590778.6015170831],[-10641206.661168644,4590522.7046507131],[-10641206.628630623,4590518.3595961621],[-10641204.464112053,4590265.5118781943],[-10641202.251137309,4590007.013885756],[-10641202.200178068,4590001.2255590437],[-10641200.028651638,4589747.168297912],[-10641197.795854166,4589486.0613048654],[-10641197.760713439,4589482.4773692042],[-10641195.537928134,4589223.6225561304],[-10641194.094549477,4589055.5628850264],[-10641191.755278924,4588960.0652772523],[-10641116.728491222,4588958.340601407],[-10640945.504191272,4588955.6202676855],[-10640698.877980191,4588951.6974908542],[-10640694.852631172,4588951.6397929173],[-10640451.90868175,4588947.7717937827],[-10640231.511112152,4588944.2583881328],[-10640204.570867212,4588943.8838664088],[-10640197.75506473,4588943.7838470368],[-10640170.434089538,4588943.4182291077],[-10639955.668785324,4588941.055029734],[-10639705.950881738,4588938.3014761815],[-10639700.908183042,4588938.2534498908],[-10639455.40334085,4588935.5500914846],[-10639204.039177356,4588932.7772246748],[-10639207.924889442,4588677.904981141],[-10639211.819811627,4588422.3469447028],[-10639215.732253302,4588166.1570758466],[-10639219.655707099,4587909.3214357635],[-10639223.579160511,4587652.6889831647],[-10639227.507318897,4587395.7421305915],[-10639231.439381341,4587138.4820455788],[-10639235.376248868,4586880.9092598939],[-10639235.44995187,4586624.3557357537],[-10639235.521652505,4586369.1540498817],[-10639235.587847006,4586112.6832562033],[-10639235.654041525,4585855.8236101521],[-10639235.721737804,4585598.1645614216],[-10639235.789434087,4585340.3985438831],[-10639235.861935835,4585081.96069765],[-10639235.897185247,4584957.0081053544],[-10639236.634327913,4584824.5405440489],[-10639276.816607395,4584820.8853204306],[-10639481.956378501,4584825.0640053023],[-10639727.282433722,4584830.0540577648],[-10639735.170241702,4584830.2061383082],[-10639972.94366792,4584835.0406783698],[-10640218.916454418,4584840.035688078],[-10640229.510919163,4584840.2478675013],[-10640465.185375798,4584845.0206567897],[-10640711.746327432,4584850.0082950303],[-10640720.608335678,4584850.1893479796],[-10640958.605916785,4584855.001271978],[-10641205.770250749,4584859.9917070428],[-10641205.504777486,4584601.8080534283],[-10641205.24210833,4584346.8407229101],[-10641205.232896082,4584340.3577885432],[-10641204.969127221,4584090.7119158925],[-10641204.699950512,4583834.8759125974],[-10641204.757912874,4583824.012671764],[-10641206.154219132,4583576.7507263673],[-10641207.616696622,4583317.7360168779],[-10641207.661745105,4583309.3731044019],[-10641209.076070206,4583057.7927092668],[-10641210.540949611,4582796.9405706832],[-10640967.31916089,4582794.8755205367],[-10640731.884363577,4582792.8696250888],[-10640724.435954597,4582792.8118659779],[-10640481.881019101,4582790.7305451045],[-10640250.739669282,4582788.7435497185],[-10640239.665166592,4582788.6567196455],[-10639997.797507368,4582786.5762836682],[-10639764.554485204,4582784.5660512783],[-10639756.269331591,4582784.5004202658],[-10639515.078637004,4582782.4025697866],[-10639274.228527104,4582780.3012858536],[-10639019.081776891,4582779.7992925895],[-10638763.503539596,4582779.2912031543],[-10638758.225180544,4582779.2737102667],[-10638507.462379726,4582778.7761282632],[-10638250.965905875,4582778.2601676807],[-10638244.053502055,4582778.2539985366],[-10637993.415442161,4582777.7329058703],[-10637735.938061016,4582777.1895044036],[-10637731.736217313,4582777.1834396906],[-10637478.25905229,4582776.6401319336],[-10637221.230177598,4582776.0812231228],[-10636964.410338325,4582776.8008605959],[-10636706.805212423,4582777.5163110094],[-10636700.728251778,4582777.5358049683],[-10636449.302101631,4582778.2241357965],[-10636191.621890841,4582778.9225581763],[-10636184.928133853,4582778.9430739312],[-10635935.066449802,4582779.6246564751],[-10635678.850491967,4582780.3164584897],[-10635674.626222925,4582780.3297100635],[-10635422.962504337,4582780.9940248402],[-10635167.412498225,4582781.6620574044],[-10634914.059672551,4582782.3652726738],[-10634661.870560603,4582783.0599638913],[-10634407.235387091,4582783.7440008502],[-10634160.613660406,4582784.4007758191],[-10634155.454335773,4582784.3647283027],[-10634151.349902051,4582784.3420153297],[-10633897.592922751,4582782.2957385536],[-10633644.575378435,4582780.2488207249],[-10633389.654585635,4582778.1857802169],[-10633133.718046315,4582776.1080075074],[-10632876.927440735,4582775.8362968219],[-10632624.884094641,4582775.5631486],[-10632620.320943031,4582775.564457532],[-10632363.902757965,4582775.2802899797],[-10632112.184979493,4582774.9950665375],[-10632107.661272412,4582774.9990438018],[-10631850.914916942,4582774.6942921644],[-10631599.106836604,4582774.3898805166],[-10631594.803478312,4582774.3797501186],[-10631338.422535438,4582774.0681331856],[-10631084.515685756,4582773.7530644666],[-10631040.187238885,4582773.0259036832],[-10630829.575572861,4582772.8377342969],[-10630572.324178083,4582772.600434728],[-10630568.160626333,4582772.5933340508],[-10630315.494464597,4582772.363133559],[-10630058.198018475,4582772.1226571593],[-10630053.815516846,4582772.1098387334],[-10629801.41605961,4582771.8577795299],[-10629544.670242025,4582771.5968412161],[-10629541.482704151,4582771.5990136461],[-10629287.918818049,4582771.3477213113],[-10629031.141564665,4582771.0848769126],[-10629031.282075817,4582514.5662799412],[-10629031.422184613,4582258.924616077],[-10629031.567800893,4582002.7236742871],[-10629031.713417364,4581746.4308481263],[-10629031.862337789,4581490.0508456584],[-10629031.959206143,4581323.3996619247],[-10629031.436302319,4581233.6449185489],[-10629031.17449929,4581189.1077242531],[-10629032.117430119,4580977.1584278885],[-10629033.260184634,4580720.5692744832],[-10629033.280858351,4580464.338159021],[-10629033.301933108,4580207.8435318079],[-10629033.327413388,4579951.1198414769],[-10629033.353194514,4579694.1646911576],[-10629033.388987789,4579436.8746885397],[-10629033.389802635,4579430.3949603094],[-10629033.972295141,4579179.4494632203],[-10629034.571685968,4578921.8521580491],[-10629035.16897369,4578664.0777004659],[-10629291.67298287,4578664.5242634015],[-10629547.702551287,4578664.9639683049],[-10629803.490143951,4578665.3993550008],[-10630058.939751398,4578665.8273751084],[-10630316.280214444,4578666.2484024577],[-10630572.109254586,4578666.6610508049],[-10630827.338911545,4578667.0748443408],[-10631040.729469355,4578667.4159846008],[-10631079.339935903,4578668.9295828547],[-10631089.716308398,4578412.4881778248],[-10631100.098085402,4578155.9004387455],[-10631110.475556888,4577899.4025059491],[-10631120.856530963,4577642.8178197024],[-10631131.240006467,4577386.1407977622],[-10631141.460713593,4577133.4745132085],[-10631141.628685931,4577129.2401183331],[-10631152.017163958,4576872.292210768],[-10631162.415851615,4576615.1293062568],[-10631406.536877461,4576615.2956706285],[-10631656.193546545,4576615.4602106065],[-10631664.019673012,4576615.4576050388],[-10631908.747783504,4576615.6077078162],[-10632161.541891029,4576615.7577430857],[-10632170.104548186,4576615.7579254387],[-10632417.223755397,4576615.8987369109],[-10632673.142386818,4576616.0384586984],[-10632676.906431967,4576616.0330930427],[-10632929.301589483,4576616.159889916],[-10633185.699361233,4576616.282970177],[-10633184.936771536,4576360.8296621488],[-10633184.173977444,4576104.4240719676],[-10633184.15483507,4576099.723892279],[-10633183.409278978,4575847.5049090367],[-10633182.648882503,4575589.9296001643],[-10633182.629934434,4575583.8916742206],[-10633181.878174746,4575332.4220266286],[-10633181.106862403,4575074.021668829],[-10633181.093514025,4575066.484478794],[-10633180.337248167,4574814.7482756004],[-10633179.555115554,4574554.5019802731],[-10633435.20284936,4574555.9017572748],[-10633690.456438877,4574557.2915062355],[-10633945.309877325,4574558.6683067083],[-10634153.151111199,4574559.7850541621],[-10634199.755454779,4574559.7679161513],[-10634453.763533611,4574559.6918338174],[-10634707.379870737,4574559.6086438429],[-10634960.525477128,4574559.5239339322],[-10635213.23248899,4574559.4330056245],[-10635467.150474783,4574561.1253555156],[-10635721.287007116,4574562.8133865315],[-10635975.507834602,4574564.4921475686],[-10636229.879732545,4574566.1658283975],[-10636228.555459484,4574309.5178962266],[-10636227.230385866,4574052.9212649586],[-10636225.904911932,4573796.332380197],[-10636224.579938743,4573539.7616525022],[-10636222.687330447,4573284.1205522167],[-10636220.808146067,4573030.2111384245],[-10636218.917144706,4572775.5383292446],[-10636217.02724514,4572520.9475650825],[-10636215.916316796,4572264.9853771273],[-10636214.804086532,4572008.9167766068],[-10636213.691154785,4571752.6944211051],[-10636212.578422632,4571496.3312698994],[-10636212.028824612,4571239.8685838757],[-10636211.480627691,4570983.3063746355],[-10636210.929126386,4570726.6064430578],[-10636210.378925975,4570469.7874577353],[-10636465.043453621,4570470.1008322025],[-10636719.861654412,4570470.4091283642],[-10636974.824618334,4570470.718058059],[-10637229.940354394,4570471.0219094595],[-10637484.98089662,4570469.5763053503],[-10637739.784571804,4570468.1252454063],[-10637994.361391207,4570466.6640331876],[-10638248.712856537,4570465.1962227011],[-10638502.786308477,4570463.7256221799],[-10638756.626897896,4570462.2503273748],[-10639010.215603312,4570460.7639920078],[-10639263.564538417,4570459.2708046278],[-10639512.651491553,4570461.3623606712],[-10639762.112966843,4570463.4521371732],[-10640011.961077955,4570465.5439419113],[-10640262.194823729,4570467.6328246677],[-10640512.823414531,4570469.7159929425],[-10640763.82712815,4570471.7953508226],[-10641015.215675561,4570473.8773715775],[-10641266.991259221,4570475.9571049912],[-10641266.796859099,4570732.3483115351],[-10641266.600456569,4570988.7247836925],[-10641266.406857133,4571245.0987064624],[-10641266.212056313,4571501.4776962819],[-10641266.017055204,4571757.8554063728],[-10641265.822154172,4572014.2366607664],[-10641265.627553366,4572270.6078761136],[-10641265.434654316,4572526.9619423486],[-10641264.468785057,4572783.4965360854],[-10641263.503916884,4573040.0457281973],[-10641262.538548157,4573296.6189151378],[-10641261.571777865,4573553.2164796898],[-10641260.606008649,4573809.8269965108],[-10641259.639438495,4574066.4535140162],[-10641258.681978662,4574323.1094928393],[-10641257.723017175,4574579.794935341],[-10641256.670045182,4574835.7398262396],[-10641255.613472616,4575092.2976436419],[-10641255.576170437,4575099.0345841926],[-10641254.549795548,4575349.4702110365],[-10641253.490927432,4575607.2643047022],[-10641253.449733989,4575616.2202477241],[-10641252.424854619,4575865.6596521046],[-10641251.35948601,4576124.6564252423],[-10641251.323285064,4576131.3941637529],[-10641250.29472162,4576384.2741004229],[-10641249.236568235,4576644.5147564476],[-10641247.292208549,4576903.6354002524],[-10641245.416271711,4577153.6118065193],[-10641245.349646354,4577162.0272595938],[-10641243.409081846,4577419.6858345978],[-10641241.555544697,4577665.4116307618],[-10641241.470014444,4577676.6075141979],[-10641239.540052926,4577932.8242526343],[-10641237.679415308,4578179.8965929896],[-10641237.613290492,4578188.3132606279],[-10641235.695433637,4578443.0841384036],[-10641233.782978231,4578697.1066001402],[-10641229.606678586,4578952.8493573144],[-10641225.424273396,4579208.8927690554],[-10641221.811804133,4579429.9619641863],[-10641221.720713034,4579465.1987274578],[-10641221.056637475,4579721.7424221309],[-10641220.391861139,4579978.5394462682],[-10641219.72598356,4580235.5656795893],[-10641219.060506415,4580492.7597733084],[-10641218.395129357,4580750.0969643397],[-10641472.693728447,4580753.3564028209],[-10641727.261031091,4580756.6122826776],[-10641982.09213176,4580759.8751495099],[-10642237.181023674,4580763.1326790508],[-10642492.093616921,4580766.3772517126],[-10642747.562137885,4580769.621439646],[-10643003.572570752,4580772.8740097759],[-10643260.130922308,4580776.1268305294],[-10643257.568099078,4581031.9456792101],[-10643255.001871839,4581287.8713521548],[-10643252.431239454,4581543.9057633523],[-10643249.860506784,4581800.0606111884],[-10643248.456290826,4582056.4571204446],[-10643247.051474063,4582312.8639173023],[-10643245.636145292,4582569.2779528555],[-10643244.221216869,4582825.7316331416],[-10643244.259129206,4583083.1241917349],[-10643244.294233635,4583333.3287773849],[-10643244.303648602,4583339.9110999228],[-10643244.33094815,4583596.0857042642],[-10643244.357339898,4583841.9702201169],[-10643498.677009402,4583846.8273943467],[-10643753.343470942,4583851.6863476029],[-10644008.359527696,4583856.5505113667],[-10644263.724278631,4583861.4155644998],[-10644263.041424273,4584117.7005936578],[-10644262.357268751,4584374.4235970769],[-10644261.671211036,4584631.1863953276],[-10644260.97954802,4584889.2372961417],[-10644269.542919222,4584889.4653814109],[-10644524.008905267,4584896.0078651328],[-10644771.275060626,4584902.3606427228],[-10644777.786714716,4584902.5283696596],[-10644955.545270529,4584907.0871065045],[-10645030.828893667,4584908.7302301228],[-10645184.126723928,4584912.0737808868],[-10645282.995582549,4584913.0778796831],[-10645536.184628209,4584919.0734528536],[-10645790.853045192,4584925.0987607157],[-10645801.546121724,4584925.3475478981],[-10646046.973302402,4584931.1446518889],[-10646304.546000542,4584937.222184672],[-10646318.64472341,4584937.5489878682],[-10646563.404151022,4584943.3219546145],[-10646823.735365743,4584949.4573063916],[-10646834.388997819,4584949.7036795262],[-10647085.510812119,4584955.6096827751],[-10647348.721580137,4584961.7925571734],[-10647345.309185999,4585216.7264433671],[-10647342.119419508,4585455.0093693919],[-10647341.923619855,4585470.2517152522],[-10647338.539052555,4585722.3831421994],[-10647335.44378126,4585952.9099866031],[-10647335.165795727,4585973.115410463],[-10647331.81956807,4586223.1024614591],[-10647328.703575924,4586455.8577729696],[-10647328.499867631,4586471.3614367675],[-10647325.181466112,4586718.0314176567],[-10647324.784659311,4586747.501807115],[-10647322.406475553,4586962.8242070731],[-10647582.769317748,4586965.1453569792],[-10647831.754606478,4586967.3600609647],[-10647840.600199791,4586967.4928436195],[-10648096.032174177,4586971.2871038206],[-10648349.085161239,4586975.0390495975],[-10648349.872364547,4587234.604968424],[-10648350.656562854,4587493.1246986492],[-10648351.449471192,4587751.7205615845],[-10648352.241177754,4588010.0167252375],[-10648353.781328445,4588267.2745632529],[-10648355.319276299,4588524.2346550403],[-10648356.846111281,4588780.9075323269],[-10648358.371844692,4589037.2957168864],[-10648361.097831154,4589291.4587196102],[-10648363.825820485,4589545.8487227345],[-10648366.548304236,4589800.4850724265],[-10648369.274392601,4590055.30636416],[-10648371.478791866,4590310.3441543784],[-10648373.685894703,4590565.5805235039],[-10648375.896401457,4590820.739890269],[-10648378.109812053,4591076.1221436458],[-10648634.270501208,4591078.7793733887],[-10648890.772075973,4591081.4354568291],[-10648894.897639912,4591081.4735809984],[-10648986.37165126,4591082.4276613174],[-10649147.603423061,4591083.6750180721],[-10649404.700270046,4591085.6569074793],[-10649402.840626493,4591342.3205407243],[-10649400.963766988,4591601.0544281546],[-10649399.101020653,4591858.331961425],[-10649397.23907458,4592115.356292462],[-10649395.364816517,4592373.5674080262],[-10649393.593149262,4592617.7722744904],[-10649393.52990059,4592630.56626039],[-10649392.325998306,4592887.7165096551],[-10649391.13470556,4593142.2950469386],[-10649388.790912071,4593398.4109655535],[-10649386.424797352,4593656.905762013],[-10649384.056979544,4593914.8825084018],[-10649381.684056524,4594173.3063832559],[-10649640.149694884,4594173.9189197496],[-10649898.008847315,4594174.5237001469],[-10650155.27613038,4594175.1301386189],[-10650411.959553109,4594175.729075266],[-10650668.087848876,4594176.7511493992],[-10650923.712875502,4594177.7649579179],[-10651178.805600127,4594178.7652850077],[-10651433.370828206,4594179.7563288808],[-10651433.287888467,4594436.3939180421],[-10651433.204448776,4594693.3245208459],[-10651433.114101373,4594950.3110035295],[-10651433.02425612,4595208.041698942],[-10651695.758276742,4595210.6728460668],[-10651958.461462718,4595213.2963602813],[-10652221.309412684,4595215.9093140103],[-10652484.237553604,4595218.5151429772],[-10652484.804096216,4595474.4029264534],[-10652485.370638952,4595730.3286018819],[-10652485.935379792,4595986.2978980709],[-10652486.501021737,4596242.2876596916],[-10652487.216934523,4596498.6078648446],[-10652487.934050167,4596755.543710324],[-10652488.656773625,4597013.0795898065],[-10652489.37909813,4597271.2292921674],[-10652484.573660038,4597271.1541144811],[-10652484.395564124,4597528.7640664633],[-10652484.218869764,4597786.3735704031],[-10652484.040373348,4598043.9897533832],[-10652483.861376368,4598301.6206340557],[-10652223.928874759,4598297.8764920766],[-10651965.27231765,4598294.144052282],[-10651706.53607066,4598290.3948148731],[-10651448.17825233,4598286.6440493418],[-10651446.72805422,4598028.9533874029],[-10651445.279658278,4597771.2649542959],[-10651443.838470615,4597513.5755682001],[-10651442.399986148,4597255.8926100675],[-10651440.878233744,4597102.930301033],[-10651439.786474304,4596999.1964573907],[-10651437.678857015,4596798.9501480171],[-10651437.496731753,4596743.7533641187],[-10651436.670043511,4596487.7080747904],[-10651435.843955949,4596231.6326112356],[-10651178.235989438,4596230.610153324],[-10650921.236611586,4596229.583110638],[-10650664.156542532,4596228.5569593804],[-10650407.225942682,4596227.523808796],[-10650148.743487639,4596226.7624645419],[-10649887.774419228,4596225.9859950058],[-10649877.381560421,4596225.9500547918],[-10649624.290705713,4596225.1856204728],[-10649358.290545087,4596224.3739382233],[-10649358.130184948,4596236.3489857921],[-10649366.184732528,4596480.4606901119],[-10649374.625939174,4596736.2762509054],[-10649383.047624093,4596991.8535633255],[-10649386.693146551,4597102.4942322681],[-10649387.420727953,4597247.2010354931],[-10649388.900961146,4597504.0518084792],[-10649390.38139472,4597760.9171128832],[-10649391.871939873,4598017.7838413017],[-10649393.361884519,4598274.6784662604],[-10649139.168685202,4598272.7437015185],[-10648885.044864574,4598270.8030823711],[-10648630.396250159,4598268.8590308232],[-10648375.430476949,4598266.9063274413],[-10648374.214690559,4598010.052650854],[-10648372.997903142,4597753.1984888548],[-10648371.781716544,4597496.3667483302]]]},"attributes":{"objectid":2238,"field_kid":"1000146312","approxacre":31751,"field_name":"NEOSHO FALLS-LEROY","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":5888648.8200000003,"maxoilwell":1100,"lastoilpro":13317.790000000001,"lastoilwel":903,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":1064.11977273,"avgdepthsl":77.892499999999998,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146312}},{"geometry":{"rings":[[[-10577787.023181926,4504974.3526679734],[-10578040.807975277,4504974.2532649757],[-10578042.677527336,4505229.077221184],[-10578044.548280278,4505483.8831524532],[-10578046.440457538,4505738.6820324436],[-10578048.332634302,4505993.4627594417],[-10577794.906842876,4505993.6357214982],[-10577541.659656119,4505993.8027575733],[-10577288.549926605,4505993.9528922243],[-10577035.579656878,4505994.0974786915],[-10577033.400060421,4505739.2512630271],[-10577031.218761755,4505484.3969887951],[-10577029.000219727,4505229.5172488987],[-10577026.78187746,4504974.6199921817],[-10577280.02014453,4504974.5373561494],[-10577529.680609101,4504974.4501207108],[-10577533.437917242,4504974.4466504361],[-10577787.023181926,4504974.3526679734]]]},"attributes":{"objectid":2265,"field_kid":"1000147517","approxacre":159,"field_name":"GREEN ELM EAST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000147517}},{"geometry":{"rings":[[[-10633939.160387775,4573538.208604929],[-10634192.484447798,4573538.2152259182],[-10634194.298868274,4573793.1047824891],[-10634196.124208188,4574049.5094176056],[-10634197.941333856,4574304.8021198632],[-10634199.755454779,4574559.7679161513],[-10634153.151111199,4574559.7850541621],[-10633945.374750465,4574558.668941075],[-10633690.456438877,4574557.2915062355],[-10633435.206553532,4574555.9013763089],[-10633179.555115554,4574554.5019802731],[-10633178.680501631,4574299.4363406729],[-10633177.821325799,4574049.0357194282],[-10633177.801686147,4574045.0755776446],[-10633176.927678727,4573791.2997801406],[-10633176.088955738,4573547.6116914973],[-10633176.053674147,4573538.1549938796],[-10633430.912964836,4573538.178997037],[-10633685.273793615,4573538.1976715652],[-10633939.160387775,4573538.208604929]]]},"attributes":{"objectid":2280,"field_kid":"1000152660","approxacre":157,"field_name":"PIQUA NORTH","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000152660}},{"geometry":{"rings":[[[-10583693.811237475,4717770.2840915341],[-10583695.34330235,4717627.6763620572],[-10583435.892847478,4717624.5619805148],[-10583177.278743247,4717621.4486207766],[-10582920.018378053,4717618.3397539658],[-10582663.938655062,4717615.2383435685],[-10582665.19262707,4717352.4467756413],[-10582666.444397969,4717089.9956327025],[-10582667.674747592,4716828.353045322],[-10582668.900694761,4716567.3730738284],[-10582927.289114574,4716569.6222302262],[-10583186.689685373,4716571.8753675595],[-10583191.211428897,4716571.9126581065],[-10583191.607969066,4716310.6090755742],[-10583192.005312003,4716049.8266940266],[-10583450.470553815,4716051.5405606646],[-10583708.553760745,4716053.2461916842],[-10583708.627280049,4716063.9124299837],[-10583710.244057415,4716314.5791480159],[-10583710.760913292,4716394.7202174524],[-10583708.473318635,4716576.4107097331],[-10583708.281750195,4716591.2042910643],[-10583971.135326328,4716587.2377253985],[-10584227.22561026,4716583.3679265287],[-10584233.932338709,4716583.2774711559],[-10584492.055935916,4716579.365421745],[-10584747.057882991,4716575.4944793023],[-10584747.576159023,4716832.6794600412],[-10584748.057136295,4717071.4721770072],[-10584748.070493029,4717085.0570399472],[-10584748.597464684,4717337.6367475847],[-10584749.092952607,4717574.5719371615],[-10584736.712478993,4717576.370279857],[-10584736.286141114,4717820.3993789274],[-10584735.836019911,4718078.697626465],[-10584735.802116485,4718090.1724933311],[-10584735.374085004,4718336.8935099775],[-10584734.916769644,4718599.7444835287],[-10584474.648074782,4718603.0409655748],[-10584213.32958688,4718606.3431267291],[-10584206.581815487,4718606.4308986552],[-10583950.846875811,4718609.6415674016],[-10583687.741457244,4718612.9379557986],[-10583689.299580328,4718359.5741058793],[-10583690.721722666,4718128.215286823],[-10583690.836695705,4718110.9838646483],[-10583692.218027569,4717890.3038998013],[-10583692.465046413,4717871.7715383358],[-10583693.811237475,4717770.2840915341]]]},"attributes":{"objectid":2285,"field_kid":"1000147607","approxacre":512,"field_name":"OXBOW","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":2916.3299999999999,"maxoilwell":1,"lastoilpro":132.55000000000001,"lastoilwel":1,"lastodate":"10-2008","cumm_gas":34706,"maxgaswell":3,"lastgaspro":1014,"lastgaswel":3,"lastgdate":"12-1985","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000147607}},{"geometry":{"rings":[[[-10600812.556693528,4484588.2526015295],[-10601073.432443881,4484590.754014981],[-10601072.324380662,4484846.8392278934],[-10601071.235143013,4485098.76955665],[-10601071.218717888,4485102.831847175],[-10601070.097935326,4485358.7251932044],[-10601069.000152333,4485609.1279988689],[-10601068.978752574,4485614.5378926657],[-10601067.871381553,4485870.2797605721],[-10601066.785925552,4486121.2550387951],[-10601066.749190843,4486125.9115080032],[-10601065.644117352,4486381.4467259888],[-10601064.538138879,4486636.8182948697],[-10600804.796676386,4486634.8208265221],[-10600544.25009108,4486632.8091170732],[-10600285.623706307,4486630.8095271578],[-10600027.986555059,4486628.8100796798],[-10599770.939680131,4486626.8076202814],[-10599514.724758515,4486624.8049230194],[-10599259.327874085,4486622.7940550717],[-10599004.659924904,4486620.7829475841],[-10599004.017123276,4486365.4355370114],[-10599003.37705165,4486111.2637623055],[-10599002.712420339,4485855.7241268503],[-10599002.045774739,4485599.6687101806],[-10599001.374412885,4485343.1463986505],[-10599000.701838771,4485086.1564709712],[-10599000.043168731,4484828.6561580021],[-10598999.383085286,4484570.648266417],[-10599256.973171268,4484573.1719045443],[-10599515.035097864,4484575.6932849493],[-10599519.691033142,4484575.7301208004],[-10599773.594694436,4484578.2029663362],[-10600032.698214417,4484580.7195811514],[-10600038.774477659,4484580.7847654372],[-10600292.189078201,4484583.2343145302],[-10600552.137966583,4484585.7389848055],[-10600556.67536643,4484585.7921844497],[-10600812.556693528,4484588.2526015295]]]},"attributes":{"objectid":2305,"field_kid":"1000149404","approxacre":654,"field_name":"POWERS","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149404}},{"geometry":{"rings":[[[-10578682.722306358,4775845.3968094895],[-10578684.208643772,4775582.2290734733],[-10578429.162484398,4775580.7712956527],[-10578171.218614882,4775579.2909837076],[-10578160.009710096,4775579.2174216816],[-10577911.980466928,4775577.8025132194],[-10577650.917734727,4775576.3087332929],[-10577637.678410394,4775576.2432004558],[-10577389.750783598,4775574.810809778],[-10577126.677354734,4775573.2832294675],[-10577116.077345509,4775573.2303888081],[-10576862.262693826,4775571.7381661357],[-10576594.763008842,4775570.1573590506],[-10576600.072283696,4775530.4624665761],[-10576604.116408713,4775311.2404542258],[-10576608.895082399,4775052.2088728109],[-10576613.647525812,4774793.1544378037],[-10576618.401270276,4774534.1224736851],[-10576347.733502217,4774535.6027007448],[-10576078.120238543,4774537.0717906654],[-10575809.289668825,4774538.5187365962],[-10575541.332396517,4774539.9546749732],[-10575543.506940927,4774280.270282533],[-10575545.685391737,4774019.8713523718],[-10575545.69821414,4774017.2220468689],[-10575547.864545286,4773758.7534079729],[-10575550.058717925,4773496.9212960321],[-10575379.862243272,4773496.8439068878],[-10575291.955634642,4773497.7797809215],[-10575022.595998438,4773500.6409293544],[-10575014.391155135,4773500.7132273763],[-10574752.98177249,4773503.4983252455],[-10574484.383603703,4773506.3528675037],[-10574484.210355518,4773245.3710152237],[-10574484.192812959,4773218.4001924032],[-10574486.751902681,4772983.0702376431],[-10574489.578176036,4772720.1437068554],[-10574492.415564837,4772456.30340946],[-10574495.248845864,4772193.5971424812],[-10574498.088736046,4771930.3806724325],[-10574500.942343414,4771666.6755290693],[-10574501.298844364,4771633.6264277175],[-10574506.691251209,4771402.0211390462],[-10574506.592357157,4771291.1346995933],[-10574507.781237898,4771142.6305736369],[-10574509.841824068,4770885.3562837243],[-10574511.926842412,4770626.6101992792],[-10574513.141759377,4770475.8846988138],[-10574514.65739706,4770367.553378202],[-10574782.77859748,4770366.5282430574],[-10575050.139131539,4770365.49961749],[-10575317.298937079,4770364.4524832554],[-10575583.99773821,4770363.4011655962],[-10575850.613498038,4770363.0702326531],[-10576116.506833147,4770362.7345123235],[-10576381.700669764,4770362.3798955744],[-10576646.213428874,4770362.0208796393],[-10576646.417845573,4770622.1753939707],[-10576646.622963788,4770882.0861558653],[-10576646.848005507,4771141.7338584065],[-10576647.071846724,4771401.0793864308],[-10576645.442863818,4771663.5719677405],[-10576643.814381197,4771926.1222759839],[-10576642.203318249,4772188.7108962024],[-10576640.591354001,4772451.3550506281],[-10576895.915605074,4772452.2982028788],[-10577151.271292135,4772453.2334579546],[-10577406.713478059,4772454.1658649612],[-10577662.152660642,4772455.0928347148],[-10577660.481072765,4772716.9931654939],[-10577658.802775022,4772979.6954144146],[-10577657.119274082,4773241.2920563631],[-10577655.439778836,4773502.4082668498],[-10577667.296219487,4773502.4653560109],[-10577921.401620664,4773503.6826097388],[-10578166.313021926,4773504.8522242112],[-10578174.473841982,4773504.8984407019],[-10578426.509379435,4773506.1164743593],[-10578677.509434432,4773507.3218204109],[-10578939.25296329,4773506.8357494185],[-10579115.317140514,4773506.5047516711],[-10579201.458720211,4773506.2640910773],[-10579205.967569608,4773506.2612380311],[-10579464.142222863,4773505.6200523954],[-10579727.28404893,4773504.9615112646],[-10579726.350899072,4773762.9286933495],[-10579725.413742632,4774021.75633262],[-10579724.466472838,4774281.3528161272],[-10579723.515897458,4774541.7179445075],[-10579985.558007194,4774542.6343955472],[-10580248.918322703,4774543.5508463876],[-10580513.518054022,4774544.4458010402],[-10580779.601380022,4774545.3390719919],[-10580779.499843448,4774555.162897856],[-10580776.763086872,4774808.1458739536],[-10580773.912177231,4775071.8378200792],[-10580773.812547779,4775079.2973402496],[-10580771.023622632,4775336.3545015119],[-10580768.891173961,4775533.0140672857],[-10580768.874810986,4775601.7726521958],[-10580506.132360242,4775599.328793359],[-10580245.473790292,4775596.8977574613],[-10579984.347285992,4775594.4562326549],[-10579723.577889869,4775592.0099174362],[-10579721.926209183,4775854.222788644],[-10579720.280936781,4776115.9575967006],[-10579718.622750517,4776377.244093406],[-10579716.96776887,4776638.0549149448],[-10579456.845967324,4776636.5626356164],[-10579196.330916619,4776635.0614196835],[-10578936.969484072,4776633.5776906274],[-10578678.25178716,4776632.0909837093],[-10578678.291443566,4776627.5244642198],[-10578679.750235338,4776370.3200949011],[-10578681.237271447,4776108.1049239496],[-10578682.722306358,4775845.3968094895]]]},"attributes":{"objectid":2406,"field_kid":"1000149617","approxacre":2562,"field_name":"LEAVENWORTH NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":278749.96999999997,"maxoilwell":24,"lastoilpro":591.32000000000005,"lastoilwel":13,"lastodate":"2-2009","cumm_gas":3002419,"maxgaswell":29,"lastgaspro":1115,"lastgaswel":3,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149617}},{"geometry":{"rings":[[[-10614753.191658167,4580991.1605267068],[-10614752.88148123,4580735.7211483335],[-10614495.64127101,4580731.805971073],[-10614239.764816914,4580727.9031145349],[-10613983.550778318,4580723.997465183],[-10613734.554072425,4580720.1936894683],[-10613727.566202305,4580720.0495070564],[-10613471.99580567,4580715.1295814998],[-10613216.367944239,4580710.2030513035],[-10612961.164167291,4580705.2729641106],[-10612706.225293236,4580700.3412262853],[-10612707.092814315,4580443.8330759127],[-10612707.938067518,4580193.6056755539],[-10612707.965638394,4580187.7655278761],[-10612708.836357081,4579932.1269883411],[-10612709.686611,4579682.6153793223],[-10612709.709375437,4579676.9150116388],[-10612710.536278097,4579431.0398094943],[-10612710.545834251,4579421.5542161623],[-10612710.791274706,4579170.6099781524],[-10612710.787990671,4579166.3495899504],[-10612710.988685366,4578957.5072202189],[-10612710.650112966,4578911.3217286887],[-10612709.3983759,4578740.5306181451],[-10612710.908386076,4578656.4784924574],[-10612455.399921067,4578655.0197570622],[-10612201.066295685,4578653.5617801407],[-10611946.046488505,4578652.0894512702],[-10611690.984633777,4578650.6106441766],[-10611435.979944577,4578649.1309478162],[-10611180.563486382,4578647.6423608763],[-10610926.193621619,4578646.1538976887],[-10610672.374184713,4578644.6604787121],[-10610673.456684778,4578901.3483695053],[-10610674.54098589,4579158.2695050407],[-10610674.566488372,4579163.0306644924],[-10610675.637900062,4579415.4811971197],[-10610675.703490151,4579430.5872313045],[-10610674.403633073,4579672.9096398856],[-10610417.616200419,4579671.7494706856],[-10610159.985506335,4579670.5809196224],[-10609904.225345548,4579669.4174439656],[-10609649.432187701,4579668.253329901],[-10609395.211783256,4579667.0803210307],[-10609142.143793216,4579665.9056567838],[-10608888.320842389,4579664.7298517693],[-10608634.020747671,4579663.5447743563],[-10608633.910162061,4579430.5559369754],[-10608633.795184571,4579407.1277344609],[-10608632.548013117,4579155.0700117564],[-10608632.522410916,4579150.9480964728],[-10608631.243728809,4578895.0838621203],[-10608629.969049497,4578639.5438999264],[-10608627.381269403,4578384.6754788915],[-10608624.792988922,4578129.8801406734],[-10608622.208813302,4577875.1578797875],[-10608619.628442124,4577620.5211383644],[-10608617.051976401,4577365.8318464076],[-10608614.473110536,4577110.8476720573],[-10608611.895441068,4576856.7219891325],[-10608609.320672516,4576603.060132727],[-10608864.906982668,4576603.5043866457],[-10609121.06264144,4576603.9443207132],[-10609126.697960056,4576603.9477328826],[-10609377.820686523,4576604.3707905263],[-10609635.173409037,4576604.7996716155],[-10609642.68065978,4576604.8034591703],[-10609893.132121971,4576605.2119133426],[-10610151.694923043,4576605.6277093627],[-10610157.310318984,4576605.6292165238],[-10610410.852401597,4576606.036518354],[-10610670.60495805,4576606.4457065649],[-10610671.058005404,4576350.3356069317],[-10610671.510953458,4576094.0655953921],[-10610671.974414269,4575837.6422873866],[-10610672.437175035,4575581.070773894],[-10610416.678893352,4575580.3974410156],[-10610160.545584893,4575579.7180136368],[-10609904.109732248,4575579.0211892975],[-10609647.321078146,4575578.3172544576],[-10609648.482959248,4575321.6808860498],[-10609649.642633904,4575065.6520189364],[-10609650.798406361,4574809.2139894078],[-10609651.953978729,4574552.7127183471],[-10609395.532463441,4574552.5714649167],[-10609138.764053447,4574552.4234825484],[-10608881.657558795,4574552.2663586233],[-10608624.181143235,4574552.1044105161],[-10608624.693397962,4574297.0985165304],[-10608625.204348683,4574042.4648296097],[-10608625.712099362,4573787.270222744],[-10608626.22135327,4573531.8318994315],[-10608626.725502949,4573276.1395935798],[-10608627.229954625,4573020.183928797],[-10608627.741415769,4572763.9868880324],[-10608628.253078682,4572507.5432840008],[-10608372.777599618,4572505.4716603663],[-10608117.221229127,4572503.3920391323],[-10607861.399257267,4572501.2942644544],[-10607605.395579346,4572499.1892541721],[-10607349.187369362,4572497.0855142456],[-10607092.753803698,4572494.9737770976],[-10606836.143437644,4572492.8441402167],[-10606579.316525947,4572490.7059982978],[-10606323.391935192,4572489.2972035296],[-10606067.384050122,4572487.880284044],[-10606063.641795143,4572487.8568070522],[-10605811.296074424,4572486.4515581839],[-10605555.114793025,4572485.016865842],[-10605550.078666866,4572484.9913608506],[-10605298.861630235,4572483.5830624606],[-10605042.525173161,4572482.1387222596],[-10605038.247309171,4572482.1171509251],[-10604786.099114632,4572480.6862573568],[-10604529.619595759,4572479.2224938357],[-10604531.289168114,4572223.152818541],[-10604532.962849569,4571966.5197256627],[-10604534.636526674,4571710.3574714111],[-10604536.309401458,4571454.319852462],[-10604537.988288967,4571197.5474895835],[-10604539.66968088,4570940.5488110697],[-10604541.342764828,4570683.3352575339],[-10604543.017452089,4570425.9049408892],[-10604544.021463515,4570170.0791306756],[-10604545.010731343,4569917.3960044952],[-10604545.026073182,4569914.5186767848],[-10604546.036687339,4569659.2102329973],[-10604547.030045295,4569408.1941523366],[-10604547.042093232,4569404.1570804371],[-10604548.041690186,4569149.357296492],[-10604549.028445553,4568897.7178580547],[-10604549.044388246,4568894.8199998885],[-10604550.040676728,4568640.532226746],[-10604551.034360001,4568386.4871058278],[-10604552.141586265,4568130.7568743881],[-10604553.249013022,4567874.9700031755],[-10604554.347631603,4567618.9427535189],[-10604555.448153637,4567362.7385886116],[-10604556.541967854,4567106.533641886],[-10604557.636884097,4566850.2125750165],[-10604558.738508608,4566593.789226599],[-10604559.841235109,4566337.253326958],[-10604815.125151265,4566339.0501017431],[-10605070.464030242,4566340.8402789477],[-10605325.863678675,4566342.6190371793],[-10605581.325798444,4566344.3896752568],[-10605582.370963199,4566084.4116223548],[-10605583.415123018,4565824.8819756359],[-10605584.451370429,4565565.7569315583],[-10605585.487313885,4565307.0579000488],[-10605840.932796881,4565307.9597416446],[-10606096.036592795,4565308.8535912996],[-10606350.790692538,4565309.740083335],[-10606605.193494311,4565310.6180759622],[-10606605.567866208,4565051.4935924849],[-10606605.942034608,4564792.7986522214],[-10606606.318302063,4564534.5398194948],[-10606606.694265816,4564276.7218820872],[-10606861.896364463,4564275.5458084652],[-10607116.926467964,4564274.3644074667],[-10607371.780371511,4564273.1826263955],[-10607626.461579114,4564271.9965327857],[-10607626.035695776,4564016.2095459159],[-10607625.610514468,4563760.2687780214],[-10607625.183632422,4563504.1788067771],[-10607624.757452307,4563247.9490292985],[-10607624.531099664,4562991.5760309584],[-10607624.303246375,4562735.0683204522],[-10607624.075894706,4562478.4238783522],[-10607623.847543044,4562221.6334562423],[-10607623.41655218,4561966.2478819005],[-10607622.985064533,4561710.3474742416],[-10607622.56128368,4561454.7425166266],[-10607622.139104567,4561199.1678155232],[-10607622.168539178,4560943.2354483819],[-10607622.198872149,4560687.6838535406],[-10607622.226900088,4560432.4834569339],[-10607622.253423821,4560177.6434892192],[-10607877.044960471,4560176.8452424565],[-10608131.933807055,4560176.0409091469],[-10608386.943790542,4560175.2268119659],[-10608642.012540344,4560174.4068818986],[-10608896.249239048,4560175.0881756367],[-10609150.264687669,4560175.7623686427],[-10609403.973589702,4560176.4312362392],[-10609657.402875623,4560177.0940175932],[-10609910.564959511,4560177.7437385032],[-10610163.468250828,4560178.3873731457],[-10610416.098533485,4560179.0264431592],[-10610668.459511682,4560179.6596805239],[-10610923.616550861,4560180.6943738693],[-10611179.031381935,4560181.7253896967],[-10611434.720423505,4560182.7462610053],[-10611690.677268306,4560183.7606650982],[-10611946.598873526,4560184.7683486938],[-10612203.018942893,4560185.7723545022],[-10612459.906040873,4560186.7672299948],[-10612717.209810475,4560187.7570329467],[-10612974.40465585,4560189.0232672347],[-10613231.601003267,4560190.2826542202],[-10613235.835593576,4560190.2982464638],[-10613488.797150843,4560191.5223867726],[-10613745.994500089,4560192.7600905374],[-10613752.235760426,4560192.78113316],[-10614003.224186271,4560193.9839727739],[-10614261.022916468,4560195.2124193916],[-10614266.408709027,4560195.2456360655],[-10614519.395696331,4560196.4487272641],[-10614778.337320045,4560197.6722274572],[-10615035.059228461,4560200.1802484896],[-10615285.690948159,4560202.6215779269],[-10615291.216398656,4560202.6779994918],[-10615546.80242338,4560205.1649732785],[-10615795.331165338,4560207.5780286882],[-10615801.849438965,4560207.6458615158],[-10616056.821570463,4560210.1193956835],[-10616307.296815554,4560212.54373537],[-10616311.78769578,4560212.585575684],[-10616566.751919555,4560215.0471912073],[-10616821.707734428,4560217.5009453427],[-10616821.160327196,4560473.2074521827],[-10616820.613419604,4560729.211533919],[-10616820.06471006,4560985.141650687],[-10616819.513597483,4561241.1471864711],[-10617079.165356811,4561241.310594311],[-10617337.701153209,4561241.4655068051],[-10617596.503050802,4561241.6220675763],[-10617855.111829888,4561241.7716536932],[-10618112.662010536,4561242.1152696628],[-10618370.045903096,4561242.4531790987],[-10618627.801316228,4561242.7740947222],[-10618884.364880579,4561243.08727598],[-10618884.420633677,4561248.9191682031],[-10619136.930113729,4561247.2754546236],[-10619390.668984765,4561245.619692401],[-10619644.09860543,4561243.9531515446],[-10619897.693512768,4561242.2778605521],[-10620152.826160042,4561240.5940714013],[-10620408.733984223,4561238.8988682562],[-10620665.977619808,4561237.1851487597],[-10620922.817998596,4561235.4683865458],[-10621176.8564057,4561234.0042454051],[-10621432.291292908,4561232.525645867],[-10621687.314513871,4561231.0384236416],[-10621942.502020402,4561229.542324408],[-10622198.834121868,4561228.6310987752],[-10622454.8229346,4561227.7153083179],[-10622710.165415639,4561226.8015478179],[-10622965.790416189,4561225.8814463262],[-10622964.79944903,4561480.552254105],[-10622963.832107134,4561729.3597297762],[-10622963.814087948,4561735.0693822009],[-10622963.611269748,4561788.5334966853],[-10622963.928671842,4561989.4263499053],[-10622964.329980329,4562243.4634698192],[-10623219.749071818,4562246.6011173651],[-10623474.600421242,4562249.7260835906],[-10623728.895141192,4562252.8461049944],[-10623982.625823261,4562255.9528109273],[-10624236.163787851,4562259.034279],[-10624236.827038812,4562259.0430292878],[-10624489.443256188,4562257.4846091559],[-10624742.380136248,4562255.9221304273],[-10624994.911056291,4562254.3555940604],[-10625250.739511458,4562254.2962813126],[-10625506.629135864,4562254.231007563],[-10625762.457691109,4562254.1671290128],[-10626018.2673249,4562254.0969090685],[-10626274.259061975,4562252.4002428744],[-10626530.323280679,4562250.6955867903],[-10626786.401915269,4562248.9765994688],[-10627042.457923817,4562247.251271164],[-10627042.627662616,4562502.6145084873],[-10627042.797505189,4562759.6710487148],[-10627042.967446649,4563016.1425068229],[-10627043.136387346,4563272.7765656626],[-10627294.484894324,4563274.1359366067],[-10627546.027321262,4563275.4889653279],[-10627797.773579394,4563276.8390765181],[-10628049.713957716,4563278.1814502329],[-10628301.970194137,4563279.5267409207],[-10628554.691157266,4563280.8683526563],[-10628807.88435559,4563282.1990554947],[-10629061.539777791,4563283.5260793734],[-10629061.514962349,4563287.6193606798],[-10629060.407191211,4563540.9155730056],[-10629059.280311387,4563798.492963843],[-10629059.261500081,4563801.7271854104],[-10629058.149827696,4564056.2356866216],[-10629057.021646887,4564314.1624012012],[-10629056.469521442,4564572.9960761294],[-10629055.939590076,4564821.8264664309],[-10629055.919896027,4564830.9721611608],[-10629055.373371363,4565088.102517589],[-10629054.852435613,4565332.3121101195],[-10629054.825942796,4565344.3548587365],[-10629054.278010793,4565599.7260748222],[-10629053.750171077,4565845.2778288834],[-10629053.73658344,4565854.2660885844],[-10629053.192450248,4566107.9559345823],[-10629052.650316827,4566360.8874105467],[-10629309.187173316,4566361.3268357674],[-10629565.374133043,4566361.7583951429],[-10629821.220206203,4566362.1738415705],[-10630076.727595318,4566362.5823102808],[-10630331.90190677,4566362.9936977951],[-10630586.747145075,4566363.3984882087],[-10630841.248893864,4566363.7945246221],[-10631040.615608219,4566364.1004486587],[-10631095.402993683,4566363.9079733826],[-10631350.081944633,4566364.5681255674],[-10631605.182770617,4566365.2230727971],[-10631860.348770021,4566365.8715487728],[-10632115.700178221,4566366.5143139204],[-10632371.198551919,4566367.1509878729],[-10632626.95221309,4566367.7822042676],[-10632882.886677826,4566368.3978133546],[-10633139.021067694,4566369.007965263],[-10633139.909798207,4566624.7522833496],[-10633140.798228502,4566880.5093732178],[-10633141.684856838,4567136.2717495225],[-10633142.573988058,4567392.0359866852],[-10633143.464222344,4567648.1990096699],[-10633144.353954999,4567904.1080887755],[-10633145.251696009,4568159.8545735069],[-10633145.885709539,4568340.7979033506],[-10633146.625271069,4568415.1612913553],[-10633148.436547263,4568672.2863863409],[-10633150.255938163,4568930.6373281367],[-10633152.081332283,4569188.1533960914],[-10633153.905224284,4569445.5396738918],[-10633155.728214877,4569702.8051632438],[-10633157.550704347,4569959.9093670286],[-10633157.574742725,4569962.4669798054],[-10633159.377998725,4570216.8680120865],[-10633161.198384566,4570473.6238429621],[-10632905.870107448,4570472.9299412668],[-10632649.107013766,4570472.2246267833],[-10632393.256448295,4570471.5223517204],[-10632137.532024987,4570470.8141100584],[-10631881.926435595,4570470.0973632867],[-10631626.45439671,4570469.3736344315],[-10631371.138233526,4570468.6516814018],[-10631115.955620864,4570467.9247771511],[-10631117.740268992,4570724.6410710169],[-10631119.525618332,4570981.4265503632],[-10631121.302957658,4571237.931760055],[-10631123.07669249,4571494.2947913734],[-10630867.452956881,4571494.3784797154],[-10630611.85514744,4571494.4567825506],[-10630355.551235372,4571494.5182039114],[-10630098.781393703,4571494.5753103914],[-10629842.050996853,4571494.6307665491],[-10629584.851967316,4571494.6805114746],[-10629327.947772838,4571494.716672997],[-10629071.08142134,4571494.7457257127],[-10629071.078506147,4571490.909436008],[-10628817.886136739,4571492.8973091589],[-10628564.911213983,4571494.8775658188],[-10628312.17556268,4571496.8476670869],[-10628059.659860875,4571498.8085016096],[-10627807.421974355,4571500.7641313607],[-10627555.522371836,4571502.7090977067],[-10627303.736798452,4571504.6521601398],[-10627052.140039196,4571506.5873522274],[-10627052.188105863,4571512.2053986685],[-10626796.356428962,4571512.5999139519],[-10626539.983136354,4571512.9877026863],[-10626283.28167063,4571513.3645752734],[-10626026.185656367,4571513.7361173164],[-10625769.121778524,4571514.1025816435],[-10625512.489090675,4571514.4610476596],[-10625254.580252271,4571514.8201514883],[-10624995.945889143,4571515.1722753169],[-10624996.365467725,4571772.4883476878],[-10624996.763706997,4572016.8825724171],[-10624996.658703037,4572030.0294080973],[-10624994.812604781,4572286.4687138619],[-10624992.97251223,4572542.3386235721],[-10625250.921519931,4572540.7868463174],[-10625508.885143872,4572539.2288486129],[-10625508.507673861,4572793.2390857441],[-10625508.127000885,4573047.7956335666],[-10625507.277295051,4573302.8789812466],[-10625506.426889023,4573558.5371599197],[-10625505.980942916,4573814.1886900496],[-10625505.534296384,4574070.1883342937],[-10625505.175850652,4574326.574084105],[-10625504.817405375,4574583.3492699107],[-10625761.932915337,4574583.532423743],[-10626019.432862846,4574583.7083386937],[-10626018.722579392,4574840.4812437333],[-10626018.010894284,4575097.3321283516],[-10626017.305716544,4575354.2689986965],[-10626016.599938065,4575611.2839878006],[-10626015.8937598,4575868.8092649262],[-10626015.185680741,4576127.2797093065],[-10626014.482205454,4576384.9670330556],[-10626013.778529404,4576642.4415541394],[-10626270.15094424,4576643.3863292504],[-10626526.898586683,4576644.3237370001],[-10626592.940410124,4576644.5612902157],[-10626784.068906806,4576643.281019344],[-10627041.634575512,4576641.5509535177],[-10627298.292804522,4576637.3027779367],[-10627554.910686536,4576633.0488892859],[-10627811.470901806,4576628.7836994492],[-10628067.967843955,4576624.512542624],[-10628060.691116644,4576876.9784755064],[-10628053.392164329,4577130.2347203083],[-10628046.066081472,4577384.3069917755],[-10628038.71697269,4577639.1785838576],[-10628031.106366847,4577895.0995309874],[-10628023.468430365,4578151.9289150266],[-10628015.805465519,4578409.5449857637],[-10628008.115870627,4578668.0029326035],[-10627751.578426644,4578668.9572465979],[-10627495.218885222,4578669.9049546374],[-10627238.684344077,4578670.853679629],[-10626982.100346304,4578671.7947831806],[-10626725.929923482,4578674.6051199622],[-10626475.660526909,4578677.3453183603],[-10626470.142036071,4578677.4141861424],[-10626214.731778422,4578680.1983542889],[-10625967.327646799,4578682.8907821588],[-10625959.697849032,4578682.9342509853],[-10625705.136252943,4578682.6844497174],[-10625456.528043661,4578682.4342479892],[-10625450.95218727,4578682.4213091303],[-10625197.129233332,4578682.1673134705],[-10624943.65928187,4578681.9084895477],[-10624687.528099,4578683.8842471344],[-10624431.368683469,4578685.8523835409],[-10624175.561168617,4578687.8116272362],[-10623919.974104591,4578689.761343495],[-10623918.109148845,4578946.6372083304],[-10623916.246294839,4579203.203377408],[-10623914.390024008,4579459.4340600632],[-10623912.534889247,4579715.4120796211],[-10623657.923016377,4579718.0302610891],[-10623404.273640841,4579720.6326869009],[-10623149.823952205,4579723.2442632997],[-10622894.915940518,4579725.8535553133],[-10622893.230424205,4579982.1681295549],[-10622891.548412915,4580238.1611339217],[-10622889.864500465,4580493.8374997014],[-10622888.182391247,4580749.1532425722],[-10622631.426997773,4580751.8996727159],[-10622374.200866926,4580754.6464865943],[-10622117.44607342,4580757.3734791745],[-10621860.837946856,4580760.0918324003],[-10621604.530362757,4580762.805103275],[-10621348.171119358,4580765.5135471318],[-10621092.093096429,4580768.2050925763],[-10620836.181663183,4580770.8892691266],[-10620838.194303079,4580514.2406523572],[-10620840.210247809,4580257.2939858222],[-10620840.241201743,4580253.1147166202],[-10620842.222389333,4580000.0355707118],[-10620844.237935865,4579742.4645408113],[-10620844.274802951,4579736.8450723756],[-10620846.25528571,4579484.5517003024],[-10620846.678407727,4579430.7987102196],[-10620847.768813429,4579226.3239126131],[-10620847.800252562,4579222.1453166371],[-10620849.167811602,4578967.7906109868],[-10620850.560502466,4578708.9680354856],[-10620592.710855229,4578709.0049509658],[-10620341.111232996,4578709.0353675829],[-10620335.494329749,4578709.0380534865],[-10620078.910825919,4578709.0588320717],[-10619830.345763065,4578709.0738682328],[-10619822.976361981,4578709.0811329028],[-10619567.787848422,4578709.0974609125],[-10619318.286418116,4578709.1081811078],[-10619313.345885927,4578709.1120080827],[-10619059.601819066,4578709.102036234],[-10618806.684895156,4578709.0877426891],[-10618805.235391099,4578967.2339332197],[-10618803.820737459,4579219.0862041153],[-10618803.783785526,4579224.6846817974],[-10618802.636617556,4579430.2792139119],[-10618801.984916972,4579481.4913031692],[-10618798.813446071,4579730.7002117932],[-10618798.715599669,4579737.6184335342],[-10618795.453490857,4579993.6040157657],[-10618792.265094666,4580243.8332492551],[-10618792.199893925,4580249.0717211366],[-10618788.951405106,4580503.9983880073],[-10618785.70792385,4580758.4703739043],[-10618529.499256557,4580759.9688721849],[-10618274.864985052,4580761.4526268737],[-10618019.230472356,4580762.9354959996],[-10617763.463608505,4580764.411631993],[-10617507.434445251,4580765.8845928358],[-10617251.603908401,4580767.3499299949],[-10617125.400642805,4580768.0819573821],[-10616995.499260882,4580768.414917714],[-10616739.262264553,4580769.0668498268],[-10616736.812325869,4581026.2863165708],[-10616734.344256077,4581285.3050089125],[-10616731.901622169,4581543.0430146409],[-10616729.459890494,4581800.5110625597],[-10616727.011250464,4582058.0063516237],[-10616724.563511133,4582315.5030878736],[-10616722.125986289,4582572.4398441343],[-10616719.69326872,4582829.0005912622],[-10616719.576893048,4583085.842949992],[-10616719.461010957,4583343.9323008712],[-10616719.333918139,4583601.6564747412],[-10616719.207425073,4583859.5494894199],[-10616719.080833888,4584117.0908985883],[-10616718.953942608,4584374.5915611871],[-10616718.829754604,4584632.0612611733],[-10616718.705266459,4584889.4988523889],[-10616473.228399623,4584883.0272499034],[-10616227.921427693,4584876.5545063894],[-10616223.620717514,4584876.4366970453],[-10615982.778644206,4584870.0696908161],[-10615737.838192627,4584863.5881827977],[-10615732.043376578,4584863.4430519976],[-10615492.781809615,4584857.1003236119],[-10615248.014157221,4584850.6057303175],[-10615243.951418793,4584850.4952923758],[-10615003.258519441,4584844.1119032521],[-10614759.346445674,4584837.6361253355],[-10614756.910360178,4584627.5547547136],[-10614756.87120799,4584580.1449858863],[-10614756.655047331,4584323.0738216368],[-10614756.435881481,4584066.2994547151],[-10614756.215212112,4583809.8293613838],[-10614755.992538236,4583553.7304950273],[-10614755.770563129,4583297.971310596],[-10614755.557896644,4583042.5472078044],[-10614755.345228162,4582787.4591784328],[-10614755.033361368,4582529.9690742362],[-10614754.727371315,4582277.3468293175],[-10614754.713784089,4582272.7650619065],[-10614754.408421313,4582015.8537276117],[-10614754.110927865,4581765.3795185685],[-10614754.106160332,4581759.2380991094],[-10614753.806,4581502.9190437868],[-10614753.510918403,4581250.9979433967],[-10614753.502033582,4581246.8966666004],[-10614753.191658167,4580991.1605267068]]]},"attributes":{"objectid":3070,"field_kid":"1000146307","approxacre":63040,"field_name":"IOLA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":3719518.2999999998,"maxoilwell":513,"lastoilpro":5932.7799999999997,"lastoilwel":316,"lastodate":"2-2009","cumm_gas":3151744,"maxgaswell":92,"lastgaspro":15582,"lastgaswel":92,"lastgdate":"2-2009","avgdepth":887.22785713999997,"avgdepthsl":-90.700714289999993,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146307}},{"geometry":{"rings":[[[-10597471.629352614,4764407.0771222245],[-10597476.12104064,4764164.1420535911],[-10597214.260467133,4764161.9766060933],[-10596953.050936371,4764159.8096033214],[-10596692.376315882,4764157.6288859826],[-10596432.273948275,4764155.4457083307],[-10596172.763355821,4764153.2700310871],[-10595913.808897853,4764151.093575323],[-10595655.373031558,4764148.900688515],[-10595397.495302033,4764146.7061176626],[-10595397.537849462,4764141.8180632358],[-10595400.143864404,4763888.4517645882],[-10595402.803338902,4763629.8107939409],[-10595405.507564066,4763370.4744729633],[-10595408.209186068,4763111.3178964416],[-10595145.035359809,4763110.8992999997],[-10594883.226289958,4763110.4768139897],[-10594620.858983532,4763110.0318253404],[-10594358.570867442,4763109.580756926],[-10594359.921491854,4762850.2547561266],[-10594361.272917069,4762591.019632455],[-10594362.638358107,4762330.9442733191],[-10594364.0060015,4762070.3282832019],[-10594365.385958798,4761809.217487229],[-10594366.765715728,4761547.7093079342],[-10594368.149877535,4761285.8289944492],[-10594369.536742292,4761023.5694630584],[-10594375.862153757,4761023.6216586241],[-10594632.380204603,4761025.3375257272],[-10594896.023979487,4761027.0958837513],[-10594901.417528559,4761027.1165323406],[-10595160.450947411,4761028.8308292003],[-10595425.676025398,4761030.5811583754],[-10595686.921266478,4761033.346306446],[-10595947.714392336,4761036.1004673308],[-10596208.058606628,4761038.8623926379],[-10596467.969026582,4761041.6144944932],[-10596728.313041098,4761044.3471961888],[-10596988.549032677,4761047.0722702825],[-10597248.697624827,4761049.7849317025],[-10597508.764624184,4761052.4904825697],[-10597506.941191532,4761312.7193991598],[-10597505.114154795,4761573.2584418636],[-10597505.092331974,4761576.9236166738],[-10597503.291222762,4761834.112161383],[-10597501.46178332,4762095.2750209151],[-10597501.423242066,4762100.0806067111],[-10597763.344698694,4762101.3958345428],[-10598025.356458396,4762102.7039488191],[-10598287.009809516,4762103.9925366193],[-10598548.457025694,4762105.2738836743],[-10598546.724139554,4762366.2362061264],[-10598544.988150107,4762627.7296422217],[-10598544.957817947,4762631.0688722301],[-10598543.223229127,4762891.430035688],[-10598541.485236693,4763152.3706860552],[-10598803.36689025,4763151.4141904423],[-10599065.195783557,4763150.4516155962],[-10599326.975320498,4763149.4980953364],[-10599588.682274582,4763148.5381079242],[-10599584.197185496,4763401.6025997559],[-10599579.672152432,4763656.8486919152],[-10599575.155428253,4763911.8492606385],[-10599570.627191085,4764167.4244432403],[-10599308.902471988,4764165.6342705404],[-10599047.150321748,4764163.8382775681],[-10598785.324988192,4764162.0521174064],[-10598523.449197229,4764160.2587141292],[-10598518.890982416,4764415.127636333],[-10598514.328963101,4764670.2874891171],[-10598509.752227215,4764926.2716945875],[-10598505.164879289,4765182.8646473829],[-10598243.210155224,4765180.1594668403],[-10597980.862082673,4765177.4445868982],[-10597719.05492739,4765174.7198729534],[-10597457.473529859,4765171.9880436445],[-10597462.2031835,4764916.5442072768],[-10597466.77305929,4764669.7227829527],[-10597466.922925714,4764661.5795612279],[-10597471.629352614,4764407.0771222245]]]},"attributes":{"objectid":3850,"field_kid":"1000149130","approxacre":1896,"field_name":"ZACHARIAH","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":176747.03,"maxoilwell":22,"lastoilpro":309.25,"lastoilwel":6,"lastodate":"1-2009","cumm_gas":1409232,"maxgaswell":14,"lastgaspro":874,"lastgaswel":14,"lastgdate":"11-1997","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149130}},{"geometry":{"rings":[[[-10557583.017830845,4514037.2059894959],[-10557829.688190786,4514037.604197735],[-10557829.054177867,4514293.9782655425],[-10557828.419265557,4514550.6534113958],[-10557827.801574823,4514807.6551613854],[-10557827.182784606,4515064.9815192819],[-10557817.287518283,4515064.9264584389],[-10557576.826710671,4515063.7093721107],[-10557324.601089453,4515062.4276030054],[-10557314.032049198,4515062.3665985754],[-10557070.315802498,4515061.120805786],[-10556814.577546781,4515059.8075489216],[-10556818.501115119,4514803.3602386508],[-10556822.34472057,4514552.1854470577],[-10556822.410168095,4514547.2580728577],[-10556823.664153565,4514466.2159298277],[-10556827.240480149,4514291.4665734814],[-10556832.010749698,4514058.3354557883],[-10556831.905443616,4514043.1653211787],[-10556831.85804878,4514035.9670171561],[-10557084.308846477,4514036.3848772589],[-10557328.239960758,4514036.7822886007],[-10557334.494843496,4514036.8001796538],[-10557583.017830845,4514037.2059894959]]]},"attributes":{"objectid":3859,"field_kid":"1031632763","approxacre":158,"field_name":"Girard North","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1031632763}},{"geometry":{"rings":[[[-10591240.729360934,4759175.9423982706],[-10591239.96009938,4758911.2453284767],[-10590983.258926859,4758909.9128388641],[-10590726.241393888,4758908.5735001015],[-10590468.90509773,4758907.2070130855],[-10590211.183762848,4758905.8301866576],[-10589953.487556705,4758904.4776678244],[-10589696.69377921,4758903.1213918002],[-10589439.191193987,4758901.7353852615],[-10589294.023841437,4758900.9516385328],[-10589181.983339841,4758906.8529836591],[-10588922.351625087,4758908.9868908571],[-10588675.609601188,4758911.0083239377],[-10588665.908143794,4758911.2840669341],[-10588662.661543427,4758911.3743436644],[-10588560.817364749,4758914.365193394],[-10588403.039738538,4758914.7206390779],[-10588148.872352585,4758915.2874542419],[-10588143.480006682,4758915.3049580967],[-10588142.244742863,4758652.4088417105],[-10588141.006676249,4758389.1977871098],[-10588139.774615701,4758126.9491421934],[-10588138.543856245,4757865.235430805],[-10588137.329313865,4757605.146158074],[-10588136.119654842,4757346.0610751174],[-10588134.907378718,4757086.531056812],[-10588133.692999762,4756827.0749387974],[-10588393.860071601,4756823.9372289237],[-10588655.03829558,4756820.7819295395],[-10588916.317434233,4756817.6471836083],[-10589180.274424292,4756814.4742780942],[-10589180.896404138,4756556.0773419859],[-10589181.512456032,4756300.6092314292],[-10589181.528120155,4756294.2188274805],[-10589182.136299714,4756033.6942013968],[-10589182.666045554,4755806.9150833068],[-10589182.866044035,4755783.3554703342],[-10589182.941405637,4755772.8967276635],[-10589185.220888626,4755512.4784854157],[-10589187.042470809,4755304.4030684875],[-10589187.128169056,4755262.8913325621],[-10589187.130540725,4755253.3677196717],[-10589187.659422513,4754993.8686548416],[-10589188.178057902,4754739.1669715419],[-10589294.20302801,4754741.8530896716],[-10589294.232378578,4754725.6559701702],[-10589445.560178244,4754725.8182038022],[-10589702.997963386,4754726.0881962599],[-10589959.555245534,4754726.3430763762],[-10590215.85193087,4754726.589687692],[-10590472.376676111,4754726.8256989866],[-10590728.463122072,4754727.0555111291],[-10590984.166031068,4754727.2893335735],[-10591239.290080654,4754727.5164413089],[-10591239.864696182,4754988.5663164537],[-10591240.438412867,4755249.317020406],[-10591241.044268087,4755509.807304983],[-10591241.299089273,4755618.9915445568],[-10591241.016002798,4755770.0264286175],[-10591504.03796098,4755772.45495144],[-10591766.663067196,4755774.8746895548],[-10592028.876604831,4755777.2622480914],[-10592290.690787643,4755779.6399878915],[-10592553.987359431,4755782.0347751267],[-10592818.811872153,4755784.4376907935],[-10592825.61942791,4755784.5062570805],[-10593085.17844191,4755786.8462789254],[-10593353.053330315,4755789.2527846014],[-10593353.096114174,4755798.7365775434],[-10593350.371875295,4756052.3236192316],[-10593347.540245743,4756315.8833342567],[-10593347.449991971,4756323.3276214115],[-10593344.708312547,4756579.9097330971],[-10593341.88168207,4756844.4077646527],[-10593343.426781606,4756882.5608858597],[-10593339.58236902,4757106.47208656],[-10593339.467692371,4757113.1916155806],[-10593338.110289283,4757369.8889627308],[-10593337.17822605,4757545.8400269039],[-10593336.767048722,4757632.2167420052],[-10593335.515896292,4757894.2553700516],[-10593334.257635685,4758156.0426286059],[-10593333.00017591,4758417.5531576797],[-10593331.762038084,4758678.7680591261],[-10593330.5247011,4758939.6579603571],[-10593329.258330822,4759201.5670175189],[-10593328.026400415,4759456.494019798],[-10593328.01488664,4759462.8046954963],[-10593326.742609553,4759723.3927951017],[-10593325.515384659,4759974.9041408803],[-10593325.472935393,4759983.3311364427],[-10593063.19976717,4759981.1832405273],[-10592801.49594813,4759979.032883985],[-10592540.339853637,4759976.8686879352],[-10592279.751906956,4759974.703324357],[-10592019.719593827,4759972.543258748],[-10591760.237107635,4759970.3812499242],[-10591501.327774955,4759968.226219913],[-10591242.990995118,4759966.0700223297],[-10591242.96867403,4759956.0528284721],[-10591242.245159201,4759703.3653352652],[-10591241.490613714,4759439.987244959],[-10591241.476200206,4759433.2692937916],[-10591240.729360934,4759175.9423982706]]]},"attributes":{"objectid":3887,"field_kid":"1000149632","approxacre":2865,"field_name":"TULLIS","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":6288.71,"maxoilwell":1,"lastoilpro":35.479999999999997,"lastoilwel":1,"lastodate":"11-2001","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149632}},{"geometry":{"rings":[[[-10570422.210017318,4764118.8343139673],[-10570428.930318447,4763860.4691219172],[-10570435.253929894,4763617.349923593],[-10570435.640408112,4763602.1701897401],[-10570441.786000205,4763365.8036092119],[-10570442.174897883,4763343.919145437],[-10570446.488215884,4763101.9757706495],[-10570446.504674889,4763085.805503794],[-10570708.302855348,4763084.3545303224],[-10570969.998619169,4763082.8963142429],[-10571230.65019298,4763081.4373278674],[-10571490.57103404,4763079.9762760727],[-10571485.989243418,4763338.3740664329],[-10571481.40565078,4763596.8483369146],[-10571476.817753233,4763855.4191437438],[-10571472.228153883,4764114.0335863037],[-10571732.977412822,4764112.832896783],[-10571993.158424243,4764111.6269067368],[-10572252.733845618,4764110.4097951753],[-10572511.736714561,4764109.1895822259],[-10572508.302606404,4764367.8962892294],[-10572504.865594346,4764626.8897205582],[-10572501.453009546,4764886.1701570107],[-10572498.03551851,4765145.7583206799],[-10572495.784347463,4765408.7839715192],[-10572493.529271074,4765672.1924709268],[-10572491.269491861,4765934.7028269665],[-10572489.011916567,4766196.7396157915],[-10572226.355037011,4766197.4383140868],[-10571963.914203694,4766198.1270485213],[-10571701.841690134,4766198.7946910057],[-10571440.07442444,4766199.4524985068],[-10571438.281201798,4766462.5430834694],[-10571436.486276334,4766726.0182429319],[-10571436.480660886,4766729.521825131],[-10571434.696556309,4766989.7236369327],[-10571432.882306673,4767254.1168424059],[-10571249.278428728,4767251.6448912099],[-10571171.395093504,4767251.982925592],[-10570909.558674097,4767253.1128679775],[-10570649.247592572,4767254.2544481168],[-10570505.660899265,4767254.8814072814],[-10570389.918634824,4767253.478184578],[-10570391.052580606,4766990.0955732698],[-10570392.186225908,4766726.7968419502],[-10570393.335287543,4766464.022685877],[-10570394.432861272,4766213.0567412218],[-10570394.561736526,4766201.6134005664],[-10570397.833616976,4765938.9141384875],[-10570398.318366094,4765899.9473672602],[-10570398.798367716,4765676.6052248878],[-10570399.378278995,4765414.7017557165],[-10570399.719451401,4765260.2430129312],[-10570400.500306865,4765153.2832586467],[-10570402.021978393,4764896.6280832961],[-10570402.070838656,4764894.7819766151],[-10570408.638649283,4764642.7296241568],[-10570408.79103902,4764636.2587127751],[-10570415.496423062,4764377.6484270217],[-10570421.887819676,4764131.0836590845],[-10570422.210017318,4764118.8343139673]]]},"attributes":{"objectid":3906,"field_kid":"1000149595","approxacre":957,"field_name":"CHRISTY","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":127,"maxoilwell":1,"lastoilpro":66,"lastoilwel":1,"lastodate":"9-1990","cumm_gas":993436,"maxgaswell":9,"lastgaspro":32,"lastgaswel":3,"lastgdate":"12-1994","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149595}},{"geometry":{"rings":[[[-10595789.24873562,4676362.142245112],[-10595789.545478754,4676119.6598663013],[-10595785.3610834,4676119.7210530732],[-10595785.464018766,4675860.1236833483],[-10595785.56565273,4675600.424302334],[-10595785.677598622,4675340.6076581851],[-10595785.788042895,4675080.6706823502],[-10595785.894482048,4674821.3737551086],[-10595786.001021018,4674562.4378181668],[-10595786.102254342,4674302.990192404],[-10595786.202586811,4674043.3419656167],[-10596045.974391248,4674040.5422497988],[-10596306.055249879,4674037.7318920242],[-10596566.413726682,4674034.9170467202],[-10596827.072247364,4674032.093867382],[-10597086.110711887,4674028.7507848963],[-10597345.149376662,4674025.4009083603],[-10597604.184837768,4674022.0642392468],[-10597863.222201077,4674018.720519647],[-10597862.575137805,4674278.1441836087],[-10597861.928074541,4674537.5737995431],[-10597861.300633747,4674797.0305249151],[-10597860.674194105,4675056.493332658],[-10598119.749699069,4675052.9828000171],[-10598378.849832278,4675049.4650879921],[-10598637.948363688,4675045.9221166587],[-10598897.028173668,4675042.3705556383],[-10598896.420353482,4675301.4566687876],[-10598895.814135212,4675560.4684434198],[-10598895.191698404,4675819.4244683841],[-10598894.569061445,4676078.3074270543],[-10598892.239980182,4676324.132804743],[-10598889.902188145,4676570.8974818187],[-10598889.822088024,4676580.5476448294],[-10598887.557787754,4676818.5830585519],[-10598885.192662831,4677067.185626328],[-10598625.292618537,4677069.1675096825],[-10598365.930190362,4677071.1390029779],[-10598107.21240095,4677073.106518425],[-10597849.080983529,4677075.0650543831],[-10597847.981612189,4677322.6057849964],[-10597846.87433018,4677572.027796302],[-10597845.738114789,4677821.7283341493],[-10597844.598695038,4678072.2443375262],[-10597623.623061161,4678072.3103933996],[-10597588.285464948,4678072.3206698196],[-10597332.571021067,4678072.3907146864],[-10597104.636011884,4678072.4525660649],[-10597077.410511984,4678072.4587050639],[-10596822.715536412,4678072.5043753861],[-10596586.915813945,4678073.1371677127],[-10596564.155230705,4678073.197416557],[-10596305.374272142,4678073.8732711589],[-10596070.018658618,4678074.5090119578],[-10596046.354840226,4678074.6412213584],[-10595787.160206974,4678076.0751262503],[-10595787.449845355,4677829.5011055199],[-10595787.738082319,4677582.7051272541],[-10595788.039233075,4677337.1236756481],[-10595788.33978254,4677092.2673776774],[-10595788.644736368,4676848.2332662744],[-10595788.951591643,4676605.0830973759],[-10595789.24873562,4676362.142245112]]]},"attributes":{"objectid":3918,"field_kid":"1000148262","approxacre":1555,"field_name":"NORWOOD SOUTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":22009.73,"maxoilwell":11,"lastoilpro":81.480000000000004,"lastoilwel":2,"lastodate":"2-2009","cumm_gas":26185,"maxgaswell":6,"lastgaspro":1332,"lastgaswel":6,"lastgdate":"10-1991","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000148262}},{"geometry":{"rings":[[[-10609000.013949649,4446831.7802530602],[-10609254.17623774,4446833.8864574665],[-10609254.049229348,4446837.821142084],[-10609253.279663611,4447084.6541009098],[-10609252.539738121,4447321.9124905635],[-10609252.499117281,4447334.7559249131],[-10609251.722168509,4447584.183849982],[-10609250.948516941,4447832.9380794754],[-10608996.198103804,4447832.1494532833],[-10608744.484806474,4447831.3645611275],[-10608741.163161162,4447831.3551725345],[-10608485.886438465,4447830.5509731881],[-10608239.339822123,4447829.769631356],[-10608230.354420124,4447829.7426256323],[-10608231.775164802,4447579.6642034445],[-10608233.200808512,4447328.9154098593],[-10608234.627046272,4447077.4962923033],[-10608236.055580042,4446825.4063967075],[-10608490.969339,4446827.5403486304],[-10608739.121068118,4446829.6114869481],[-10608745.626300374,4446829.6657619951],[-10609000.013949649,4446831.7802530602]]]},"attributes":{"objectid":3930,"field_kid":"1032686565","approxacre":159,"field_name":"Elm Grove Southwest","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1032686565}},{"geometry":{"rings":[[[-10585948.274798896,4468433.1351208324],[-10585955.454923954,4468178.0899279471],[-10585707.060611151,4468178.6603579381],[-10585457.70459526,4468179.2280067317],[-10585208.139039094,4468179.7955264123],[-10584958.140486278,4468180.3583882423],[-10584961.242509937,4467928.5867077364],[-10584964.355833026,4467675.9676109478],[-10584964.446919626,4467668.788152501],[-10584967.499076679,4467422.4869564921],[-10584970.650115468,4467168.1416639416],[-10584970.776307622,4467158.8460580893],[-10584970.838512102,4467154.7724385038],[-10584971.130783666,4466913.3769082092],[-10584971.438639753,4466657.7732527899],[-10584971.462344164,4466650.2957532341],[-10584971.760498606,4466401.3628084036],[-10584972.071229046,4466144.0028717313],[-10584970.453676911,4465888.5109422971],[-10584968.84806399,4465634.5941186901],[-10584967.250835977,4465379.1934390198],[-10584965.651497632,4465123.3329998795],[-10584964.058465617,4464867.4381776256],[-10584962.467239538,4464611.7999849906],[-10584960.835830882,4464353.9654804859],[-10584959.196990686,4464094.7520271521],[-10584956.911199613,4463981.1571683409],[-10584948.451565744,4463840.012650365],[-10584948.273465615,4463834.1946250042],[-10584940.336477183,4463574.1574459253],[-10584940.202655805,4463570.0387199568],[-10584932.368442452,4463313.5560301458],[-10584924.484844116,4463055.4357803855],[-10584924.344600035,4463050.3876937479],[-10584916.574391061,4462795.9460610189],[-10584908.647116784,4462536.4241517782],[-10584900.764822815,4462278.7255282123],[-10584892.919589853,4462022.2293614596],[-10584891.314363265,4461768.0304322382],[-10584889.733629972,4461517.8119664425],[-10584889.71484231,4461513.7964210277],[-10584888.097099563,4461259.5322287194],[-10584886.515792107,4461010.9661441641],[-10584886.51659867,4461005.2314522592],[-10584885.878291195,4460751.5914752893],[-10584885.257509658,4460504.3921196759],[-10584885.242486633,4460497.9657544326],[-10584884.607482554,4460244.3255260522],[-10584883.970576085,4459990.6852347339],[-10584882.926893951,4459736.5697507514],[-10584881.911353892,4459489.1360545754],[-10584881.883122476,4459483.1238784678],[-10584880.835957844,4459230.3468159903],[-10584879.857245978,4458994.2345598023],[-10584879.788387336,4458989.4071849808],[-10584879.624615224,4458978.2417776613],[-10584875.977474844,4458726.3543203026],[-10584872.492804401,4458485.6281996574],[-10584872.343760563,4458475.1550150597],[-10584868.709354375,4458224.5349379349],[-10584865.086876513,4457974.8422623528],[-10585113.787099082,4457973.0490555847],[-10585360.377795704,4457971.2638498144],[-10585363.213557033,4457971.2435554015],[-10585415.742569158,4457970.8654728448],[-10585613.42152073,4457969.8436701987],[-10585864.416991968,4457968.5393598285],[-10586115.259988006,4457967.2334146015],[-10586365.302063026,4457965.9268280193],[-10586614.544718722,4457964.6182188047],[-10586862.997265821,4457963.3078382639],[-10586859.740022955,4457711.238423829],[-10586856.581511542,4457466.6411201498],[-10586856.509634785,4457460.7080719657],[-10586853.286476558,4457211.5786777893],[-10586850.140201142,4456968.4361412534],[-10586850.101484491,4456963.8893177137],[-10587103.240542592,4456965.2857510429],[-10587357.085012028,4456966.680438742],[-10587361.217166437,4456966.7042405978],[-10587611.700167866,4456968.0720007606],[-10587867.062182698,4456969.4604366915],[-10588117.889379542,4456970.8174047768],[-10588368.931323171,4456972.1699820347],[-10588619.927914333,4456973.5175362034],[-10588871.586767199,4456974.8635951122],[-10588871.686565313,4456986.8927538525],[-10588870.188047234,4457039.7837392008],[-10588871.528441578,4457226.9698554166],[-10588873.301058091,4457474.8761607455],[-10588873.306815011,4457478.1774499826],[-10588875.100090669,4457728.4300281033],[-10588876.886043724,4457977.7753650676],[-10589127.624303626,4457981.9997882461],[-10589292.955106782,4457984.7826793762],[-10589379.143233009,4457984.3818146707],[-10589631.196222711,4457983.1922946163],[-10589883.635156374,4457981.9943679105],[-10590136.619617637,4457980.7929346403],[-10590390.057099996,4457979.5815889873],[-10590643.95090718,4457978.3553080875],[-10590867.736386416,4457977.2701596553],[-10590898.244443331,4457975.0081029106],[-10590899.632636176,4458227.941413206],[-10590901.029860782,4458482.3579675434],[-10590901.096477669,4458491.9573737187],[-10590902.441712195,4458737.4787610052],[-10590903.844065836,4458993.5211068625],[-10590903.903494056,4459004.464364578],[-10590905.255091868,4459247.0125553692],[-10590906.674047988,4459501.9602905456],[-10590906.746185198,4459512.5205189046],[-10590908.096937824,4459758.9282110725],[-10590909.504713815,4460016.1588533595],[-10590911.125287285,4460270.1846622042],[-10590912.651738748,4460509.5943336068],[-10590912.731532367,4460523.4181196075],[-10590914.347049369,4460774.02192319],[-10590915.850584395,4461007.3058731835],[-10590915.957931604,4461022.6331021767],[-10590917.554501716,4461271.5627833325],[-10590919.050529772,4461505.002810753],[-10590919.130340684,4461520.0137086008],[-10590920.732908661,4461768.370613914],[-10590922.327248948,4462015.500262945],[-10590922.290767066,4462273.0251701158],[-10590922.254888214,4462530.7152776914],[-10590922.244181573,4462537.9520442188],[-10590922.233111616,4462787.4561306322],[-10590922.221539123,4463043.6813464249],[-10590922.210498322,4463048.6050485959],[-10590922.202560928,4463300.1050052876],[-10590922.194793886,4463556.416164184],[-10590922.180033529,4463560.2927735699],[-10590922.163198289,4463812.6522559263],[-10590922.146316789,4464068.7022050489],[-10590924.850014603,4464321.7055252623],[-10590927.564335432,4464575.4850300131],[-10590927.635838544,4464583.7761619734],[-10590930.287176853,4464830.0400214363],[-10590933.035958717,4465085.361131723],[-10590933.159566952,4465096.7590538291],[-10590935.791870577,4465342.2125597568],[-10590938.554598661,4465599.6756885992],[-10590938.641512776,4465607.5124705667],[-10590941.330850624,4465857.7475472577],[-10590944.109513741,4466116.4310707264],[-10590948.22004623,4466371.0996706542],[-10590952.328473227,4466625.608022619],[-10590956.438398503,4466879.9299739348],[-10590960.478779791,4467129.900152266],[-10590960.531801809,4467134.0959260091],[-10590964.619885251,4467387.3675930239],[-10590968.650149556,4467637.0671230676],[-10590968.701253785,4467640.1952514732],[-10590972.781614158,4467892.5911873793],[-10590976.854458068,4468144.4989330359],[-10590722.439554853,4468146.3698189622],[-10590468.032160452,4468148.2345463773],[-10590214.723226024,4468150.0772958826],[-10589962.124406235,4468151.907236726],[-10589960.694162065,4468406.9168968378],[-10589959.258719521,4468662.4274795232],[-10589957.827691516,4468918.5653534299],[-10589956.392567676,4469175.2894582152],[-10589706.057108356,4469176.1408763658],[-10589456.374297487,4469176.9851401262],[-10589207.654090526,4469177.8243916361],[-10588959.232325826,4469178.6557286577],[-10588711.18428931,4469179.4538854146],[-10588461.699004704,4469180.248624403],[-10588210.056646692,4469181.0488588884],[-10587956.47876923,4469181.8481814871],[-10587701.141374145,4469182.6454637712],[-10587444.399869001,4469183.4414658481],[-10587185.45343551,4469184.2385628903],[-10586924.557266274,4469185.0344964135],[-10586924.364951748,4469191.7366706096],[-10586675.014026878,4469192.8006767994],[-10586425.626059607,4469193.8591514053],[-10586176.217068279,4469194.9104605122],[-10585926.769733015,4469195.9546038313],[-10585933.930351475,4468942.0776057299],[-10585941.100177616,4468687.9595918227],[-10585948.274798896,4468433.1351208324]]]},"attributes":{"objectid":3946,"field_kid":"1000149401","approxacre":10434,"field_name":"OSWEGO","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":6203,"maxgaswell":3,"lastgaspro":28,"lastgaswel":2,"lastgdate":"12-2005","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149401}},{"geometry":{"rings":[[[-10581827.712380081,4772722.9902446456],[-10581828.849382266,4772462.0185970087],[-10581570.797114145,4772461.4818425123],[-10581313.276653355,4772460.938872925],[-10581055.198455723,4772460.3964222679],[-10580796.931742886,4772459.8460745886],[-10580798.422288878,4772200.1224456113],[-10580799.885393012,4771945.3702118201],[-10580799.927651076,4771940.68399214],[-10580801.427305855,4771681.6270083226],[-10580802.924857786,4771422.7288036784],[-10580803.644525951,4771161.7087053116],[-10580804.365696073,4770900.5483266395],[-10580804.378919274,4770896.6765580615],[-10580804.580006119,4770821.5566464011],[-10580804.681403944,4770639.0669757966],[-10580804.826017009,4770377.3391055902],[-10580804.845550144,4770372.1626483528],[-10580805.004269052,4770115.3337991601],[-10580805.165201904,4769853.0509487977],[-10580805.181328589,4769849.0989460126],[-10580805.3414528,4769590.5040367916],[-10580805.50128551,4769327.6916601276],[-10581064.117867924,4769328.8159112837],[-10581323.148222717,4769329.9343372965],[-10581582.607367057,4769331.0354190962],[-10581842.501407888,4769332.1297696726],[-10582102.609893562,4769333.2368038492],[-10582363.030135168,4769334.3404723266],[-10582623.808185276,4769335.4372804016],[-10582884.940039318,4769336.5312403468],[-10582888.409960097,4769075.4458719352],[-10582891.884185862,4768814.162920665],[-10582895.367121587,4768552.7095794678],[-10582898.853361104,4768291.0883204089],[-10583159.844712729,4768291.4572974518],[-10583420.513996853,4768291.8185110427],[-10583680.876931397,4768292.1702787215],[-10583940.91940026,4768292.5172594516],[-10584201.655159386,4768293.4847778464],[-10584462.334253933,4768294.4471202744],[-10584722.876792744,4768295.3945809854],[-10584983.304600706,4768296.3350541405],[-10584980.730489898,4768557.2493543038],[-10584978.159382712,4768817.8819389855],[-10584975.587575188,4769078.0550870141],[-10584973.01476625,4769338.2735301685],[-10584712.334426813,4769337.3966169031],[-10584556.663344536,4769336.8704925459],[-10584451.568889689,4769336.8581570731],[-10584190.693025962,4769336.7871897276],[-10583929.754690943,4769336.7085863939],[-10583928.301815489,4769597.8620988522],[-10583926.851443132,4769858.7954906086],[-10583925.411683012,4770119.5836889008],[-10583923.973324634,4770380.2168450532],[-10583922.823896883,4770640.2893976802],[-10583921.674068887,4770900.1783849113],[-10583920.533852085,4771159.876802233],[-10583919.394235794,4771419.6352583505],[-10584180.491639609,4771419.2090502959],[-10584441.513356991,4771418.7746866802],[-10584702.50083526,4771418.3289310485],[-10584963.39060194,4771417.8777384497],[-10584961.612896971,4771679.8265705993],[-10584959.824177328,4771943.1449302407],[-10584958.059086096,4772205.3716767365],[-10584956.295797095,4772467.3794671278],[-10584695.619231967,4772466.7303367415],[-10584435.578593072,4772466.076803688],[-10584174.121136395,4772465.4045002833],[-10583911.938351538,4772464.7248185985],[-10583649.920653714,4772464.9782102481],[-10583387.25841989,4772465.2249999987],[-10583125.297787216,4772465.4627258498],[-10582863.594848799,4772465.6937189093],[-10582861.359735137,4772726.9002154507],[-10582859.12261875,4772988.2541041262],[-10582856.878493981,4773249.7276882855],[-10582854.631765692,4773511.4104487756],[-10582596.548820488,4773510.2777447095],[-10582339.697982527,4773509.1429681899],[-10582082.059645275,4773508.0123362886],[-10581824.316388309,4773506.874324536],[-10581825.445482563,4773245.4580395659],[-10581826.573975896,4772984.1268808935],[-10581827.712380081,4772722.9902446456]]]},"attributes":{"objectid":3977,"field_kid":"1000149600","approxacre":2060,"field_name":"EASTON EAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":87798.220000000001,"maxoilwell":14,"lastoilpro":308.02999999999997,"lastoilwel":3,"lastodate":"2-2009","cumm_gas":27323,"maxgaswell":2,"lastgaspro":97,"lastgaswel":2,"lastgdate":"12-1994","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149600}},{"geometry":{"rings":[[[-10644062.682434827,4670903.7119580526],[-10644320.607737534,4670902.4003151553],[-10644315.354712458,4671161.5081616472],[-10644310.102188053,4671420.6350156693],[-10644304.848062057,4671679.7560109338],[-10644299.595938854,4671938.8170517087],[-10644040.930407643,4671940.1194775393],[-10643781.530838424,4671941.4190838831],[-10643522.8668091,4671942.7040765071],[-10643264.451664008,4671943.9824033603],[-10643270.213352624,4671684.8689247072],[-10643275.97524152,4671425.7895795144],[-10643281.736229666,4671166.6970672738],[-10643287.498019062,4670907.5826729964],[-10643546.136635937,4670906.3030728847],[-10643804.52506722,4670905.0180897564],[-10644062.682434827,4670903.7119580526]]]},"attributes":{"objectid":3405,"field_kid":"1000150344","approxacre":160,"field_name":"VASSAR","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":364,"maxoilwell":3,"lastoilpro":140,"lastoilwel":3,"lastodate":"3-1989","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":1607.5,"avgdepthsl":498,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150344}},{"geometry":{"rings":[[[-10601355.022558531,4761036.6059913719],[-10601604.194828603,4761031.375523706],[-10601605.32122983,4761292.537936531],[-10601606.452838834,4761555.1449960833],[-10601607.578139452,4761816.6957915965],[-10601608.702338658,4762078.0461826585],[-10601358.415353457,4762081.0769309672],[-10601107.609075895,4762084.1072951583],[-10600856.338869117,4762087.1544764414],[-10600604.566789834,4762090.2010148037],[-10600604.449981168,4761828.9952992108],[-10600604.335375812,4761568.5465923809],[-10600604.223073363,4761308.3636573693],[-10600604.111572223,4761048.5478620529],[-10600854.928219205,4761044.3118659072],[-10601094.805594396,4761040.2536457125],[-10601105.234784313,4761040.072124077],[-10601162.270408412,4761039.0828748643],[-10601266.056031696,4761038.4715215927],[-10601355.022558531,4761036.6059913719]]]},"attributes":{"objectid":3620,"field_kid":"1000149131","approxacre":153,"field_name":"ZACHARIAH WEST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1444.3099999999999,"maxoilwell":2,"lastoilpro":93.879999999999995,"lastoilwel":2,"lastodate":"12-2008","cumm_gas":54901,"maxgaswell":1,"lastgaspro":67,"lastgaswel":1,"lastgdate":"11-1997","avgdepth":1031,"avgdepthsl":-17,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149131}},{"geometry":{"rings":[[[-10639920.766819941,4549197.1503337994],[-10639922.25112603,4548940.3342636898],[-10639668.742896603,4548936.8037268473],[-10639414.717987357,4548933.2590067601],[-10639161.762979707,4548929.731889273],[-10638909.34867942,4548926.204263608],[-10638656.538935468,4548922.6682807691],[-10638404.416663675,4548919.1348290583],[-10638151.504805615,4548915.5751621388],[-10637898.253767051,4548912.0061245058],[-10637898.283763241,4548904.9469319712],[-10637899.395291887,4548656.5268476363],[-10637900.545318102,4548399.5360821467],[-10637900.559813939,4548395.6881744284],[-10637901.696032135,4548140.1339215674],[-10637902.86534901,4547877.3634298695],[-10637647.052798772,4547876.5547431298],[-10637391.092983283,4547875.7413708996],[-10637135.020441351,4547874.930278928],[-10636899.450613791,4547874.1771032624],[-10636878.874521945,4547875.0584451379],[-10636875.788665397,4547622.6096152635],[-10636872.864157517,4547383.3065143861],[-10636872.727945505,4547371.7583488589],[-10636869.693965938,4547122.8724304512],[-10636866.681820633,4546875.8426813809],[-10636863.962448036,4546617.852727877],[-10636861.232760366,4546359.1363316737],[-10636858.484044638,4546099.0643158993],[-10636855.721307553,4545837.8479976784],[-10636857.278163368,4545585.5865483889],[-10636858.842321102,4545332.1337445136],[-10636860.414086116,4545078.4709693072],[-10636861.987149667,4544824.2727087783],[-10636863.579730725,4544569.252097575],[-10636865.17511175,4544313.6474753227],[-10636866.785285521,4544057.1014790088],[-10636868.400420489,4543799.7420803513],[-10636872.885652248,4543799.7767517436],[-10637122.485565566,4543801.661511424],[-10637377.263187455,4543803.5805603685],[-10637382.143462438,4543803.6266244398],[-10637632.354260962,4543805.4999882979],[-10637888.864025915,4543807.4149799617],[-10637890.389074171,4543551.8286816431],[-10637891.908722445,4543297.2396485768],[-10637893.431569582,4543041.8833514322],[-10637894.953514615,4542786.3526678942],[-10637896.478061371,4542530.6310277795],[-10637898.002006229,4542274.7137614628],[-10637899.526851026,4542018.6254399084],[-10637901.051394394,4541762.3636706471],[-10638153.639551468,4541761.7333022291],[-10638401.78562532,4541761.1081415312],[-10638405.556555619,4541761.1009113165],[-10638656.817924252,4541760.4668775667],[-10638902.341055622,4541759.8424870186],[-10638907.4205539,4541759.8337325584],[-10639157.318392821,4541759.1880592378],[-10639402.697362373,4541758.5469610654],[-10639406.547081066,4541758.5407431461],[-10639655.082391404,4541757.8835568363],[-10639902.894790733,4541757.2221964188],[-10639903.505928636,4541502.9886032837],[-10639904.110178042,4541251.9189159945],[-10639904.121872237,4541248.8100679703],[-10639904.736915085,4540994.6800048202],[-10639905.341271469,4540744.7482328154],[-10639905.343648907,4540740.6039790707],[-10640136.539721115,4540741.6520009842],[-10640367.316422801,4540742.6911651865],[-10640597.683064474,4540743.7343812911],[-10640827.642449215,4540744.7691193298],[-10640827.872351674,4540998.987772638],[-10640828.104857367,4541253.2643940309],[-10640828.33355899,4541507.5807611626],[-10640828.563061751,4541761.9421932604],[-10640843.105376175,4541762.0114988443],[-10641072.588624306,4541763.1603998607],[-10641288.948149417,4541764.2387238843],[-10641299.839768333,4541764.3005762147],[-10641524.863713697,4541765.4206358977],[-10641747.664965477,4541766.5252622636],[-10642001.442969931,4541767.966206816],[-10642255.93287299,4541769.4048703238],[-10642259.802414028,4541769.4170060977],[-10642511.138478912,4541770.8403667305],[-10642767.056283832,4541772.2814299092],[-10642775.768802295,4542027.621331241],[-10642784.492234917,4542283.2933162414],[-10642793.225180164,4542539.3046249272],[-10642801.970441127,4542795.6461678976],[-10642810.735025736,4543052.3291098382],[-10642819.510724705,4543309.3420824064],[-10642828.297638103,4543566.6763747735],[-10642837.096466763,4543824.3404932301],[-10642851.421237165,4543824.4796998352],[-10643104.59946863,4543827.0617789542],[-10643345.221013149,4543829.50996246],[-10643356.450611189,4543829.6180370394],[-10643607.472323207,4543832.1622718247],[-10643856.22258692,4543834.6785370121],[-10644110.292495336,4543833.4021394048],[-10644366.573884496,4543832.1082620192],[-10644377.868154133,4543832.0579562178],[-10644623.69281322,4543830.8131154208],[-10644881.926692573,4543829.4970750948],[-10644896.713279786,4543829.4287779527],[-10644955.388399905,4543829.1383732688],[-10645140.45431144,4543829.8402902083],[-10645400.537879601,4543830.82145089],[-10645414.013096437,4543830.8740646113],[-10645638.949735932,4543831.7264821101],[-10645660.958125349,4543831.7869116142],[-10645925.293061178,4543832.5167491119],[-10645926.375207076,4544087.6191895865],[-10645926.748354493,4544175.6202009572],[-10645932.119517153,4544342.6971748853],[-10645940.313245656,4544597.7527810782],[-10645948.502468839,4544852.6628190009],[-10645689.962904332,4544852.229309815],[-10645431.354162207,4544851.7894701017],[-10645173.922841078,4544851.3454473158],[-10644917.241461331,4544850.8972431906],[-10644926.08157609,4545107.2354410142],[-10644934.999694141,4545365.8353414433],[-10644943.856734864,4545622.9843303934],[-10644952.70626656,4545879.9194606086],[-10644951.700839356,4546136.7291464712],[-10644950.709906364,4546390.2294880487],[-10644950.693905959,4546392.8798261117],[-10644949.693775892,4546648.4012108464],[-10644948.696144216,4546903.275651386],[-10644947.69672239,4547159.9630343057],[-10644946.709291954,4547413.3369427677],[-10644946.693791844,4547415.9484072533],[-10644945.692057775,4547671.219053491],[-10644944.693322342,4547925.7963249655],[-10644698.971504422,4547926.3405036256],[-10644457.092399791,4547926.8698468683],[-10644451.851516975,4547926.8770893356],[-10644203.493539916,4547927.4255860206],[-10643953.40752307,4547927.9715573667],[-10643691.694446048,4547927.1389577975],[-10643433.08485277,4547926.3092575017],[-10643175.810658468,4547925.4670126149],[-10642920.465129169,4547924.6251391545],[-10642914.905888811,4547924.6027461346],[-10642663.152491797,4547923.7694691932],[-10642404.788574411,4547922.9070912749],[-10642398.872934049,4547922.8930589678],[-10642145.391997986,4547922.0510506118],[-10641884.961961493,4547921.1784229428],[-10641883.240484025,4548178.1108871289],[-10641881.518505899,4548435.0608381964],[-10641879.797929151,4548692.0124447197],[-10641878.075750548,4548948.9886334399],[-10641876.354472946,4549205.9962464087],[-10641874.630892545,4549463.0018446287],[-10641872.909114039,4549720.0207557427],[-10641871.186834546,4549977.0019294545],[-10641869.073114881,4550233.9157214547],[-10641866.986706441,4550487.6540443813],[-10641866.957191506,4550490.6652112985],[-10641864.845271342,4550747.2424055543],[-10641862.767063463,4550999.6282772915],[-10641862.7306468,4551003.6367762834],[-10641617.693347696,4551002.6775219589],[-10641373.078022564,4551001.7131979857],[-10641128.893581355,4551000.7375964411],[-10640885.113794662,4550999.7575587938],[-10640641.755084258,4550999.3440806037],[-10640398.863398349,4550998.9248990519],[-10640156.344731342,4550998.4934266647],[-10639914.223610809,4550998.0565046314],[-10639914.750539841,4550740.7178805098],[-10639915.278167062,4550482.9362692852],[-10639915.800085234,4550224.7073966311],[-10639916.323802771,4549966.0261018844],[-10639917.806108326,4549709.4178099912],[-10639919.281911511,4549453.7057153424],[-10639920.766819941,4549197.1503337994]]]},"attributes":{"objectid":2552,"field_kid":"1000152658","approxacre":8117,"field_name":"PERRY-HALLIGAN","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":953122.12,"maxoilwell":197,"lastoilpro":946.27999999999997,"lastoilwel":131,"lastodate":"2-2009","cumm_gas":157,"maxgaswell":1,"lastgaspro":7,"lastgaswel":1,"lastgdate":"10-1972","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000152658}},{"geometry":{"rings":[[[-10589122.136446331,4492790.386342844],[-10589054.657737583,4492787.1808548775],[-10588953.548295001,4492784.416532916],[-10588955.60301342,4492520.7409343421],[-10588957.617601333,4492262.2034479976],[-10588957.636158329,4492259.3486979678],[-10588959.66094986,4492000.4611242078],[-10588961.665974567,4491744.0615247749],[-10588963.459781077,4491515.3760258611],[-10588963.952357898,4491484.8355661649],[-10588968.121408083,4491226.030347324],[-10588972.296071539,4490967.5396166956],[-10588976.4652359,4490709.3793481365],[-10588971.837406801,4490455.1272744946],[-10588967.669472974,4490226.1093626544],[-10588966.872519603,4490202.1269376287],[-10588963.709064897,4490103.1277318895],[-10588961.03781962,4489948.4171312423],[-10588956.657184878,4489694.6608255124],[-10588952.260326745,4489440.6935114376],[-10588951.752685301,4489411.4001533212],[-10588951.702124909,4489309.165196442],[-10588949.639490588,4489186.1406728495],[-10588945.398303851,4488931.8673923947],[-10588941.326240549,4488687.7917557666],[-10588940.509263495,4488677.0969999274],[-10588950.459517093,4488679.3847180912],[-10589060.025249287,4488678.4951115632],[-10589192.831738492,4488678.7266156925],[-10589293.649770578,4488678.9002950992],[-10589445.905543609,4488678.9871611418],[-10589698.99886816,4488679.1169822467],[-10589952.306438072,4488679.2406358337],[-10589989.107609285,4488679.2611353025],[-10590206.32328864,4488677.9418201745],[-10590236.498862954,4488677.7597015435],[-10590460.807406949,4488678.0736790029],[-10590715.666859776,4488678.4011272034],[-10590970.983736647,4488678.7230415698],[-10591215.01589312,4488679.5239694864],[-10591459.921850862,4488680.3230226599],[-10591465.212814325,4488680.3456521612],[-10591705.738151662,4488681.1165494407],[-10591952.454183308,4488681.9021568224],[-10591959.402445836,4488681.9224205539],[-10592200.017585816,4488682.6805995833],[-10592448.460195815,4488683.4580492405],[-10592453.55383301,4488683.4737488851],[-10592697.740365539,4488684.233119797],[-10592947.823555389,4488685.0048031779],[-10592946.992803633,4488940.5444228388],[-10592946.156993276,4489198.1701138364],[-10592945.350498669,4489455.0170841319],[-10592944.545008967,4489712.0363350194],[-10592943.708287423,4489969.2368214978],[-10592942.870468661,4490226.6222102288],[-10592942.042364715,4490484.1772738704],[-10592941.212562621,4490741.9066854613],[-10592939.668818161,4491002.984432308],[-10592938.146112354,4491260.3043063544],[-10592938.125955837,4491263.2382719675],[-10592936.620448189,4491515.2094070027],[-10592936.557645891,4491522.6869128663],[-10592934.372222278,4491777.4532438582],[-10592934.320851112,4491781.3185691992],[-10592932.113372603,4492039.1947959922],[-10592929.937541384,4492293.1581686586],[-10592929.912082359,4492296.2501525162],[-10592927.719583686,4492552.4981850954],[-10592925.534775265,4492807.9366929466],[-10592743.742228614,4492808.1051924014],[-10592681.770905258,4492808.1627643043],[-10592438.502703242,4492808.3850641185],[-10592236.444630679,4492808.5623035757],[-10592195.753896279,4492808.5979232881],[-10591953.524384227,4492808.8000819273],[-10591729.542685509,4492808.9896879457],[-10591710.972702984,4492809.0045030937],[-10591469.178289294,4492809.1936920406],[-10591228.12402362,4492809.3716801042],[-10591219.954961259,4492809.3767121285],[-10590987.803994006,4492809.3092941102],[-10590735.874174653,4492809.9599393029],[-10590722.920529347,4492809.9923586324],[-10590483.121411907,4492810.6013739184],[-10590229.53179034,4492811.2564016711],[-10590224.48010096,4492811.2699258747],[-10590001.667250337,4492811.8377686031],[-10589975.106894063,4492811.1404920118],[-10589722.047114525,4492804.46892008],[-10589720.107890883,4492804.4191229576],[-10589464.843183156,4492797.6901945509],[-10589292.966695352,4492793.1583571518],[-10589216.349674499,4492792.6717981305],[-10589209.303094655,4492792.5013467977],[-10589122.136446331,4492790.386342844]]]},"attributes":{"objectid":2583,"field_kid":"1000149406","approxacre":2532,"field_name":"St. Paul-Walnut South","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149406}},{"geometry":{"rings":[[[-10595080.791326398,4445773.3191988049],[-10595080.533056414,4445520.6374937622],[-10595080.273668813,4445266.7413343629],[-10595080.000849102,4445011.6099880198],[-10595079.725309784,4444755.2534520067],[-10595079.476978417,4444497.1495949486],[-10595079.227626791,4444237.6248612748],[-10595078.938910356,4443976.6587878997],[-10595078.648072265,4443714.2638968984],[-10595330.026639551,4443716.743462489],[-10595582.412970029,4443719.2260562172],[-10595585.871964196,4443719.2651183326],[-10595835.739485715,4443721.7151881717],[-10596090.029813789,4443724.203083735],[-10596094.353205932,4443724.2409071922],[-10596096.305853399,4443470.5362193538],[-10596098.261403166,4443216.7337795822],[-10596100.201333879,4442962.8356008017],[-10596102.14256512,4442708.8460787861],[-10596104.095212081,4442455.0329258274],[-10596106.042258576,4442201.6638280572],[-10596107.982697476,4441948.280102252],[-10596109.922938127,4441695.0304502072],[-10595864.1983511,4441692.8989870269],[-10595606.474600932,4441690.6560977576],[-10595597.948750978,4441690.5841026725],[-10595347.735577485,4441688.4064202411],[-10595087.937730301,4441686.1394217908],[-10595088.718785232,4441435.3512600716],[-10595089.495151764,4441185.8346858071],[-10595090.291021308,4440934.8525078949],[-10595091.087384054,4440683.3155038431],[-10594835.363162851,4440681.0037732217],[-10594580.387406141,4440678.6920564556],[-10594326.097942084,4440676.3803524291],[-10594072.516796131,4440674.0690376433],[-10594072.002141189,4440420.7806961956],[-10594071.485976612,4440166.9270093134],[-10594070.971906513,4439912.5038807271],[-10594070.45572616,4439657.5207529776],[-10594325.347582828,4439661.0436989116],[-10594580.945254795,4439664.5714221299],[-10594837.2723694,4439668.1053019846],[-10595094.263450922,4439671.6433316162],[-10595349.896366851,4439675.5401072865],[-10595604.610920465,4439679.4169361554],[-10595858.45827092,4439683.276953022],[-10596096.774466539,4439686.8933755998],[-10596111.429906126,4439686.9460378177],[-10596363.364006495,4439687.9084113557],[-10596614.271319814,4439688.8602365749],[-10596864.143436387,4439689.8037697421],[-10597112.986263037,4439690.7380081015],[-10597364.610386245,4439690.2537641469],[-10597616.198467802,4439689.7636278262],[-10597867.743099095,4439689.2640890395],[-10598119.252289426,4439688.7579057673],[-10598370.276218908,4439688.2475770591],[-10598621.560549375,4439687.7313613202],[-10598873.115292434,4439687.2123926375],[-10599124.92913495,4439686.6860326249],[-10599376.645404495,4439689.4610541733],[-10599628.390907321,4439692.2295583645],[-10599880.196779389,4439694.9896654263],[-10600132.051907901,4439697.7443836909],[-10600384.66230897,4439700.5019993698],[-10600637.598185766,4439703.2572397692],[-10600890.865445126,4439706.010230354],[-10601144.440059246,4439708.7590903388],[-10601146.367212156,4439963.4670937462],[-10601148.293265851,4440218.3874409543],[-10601150.227020329,4440472.6328100618],[-10601152.157366063,4440726.4921269389],[-10601154.097918855,4440979.9717581309],[-10601156.035763714,4441233.0646553058],[-10601156.097209038,4441239.5391261494],[-10601157.968397807,4441485.7771850517],[-10601159.886910878,4441738.1109500425],[-10601413.257538375,4441732.7710073115],[-10601666.185755666,4441727.4330655802],[-10601918.643630479,4441722.096998984],[-10602170.634566769,4441716.7653151657],[-10602176.298308123,4441716.6474335166],[-10602422.042771181,4441724.098036157],[-10602673.649206635,4441731.7195167607],[-10602925.45256841,4441739.3416330796],[-10603177.478986656,4441746.9628810175],[-10603207.969524613,4441748.4389051134],[-10603430.491665056,4441750.0815549772],[-10603683.222511569,4441751.9401994534],[-10603935.632486096,4441753.7951961067],[-10604187.747418514,4441755.6397753358],[-10604440.190230621,4441757.479977645],[-10604692.550647041,4441759.3136569196],[-10604944.846488366,4441761.1359239463],[-10605197.076553253,4441762.952044663],[-10605198.400358224,4442017.0164622031],[-10605199.725166397,4442271.2917294092],[-10605201.050773688,4442525.4119744701],[-10605202.377682172,4442779.5192562798],[-10605203.691172199,4443033.3660423923],[-10605205.004763365,4443287.3272567783],[-10605206.330269597,4443541.4251042837],[-10605207.656677658,4443795.6144487616],[-10605209.470040333,4444048.9257864412],[-10605211.281296466,4444301.86745256],[-10605211.301951407,4444304.8192455759],[-10605213.081335554,4444554.4444369599],[-10605214.829837212,4444799.6431625299],[-10605214.875964092,4444806.6338880351],[-10605214.888625229,4444811.0565835182],[-10605216.075000089,4445058.5782351596],[-10605217.282145446,4445310.5358520728],[-10605217.317926101,4445314.2688084915],[-10605218.512617832,4445562.5101267975],[-10605219.726470917,4445814.4954150217],[-10605222.305539696,4446069.8168302057],[-10605224.879196791,4446324.6493118852],[-10605227.451146333,4446578.9782742169],[-10605230.018685512,4446832.8340375926],[-10605232.562997755,4447086.7119446443],[-10605235.105504284,4447340.2717862865],[-10605237.672135351,4447593.5359960897],[-10605240.235859018,4447846.4428293547],[-10604987.692810114,4447846.4964363733],[-10604733.788785653,4447846.5441040723],[-10604480.481652118,4447846.5865216674],[-10604227.107741209,4447846.6219118051],[-10603973.681970162,4447846.6476404527],[-10603720.189521862,4447846.666467092],[-10603466.646214632,4447846.6802740209],[-10603213.075475594,4447846.6893128697],[-10603212.172375102,4447592.5924145225],[-10603211.267669659,4447338.2235006755],[-10603211.261512641,4447333.622863519],[-10603210.38829042,4447083.5808354989],[-10603209.497394685,4446828.6595452568],[-10603209.464990027,4446822.4679127801],[-10603208.595279634,4446573.1051652171],[-10603207.703478592,4446317.4810778145],[-10603207.673688978,4446312.3869221089],[-10603206.806069719,4446061.7505253879],[-10603205.9214745,4445805.9348387467],[-10602952.663638042,4445806.3730016919],[-10602699.707349529,4445806.8037696993],[-10602445.850922382,4445807.2332675438],[-10602348.811247466,4445807.3966171015],[-10602191.508941369,4445808.2332066875],[-10602040.657078316,4445809.0352920033],[-10601936.828960912,4445808.3807262769],[-10601681.399896193,4445806.7698473055],[-10601425.695313143,4445805.1455428014],[-10601169.501164807,4445803.5121989921],[-10600915.035689298,4445800.001595296],[-10600659.809735497,4445796.4730429472],[-10600404.529918948,4445792.9417313077],[-10600148.98139165,4445789.3993782979],[-10599893.228828263,4445785.8498733491],[-10599640.392830258,4445782.3352901535],[-10599637.209155941,4445782.2880727956],[-10599380.960118279,4445778.7172384597],[-10599124.416640168,4445775.1357386149],[-10598872.491106588,4445772.8913874365],[-10598619.948760767,4445770.6356117986],[-10598610.829837121,4445770.5564308269],[-10598366.79821261,4445768.3676593034],[-10598121.338239327,4445766.1602995498],[-10598113.047470154,4445765.9898214694],[-10598105.228745902,4445765.8354065483],[-10597858.671271566,4445760.8879231345],[-10597603.620693704,4445755.7638144232],[-10597597.766136386,4445755.6450559413],[-10597347.916160131,4445750.6179974554],[-10597091.52212985,4445745.451725902],[-10597090.773631802,4446002.0612331806],[-10597090.120721161,4446225.4377309503],[-10597090.037130339,4446257.3117364831],[-10597089.312825173,4446511.1624960136],[-10597088.713803386,4446720.9150747098],[-10597088.580994019,4446763.6502902014],[-10597087.856813738,4447011.5816183835],[-10597087.205902245,4447234.6995523116],[-10597087.13443036,4447259.1035282975],[-10597086.42075029,4447506.0939296698],[-10597085.706867589,4447752.8930105465],[-10596826.927802827,4447760.1290415684],[-10596571.107150054,4447767.2731734142],[-10596567.840283422,4447767.3606814845],[-10596308.460528186,4447774.5970885679],[-10596098.427969234,4447780.4532653103],[-10596048.800262403,4447782.7400132064],[-10595783.55491044,4447794.988272408],[-10595520.881725337,4447807.1118915789],[-10595514.302841775,4447807.4108546386],[-10595247.210865036,4447819.7289877152],[-10594955.501714295,4447833.1741469046],[-10594976.022449898,4447584.1090209102],[-10594996.87792022,4447330.9709839234],[-10594997.679013539,4447321.193426419],[-10595017.907263841,4447075.5558021246],[-10595037.201691287,4446841.2553197779],[-10595038.193104194,4446816.488542811],[-10595038.584931782,4446807.1718204366],[-10595048.73582566,4446558.811532096],[-10595059.357009914,4446298.9381640078],[-10595059.653850526,4446291.3069824362],[-10595070.023823209,4446037.1751541737],[-10595080.791326398,4445773.3191988049]]]},"attributes":{"objectid":2584,"field_kid":"1000149408","approxacre":9440,"field_name":"TOMEY","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":29345.68,"maxoilwell":11,"lastoilpro":111.68000000000001,"lastoilwel":11,"lastodate":"10-2005","cumm_gas":22179,"maxgaswell":8,"lastgaspro":45,"lastgaswel":1,"lastgdate":"9-1998","avgdepth":523,"avgdepthsl":-366.66666666999998,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149408}},{"geometry":{"rings":[[[-10539367.32477803,4589809.4406929612],[-10539366.292939417,4589548.8432325982],[-10539365.258999256,4589288.0886837766],[-10539364.22185649,4589027.1443791511],[-10539363.183112869,4588766.0236840304],[-10539363.696124943,4588509.0867046053],[-10539364.210537668,4588252.3163111946],[-10539364.71013242,4587995.7093126765],[-10539365.211828576,4587739.2751052035],[-10539365.723435659,4587482.9356136834],[-10539366.234941937,4587226.7214702321],[-10539366.737637339,4586970.6414374495],[-10539367.239230761,4586714.6916914545],[-10539623.198182236,4586715.4541213736],[-10539879.31261244,4586716.2110852376],[-10540135.518047152,4586716.9709733166],[-10540391.864143562,4586717.7236155085],[-10540648.792509736,4586718.46303799],[-10540905.572304891,4586719.194832447],[-10541162.191815469,4586719.9290419212],[-10541418.682077242,4586720.6566404337],[-10541674.687970625,4586722.8101020157],[-10541930.843135294,4586724.9587334916],[-10542187.221356096,4586727.1038063485],[-10542443.801408643,4586729.2449391354],[-10542699.402534695,4586731.3687802795],[-10542955.285284285,4586733.4880459253],[-10543211.316404162,4586735.5980319874],[-10543467.846297359,4586737.7066212958],[-10543722.545109283,4586736.8379981928],[-10543969.032574911,4586735.9899480678],[-10543976.330770863,4586735.9744578842],[-10544229.538968515,4586735.0898129242],[-10544472.931273932,4586734.2332372246],[-10544482.103726106,4586734.2102514803],[-10544482.109634871,4586990.9213803606],[-10544482.115046527,4587247.2516276287],[-10544482.121353939,4587504.178015057],[-10544482.126958672,4587761.3189115217],[-10544482.357222637,4588018.3646118827],[-10544482.588180769,4588276.1510985596],[-10544482.830653796,4588533.7532840529],[-10544483.071023028,4588791.5096362242],[-10544484.136451347,4589048.0615040371],[-10544485.202280637,4589304.5361911664],[-10544486.272615699,4589560.9244091241],[-10544487.344953455,4589817.2473882493],[-10544231.96671146,4589817.3822049052],[-10543976.292629631,4589817.5093909092],[-10543720.064411169,4589817.6289456375],[-10543463.044983653,4589817.7417586856],[-10543463.03832202,4589824.0905098142],[-10543205.598714393,4589823.971117286],[-10542948.612627884,4589823.8482923731],[-10542692.049327256,4589823.7110987343],[-10542435.941049496,4589823.5674207266],[-10542179.707327513,4589823.4297192115],[-10541922.751175473,4589823.2826056825],[-10541667.295047037,4589823.1288831374],[-10541412.592184145,4589822.9695671052],[-10541412.585221365,4589817.0208789958],[-10541157.385993106,4589816.1033995859],[-10540903.523300398,4589815.1832529586],[-10540647.963557657,4589814.2413569484],[-10540391.709817326,4589813.2920837002],[-10540135.51884893,4589812.3391228439],[-10539879.018224563,4589811.3784041833],[-10539623.048510058,4589810.4124730648],[-10539367.32477803,4589809.4406929612]]]},"attributes":{"objectid":2665,"field_kid":"1000149647","approxacre":2395,"field_name":"PRESCOTT","status":"Abandoned","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":17134,"maxoilwell":1,"lastoilpro":134,"lastoilwel":1,"lastodate":"4-1995","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149647}},{"geometry":{"rings":[[[-10568933.212099204,4574721.4094823534],[-10568934.455957053,4574464.0386938872],[-10568925.024237547,4574463.8734633066],[-10568925.732876735,4574206.3888267046],[-10568926.440209614,4573949.4668497117],[-10568927.128415463,4573693.1177750649],[-10568927.815615222,4573437.3447341407],[-10569181.459572276,4573440.8752180021],[-10569435.983247887,4573444.4145814469],[-10569691.23997234,4573447.9505102159],[-10569947.25747769,4573451.4904950252],[-10570202.430225566,4573452.6307023037],[-10570457.390327312,4573453.7624048386],[-10570712.15260018,4573454.8739215974],[-10570966.688511034,4573455.977695548],[-10571220.426397884,4573457.0812232597],[-10571469.098219134,4573458.1564868381],[-10571472.761460591,4573458.1696555903],[-10571723.662863409,4573459.2459130725],[-10571973.140317589,4573460.3102495354],[-10571973.186797163,4573468.9885125449],[-10571973.997598439,4573718.8427235726],[-10571974.836355314,4573977.6778704105],[-10571974.845911471,4573984.0962018752],[-10571975.676010527,4574236.8367905868],[-10571976.529078629,4574496.31150869],[-10571976.791294916,4574752.0137441],[-10571977.053712748,4575007.5700311447],[-10571977.327545248,4575262.9628346581],[-10571977.601379011,4575518.2157631395],[-10571723.193309421,4575516.6486977814],[-10571468.91168629,4575515.078202283],[-10571214.074219737,4575513.4866320007],[-10570958.907772344,4575511.8865567204],[-10570703.417850394,4575510.2876276951],[-10570447.591338793,4575508.681209675],[-10570191.611750016,4575507.0674277125],[-10569935.597921688,4575505.4443756901],[-10569684.624747358,4575501.8063009623],[-10569433.149892306,4575498.1519772364],[-10569181.470700679,4575494.4976562606],[-10568929.508081008,4575490.8317826828],[-10568930.738010973,4575234.8104410414],[-10568931.968345391,4574978.331419725],[-10568933.212099204,4574721.4094823534]]]},"attributes":{"objectid":2669,"field_kid":"1000146847","approxacre":950,"field_name":"MAPLETON SOUTHWEST","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000146847}},{"geometry":{"rings":[[[-10625364.608198406,4453841.2859407058],[-10625361.231282692,4453586.623849337],[-10625359.972151767,4453491.7177398261],[-10625360.511339512,4453331.8976758989],[-10625361.384636227,4453076.7547046719],[-10625362.259732084,4452821.193917417],[-10625363.141317062,4452563.0408107573],[-10625364.004521709,4452310.6437171688],[-10625364.019908346,4452306.2591122659],[-10625364.892801898,4452050.7190794358],[-10625365.761800127,4451796.4659269387],[-10625107.873331681,4451796.1140846154],[-10624850.61989787,4451795.7563621942],[-10624846.666724181,4451795.7513531772],[-10624593.991086643,4451795.3913788954],[-10624337.99650912,4451795.0200134804],[-10624333.98216507,4451795.0719787423],[-10624082.69906475,4451798.2849716712],[-10623828.138773389,4451801.5327601265],[-10623825.384487052,4451801.5666902615],[-10623574.325346239,4451804.7602416482],[-10623321.250874214,4451807.9743183767],[-10623320.973104946,4451560.0041383468],[-10623320.691619329,4451310.4265687019],[-10623320.67132003,4451300.2544212928],[-10623320.40111105,4451059.2180054868],[-10623320.116697639,4450806.3839611653],[-10623320.107308535,4450795.8860347858],[-10623319.838095475,4450554.1648050928],[-10623319.55808628,4450301.2314056726],[-10623319.542801173,4450292.1857860191],[-10623319.271864371,4450047.5647413312],[-10623318.991443671,4449793.1703859316],[-10623319.573246611,4449542.2396600246],[-10623320.132696554,4449301.0849814238],[-10623320.149250213,4449292.2978043202],[-10623320.717452276,4449043.3604317289],[-10623321.262506656,4448805.034760762],[-10623321.283559334,4448795.4178108247],[-10623321.308387253,4448781.8927193023],[-10623326.72311376,4448548.3238632139],[-10623332.245831154,4448310.1250443486],[-10623332.43448961,4448302.0847858721],[-10623338.127650572,4448056.6190905869],[-10623341.904408976,4447893.7561326092],[-10623345.729827756,4447811.9404585613],[-10623340.782077838,4447567.3932870831],[-10623335.840937328,4447323.1417935481],[-10623332.028619239,4447134.7002826901],[-10623332.025982136,4447076.4656567136],[-10623332.020153807,4446832.0759997191],[-10623332.023528295,4446828.1281794533],[-10623332.0298588,4446804.4056636905],[-10623329.662562212,4446582.283600552],[-10623327.477402821,4446377.131608543],[-10623327.647187876,4446335.3415562697],[-10623328.249462953,4446184.794876636],[-10623323.021579817,4446086.9149484709],[-10623312.257713469,4445885.4208448287],[-10623316.075039295,4445832.5234997915],[-10623328.853833172,4445590.6073779911],[-10623341.548342364,4445350.2902666759],[-10623354.27978947,4445109.1892299242],[-10623366.983309356,4444868.641252365],[-10623367.975018207,4444849.8913759524],[-10623383.117494661,4444626.9063071851],[-10623397.685169505,4444412.3869849574],[-10623399.148463326,4444385.3897034936],[-10623412.156732861,4444143.9591472819],[-10623425.172210688,4443902.3841162045],[-10623425.176724898,4443648.2184484405],[-10623425.181135884,4443393.6421815921],[-10623425.192957466,4443139.3416344542],[-10623425.205780553,4442885.0934629738],[-10623425.214298991,4442630.897036124],[-10623425.223218197,4442376.7474601781],[-10623425.239446184,4442122.644731896],[-10623425.256175091,4441868.5952419462],[-10623422.795441028,4441615.5710737174],[-10623420.334706014,4441362.4544035383],[-10623420.290322706,4441358.1707365932],[-10623417.870065583,4441109.2523839762],[-10623415.405624487,4440855.9637674922],[-10623415.346913701,4440850.2206414109],[-10623412.947597822,4440603.6491515972],[-10623410.484559201,4440350.5436141798],[-10623410.425643468,4440344.1693119528],[-10623408.009901011,4440096.6528527234],[-10623405.524524264,4439841.9717839658],[-10623658.37979476,4439844.463072123],[-10623911.050651254,4439846.946455745],[-10624163.523477932,4439849.4171707816],[-10624415.79326904,4439851.8807327282],[-10624423.236596161,4439851.9542162772],[-10624667.82876843,4439851.5838122917],[-10624919.50995655,4439851.1944912067],[-10625170.849548772,4439850.8003940973],[-10625421.853351815,4439850.4008943914],[-10625673.321310829,4439852.547774598],[-10625925.062185934,4439854.6912799878],[-10626177.079280971,4439856.8321628217],[-10626429.369592447,4439858.9690440735],[-10626681.924410287,4439861.103929121],[-10626934.7395296,4439863.2350628097],[-10627187.823960794,4439865.3576819366],[-10627441.171296498,4439867.4788062116],[-10627695.495857272,4439868.5111211492],[-10627950.300474308,4439869.5398182571],[-10628205.584446751,4439870.5590057643],[-10628461.335660594,4439871.5750763956],[-10628474.830901453,4439871.6244644988],[-10628719.161370644,4439871.3726350032],[-10628976.376772948,4439871.102228025],[-10629232.695736311,4439870.8287794422],[-10629488.687420357,4439870.5493017705],[-10629554.242605757,4439871.9728898508],[-10629740.419377137,4439871.7746930914],[-10629992.640591357,4439871.501719743],[-10630245.934849154,4439871.2176294969],[-10630500.078891799,4439870.9251719238],[-10630752.426152082,4439870.637411532],[-10631004.51030742,4439870.3429976478],[-10631039.913830861,4439870.2956587793],[-10631256.368265895,4439870.8227207083],[-10631507.952339208,4439871.4304005392],[-10631509.612572411,4440125.1506774006],[-10631511.277717166,4440379.8574868143],[-10631512.943457915,4440633.8118348904],[-10631514.607395533,4440887.5988860419],[-10631516.259615825,4441140.7264213571],[-10631517.91684676,4441394.6744350921],[-10631519.567760235,4441646.9518682398],[-10631521.230397739,4441900.9953954006],[-10631522.810945891,4442155.5791476695],[-10631524.37796353,4442407.69189048],[-10631525.945083998,4442660.2547624893],[-10631527.509598352,4442912.3106781309],[-10631529.07121413,4443165.1395088667],[-10631530.632829323,4443417.8818317074],[-10631532.202053167,4443670.6446076604],[-10631533.768572098,4443923.1134503307],[-10631786.698339237,4443923.6463913247],[-10632039.985009018,4443924.1751933461],[-10632044.484685756,4443924.1830844143],[-10632293.645500502,4443924.696094228],[-10632547.674507737,4443925.2148625571],[-10632545.722217325,4444172.2510711579],[-10632543.763824578,4444420.0328361625],[-10632541.79332309,4444668.6205336638],[-10632539.818321306,4444917.9906423148],[-10632537.683646364,4445168.5054273941],[-10632535.536967563,4445420.6029429967],[-10632535.516965106,4445423.8883683896],[-10632533.370277224,4445674.5060568172],[-10632531.18547315,4445929.5054788813],[-10632527.392230848,4446180.6491548885],[-10632523.987769961,4446406.1072154241],[-10632523.691656614,4446425.83115141],[-10632520.028308164,4446668.3619532799],[-10632516.368461793,4446910.5872219736],[-10632773.593123041,4446922.0002606977],[-10633029.847389076,4446933.3626368903],[-10633285.293743253,4446944.6817510976],[-10633539.440630894,4446955.9369061887],[-10633538.017423641,4447201.7133355141],[-10633536.587716352,4447448.6904696682],[-10633536.561119923,4447454.1980477823],[-10633535.142199328,4447696.9987341641],[-10633534.707162255,4447771.4244059809],[-10633532.371993454,4447946.2258640509],[-10633523.46078573,4448183.3181180516],[-10633515.083393589,4448406.1880684821],[-10633514.486117784,4448422.263545515],[-10633505.51245001,4448661.0411068974],[-10633497.3828975,4448877.3367001778],[-10633496.59153395,4448898.5296526998],[-10633495.374657113,4448930.6703333147],[-10633484.111824419,4449139.4911574265],[-10633472.172404859,4449360.8285728302],[-10633471.164781446,4449379.4108606186],[-10633458.278400684,4449618.2924552569],[-10633445.446875606,4449856.1385061173],[-10633443.5456584,4450106.6809266051],[-10633441.732968973,4450345.4011300439],[-10633441.644943953,4450357.584641098],[-10633439.742229439,4450608.8496754179],[-10633437.936846551,4450847.2956047123],[-10633437.837114405,4450860.4760554107],[-10633435.933700006,4451111.8949638093],[-10633434.084103752,4451356.3326894371],[-10633434.028384296,4451363.4517407799],[-10633432.126172891,4451615.1433843784],[-10633430.223461717,4451866.9670178872],[-10633427.511547146,4452136.7414633743],[-10633424.932101104,4452393.2471631989],[-10633424.900287729,4452396.9401348783],[-10633422.324239355,4452652.4347811565],[-10633419.746589905,4452908.0510701928],[-10633417.23057347,4453157.678379002],[-10633414.702249287,4453408.3140819268],[-10633414.640612509,4453413.6865697214],[-10633412.169826621,4453659.9576231819],[-10633409.636208706,4453912.6033007987],[-10633158.880294368,4453902.4559122836],[-10632916.100579001,4453892.6261110408],[-10632908.889643256,4453892.3293720316],[-10632659.653242998,4453882.2328430796],[-10632420.71976685,4453872.5482945535],[-10632411.171594141,4453872.1614299826],[-10632162.593536317,4453862.0737099107],[-10631923.159995642,4453852.3521532118],[-10631915.143150665,4453852.0306872297],[-10631668.834352836,4453842.0254581021],[-10631423.656931339,4453832.0610349197],[-10631172.813779186,4453831.9224408008],[-10631039.716443952,4453831.8456700137],[-10630920.801895633,4453830.2216510391],[-10630912.327192934,4453830.1025480349],[-10630667.541349282,4453826.7694653189],[-10630412.973890901,4453823.295779258],[-10630402.984436087,4453823.1590613965],[-10630161.552771535,4453819.8529328611],[-10630144.331251344,4453819.6162255881],[-10629907.122435031,4453826.4513472319],[-10629893.556046454,4453826.8472440233],[-10629649.910186704,4453833.8635736629],[-10629388.735957194,4453841.3781242101],[-10629391.693475137,4454089.843846539],[-10629394.645984037,4454337.8484444562],[-10629394.698871555,4454341.9490594743],[-10629397.713188697,4454595.7185449153],[-10629400.666301895,4454844.3727204073],[-10629400.755753096,4454851.8040691782],[-10629400.32256783,4455103.2209642306],[-10629399.897063505,4455350.2902475623],[-10629399.894590478,4455354.9324557232],[-10629399.466815075,4455606.9109452665],[-10629399.038741473,4455859.2231168533],[-10629146.80628386,4455857.989659152],[-10628896.04943235,4455856.7577464776],[-10628644.905433059,4455855.5195460841],[-10628399.70951141,4455854.3033466106],[-10628393.924222101,4455854.31436822],[-10628141.302425606,4455854.8459475208],[-10627893.090127645,4455855.362828441],[-10627890.354564626,4455855.3685317002],[-10627641.08083934,4455855.8755923677],[-10627393.494264858,4455856.3751647882],[-10627144.356978761,4455854.1401815005],[-10627142.305706806,4455854.1225511972],[-10626969.77088839,4455851.0670033535],[-10626897.105953852,4455849.0336370785],[-10626894.372793058,4455848.9598698663],[-10626643.464525649,4455841.9249723656],[-10626399.109436175,4455835.0675199451],[-10626391.51225215,4455835.1290887846],[-10626144.928346684,4455837.1215481032],[-10625900.503137264,4455839.0892071212],[-10625897.373919178,4455839.111723138],[-10625648.85828043,4455841.1043848777],[-10625399.377525911,4455843.0975244865],[-10625398.393816903,4455593.5657962635],[-10625397.404795624,4455343.1887977123],[-10625396.41296513,4455091.9885578314],[-10625395.417724652,4454839.9557201443],[-10625395.351035563,4454824.1870299699],[-10625388.012083173,4454589.7066129092],[-10625380.192565037,4454339.8338491712],[-10625372.393372549,4454090.3608870599],[-10625364.608198406,4453841.2859407058]]]},"attributes":{"objectid":2763,"field_kid":"1000149409","approxacre":20919,"field_name":"VALEDA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":3129,"maxoilwell":2,"lastoilpro":82,"lastoilwel":1,"lastodate":"9-1981","cumm_gas":1147540,"maxgaswell":19,"lastgaspro":9098,"lastgaswel":15,"lastgdate":"2-2009","avgdepth":602.99722222000003,"avgdepthsl":-194.80799615999999,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149409}},{"geometry":{"rings":[[[-10612100.018669544,4616123.3662808221],[-10612355.454283834,4616124.0251390878],[-10612355.363805443,4616384.0890526688],[-10612355.273428418,4616643.9387051184],[-10612355.185154749,4616903.6287786122],[-10612355.095480321,4617163.1776219429],[-10612099.13416552,4617162.8716295641],[-10611843.277070623,4617162.5619387208],[-10611586.159525961,4617162.2416751049],[-10611328.238857539,4617161.9151702179],[-10611328.250304254,4617155.9727962846],[-10611329.070480837,4616902.0762919709],[-10611329.91101566,4616642.019826428],[-10611329.925853116,4616638.4080445729],[-10611330.760461802,4616381.781998666],[-10611331.606405053,4616121.3500732277],[-10611353.714034338,4616121.4035690231],[-10611588.095330851,4616122.0272817248],[-10611844.231050374,4616122.7029632106],[-10611869.136297593,4616122.7649784209],[-10612100.018669544,4616123.3662808221]]]},"attributes":{"objectid":2776,"field_kid":"1000146323","approxacre":160,"field_name":"GADELMAN","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":66,"maxoilwell":1,"lastoilpro":66,"lastoilwel":1,"lastodate":"3-1984","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146323}},{"geometry":{"rings":[[[-10568193.563148452,4752666.7147977445],[-10568461.295481836,4752666.4599887859],[-10568457.07482487,4752925.5300912559],[-10568452.926780673,4753180.2391826315],[-10568452.854469752,4753184.469743629],[-10568448.644628061,4753443.290178379],[-10568444.538147872,4753695.7140336996],[-10568444.432885729,4753701.9775591539],[-10568178.946987584,4753702.6745537715],[-10567914.579566088,4753703.3628838593],[-10567651.363659034,4753704.0289803343],[-10567389.309177646,4753704.6853782013],[-10567128.735283874,4753705.6950757224],[-10566870.05074661,4753706.6896430207],[-10566611.511275146,4753707.6687022168],[-10566354.360488759,4753708.6357354671],[-10566352.832515588,4753501.9207339007],[-10566352.675161667,4753448.9399672784],[-10566351.902477738,4753188.9751226185],[-10566351.143611055,4752928.7585424008],[-10566350.599838186,4752742.0211685682],[-10566351.432042008,4752668.1932001794],[-10566611.039499655,4752668.0191972079],[-10566871.550088355,4752667.8367900746],[-10566885.12858917,4752667.8060877444],[-10567133.703452747,4752667.5997158177],[-10567397.265825573,4752667.372712099],[-10567415.137927551,4752667.3782941122],[-10567661.567742474,4752667.1745188572],[-10567926.989137536,4752666.9478919962],[-10567940.363505121,4752666.9503988931],[-10568193.563148452,4752666.7147977445]]]},"attributes":{"objectid":2781,"field_kid":"1000149603","approxacre":319,"field_name":"FAIRMOUNT TOWNSITE","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":210554,"maxgaswell":4,"lastgaspro":489,"lastgaswel":4,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149603}},{"geometry":{"rings":[[[-10574548.847716592,4767491.739669919],[-10574552.814392317,4767228.9387285756],[-10574293.369099652,4767228.8768832395],[-10574293.108602863,4767228.8767552786],[-10574032.918158175,4767229.8910021437],[-10573773.430614436,4767230.8850589041],[-10573723.409523567,4767231.0749054467],[-10573514.217084177,4767231.4310029149],[-10573516.918380735,4766972.8357634274],[-10573519.614169588,4766714.8100267565],[-10573522.328884441,4766455.2435308499],[-10573525.051210454,4766194.8361166203],[-10573784.47550627,4766194.3514413768],[-10574043.597557737,4766193.8630156182],[-10574302.351690048,4766193.3612650987],[-10574560.764032958,4766192.8534353329],[-10574560.79067857,4766187.5582983177],[-10574562.786599714,4765928.1919839233],[-10574564.758183984,4765672.0414847061],[-10574564.796437196,4765668.7011598758],[-10574566.78755413,4765408.9779360341],[-10574568.777369337,4765149.3799171457],[-10574833.214402808,4765149.0148198446],[-10575097.56683992,4765148.642478141],[-10575101.097363025,4765148.6468577283],[-10575361.850799002,4765148.2762173545],[-10575379.187655451,4765148.2497314103],[-10575626.078290358,4765148.8448755341],[-10575630.663921343,4765148.8466608524],[-10575890.123594204,4765149.4540246204],[-10576154.188320246,4765150.0640794272],[-10576157.516216502,4765150.06250815],[-10576353.811836407,4765150.5349048553],[-10576418.132713472,4765149.1008293005],[-10576681.893911179,4765143.2153243991],[-10576683.289816467,4764884.0000595134],[-10576684.684220189,4764624.6957356688],[-10576686.088337753,4764364.352447114],[-10576687.496762048,4764103.3120425195],[-10576946.166791178,4764103.9345910382],[-10577205.120944439,4764104.5500232363],[-10577464.302857498,4764105.1772259595],[-10577723.720339308,4764105.7978300909],[-10577983.113493446,4764106.4088619668],[-10578242.195592871,4764107.012522487],[-10578500.951220006,4764107.6088117408],[-10578759.415715149,4764108.1976001458],[-10578759.264615808,4764119.3545062738],[-10578758.220725363,4764367.1589184012],[-10578757.132057816,4764625.6876957035],[-10578756.040688293,4764883.7291760761],[-10578754.951321844,4765141.4151533227],[-10578754.573757796,4765403.0392128108],[-10578754.194688132,4765666.263771263],[-10578753.815721476,4765928.2927234499],[-10578753.436655365,4766190.0394454394],[-10578753.050081303,4766451.5284994422],[-10578752.87810329,4766567.9362726742],[-10578752.149621604,4766712.722214425],[-10578750.857316636,4766973.1324824691],[-10578749.56200625,4767234.327569074],[-10578489.923148168,4767231.4688650435],[-10578421.3958559,4767230.7123122877],[-10578230.471297624,4767231.042103989],[-10578226.534104969,4767231.0650254488],[-10577970.811507504,4767231.5317542572],[-10577732.864292981,4767231.9603595948],[-10577711.152718753,4767231.9193078699],[-10577705.715514628,4767231.8876292929],[-10577450.93950014,4767231.2363385642],[-10577190.531359142,4767230.562557755],[-10577185.296185529,4767230.5386422873],[-10576929.859217001,4767229.8735092022],[-10576668.936789315,4767229.1865324136],[-10576405.311980823,4767227.5231173504],[-10576142.539545091,4767225.8577582203],[-10575878.104612511,4767224.1794673549],[-10575855.299290586,4767224.0342539763],[-10575612.877464555,4767226.4593872456],[-10575609.43997412,4767489.4431264624],[-10575605.984959271,4767753.8476307243],[-10575602.534153411,4768016.7268668599],[-10575599.089255489,4768279.1050210772],[-10575334.04266452,4768279.3672862751],[-10575069.009230711,4768279.6234480301],[-10574803.219435249,4768279.8783198772],[-10574536.939080963,4768280.1269826358],[-10574537.02830288,4768273.0786225768],[-10574540.907458667,4768017.0849419413],[-10574544.889752071,4767754.1732292343],[-10574544.945026061,4767750.3437041296],[-10574548.847716592,4767491.739669919]]]},"attributes":{"objectid":2849,"field_kid":"1000149625","approxacre":1910,"field_name":"POSSUM HOLLOW NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":13724.65,"maxoilwell":3,"lastoilpro":91.579999999999998,"lastoilwel":1,"lastodate":"11-2000","cumm_gas":937451,"maxgaswell":13,"lastgaspro":15,"lastgaswel":1,"lastgdate":"1-2004","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149625}},{"geometry":{"rings":[[[-10613316.270229168,4452067.3182549309],[-10613314.848778643,4451814.9322585147],[-10613061.812460637,4451818.5676641557],[-10612810.29219668,4451822.1748788906],[-10612556.835593006,4451825.8066378357],[-10612302.684686402,4451829.4422696419],[-10612299.069996083,4451581.4565967247],[-10612295.429559542,4451331.7444246411],[-10612291.802041899,4451082.4951835303],[-10612288.17151789,4450832.9746125638],[-10612284.996617407,4450583.0944033433],[-10612281.813600648,4450332.5102461064],[-10612278.631979685,4450081.3357491745],[-10612275.440741394,4449829.530425543],[-10612528.243002111,4449829.0557595547],[-10612779.895131797,4449828.5777965346],[-10613030.433672706,4449828.0907657035],[-10613279.847111566,4449827.6020697784],[-10613281.083537862,4449575.5828852188],[-10613282.226331711,4449342.7952912794],[-10613282.305882391,4449327.3336652769],[-10613283.504533948,4449082.8466161564],[-10613284.611251272,4448857.1827913374],[-10613284.678591527,4448842.1264954722],[-10613284.829975318,4448810.2577309497],[-10613293.005994355,4448597.6039577741],[-10613301.762347504,4448369.8352454854],[-10613302.260003479,4448356.7002942106],[-10613311.372481439,4448119.2939090775],[-10613320.354740471,4447885.2943667909],[-10613321.204553366,4447636.8267450267],[-10613322.063353278,4447385.7980692042],[-10613322.937147342,4447132.2288435083],[-10613323.82072947,4446876.1110966317],[-10613324.688810766,4446621.8643006599],[-10613325.558388894,4446367.0787243508],[-10613325.574663719,4446362.2624178305],[-10613326.432367126,4446111.7449992523],[-10613327.307842087,4445855.8622868164],[-10613325.337990779,4445607.4844763493],[-10613323.358919736,4445358.1392131057],[-10613321.38204206,4445107.8150270879],[-10613319.397746615,4444856.5111093894],[-10613319.346829077,4444850.1040774342],[-10613317.41244399,4444604.5734206131],[-10613315.418323271,4444351.7987149926],[-10613315.36811755,4444346.5955534587],[-10613313.403971186,4444098.1801545629],[-10613311.390912699,4443843.7233183496],[-10613308.926446758,4443590.9784178678],[-10613306.473606095,4443339.553600926],[-10613304.014848491,4443087.0552205099],[-10613301.553384982,4442834.2823553532],[-10613299.073488822,4442580.3036301117],[-10613296.610125972,4442327.9018383222],[-10613294.138242017,4442074.3007464344],[-10613291.663952537,4441820.4296366367],[-10613288.925454434,4441566.3162272982],[-10613286.179840256,4441311.3786812089],[-10613283.425007621,4441055.6230755094],[-10613280.66325924,4440799.054985621],[-10613277.927954799,4440543.9715442928],[-10613275.194853624,4440288.998419201],[-10613272.453543561,4440034.1249463242],[-10613269.714336554,4439779.3509933716],[-10613523.580375053,4439780.7059751209],[-10613777.796318937,4439782.0573342079],[-10614032.360265961,4439783.4009338003],[-10614287.274218494,4439784.7415375169],[-10614542.546085674,4439786.0755103054],[-10614798.167557888,4439787.4054843569],[-10615054.136032151,4439788.7350948993],[-10615310.454812266,4439790.0605813619],[-10615564.368753184,4439796.8698230768],[-10615818.405936342,4439803.6773164077],[-10616072.595895926,4439810.4784242464],[-10616326.927919557,4439817.2774083251],[-10616581.247573417,4439817.695612018],[-10616835.461504644,4439818.1059142007],[-10617089.586732963,4439818.5080648037],[-10617126.317603635,4439818.5663365666],[-10617343.634278055,4439819.7171330238],[-10617594.859461416,4439822.0451551508],[-10617846.524454277,4439824.368680439],[-10618098.630558182,4439826.6928485716],[-10618351.18317936,4439829.013397607],[-10618604.079098227,4439831.33496192],[-10618857.414326008,4439833.6531575946],[-10619111.132197037,4439835.9676064374],[-10619365.255337538,4439838.2785600144],[-10619619.352947889,4439840.5442586048],[-10619872.744940165,4439842.7982726116],[-10620125.438422563,4439845.0363401929],[-10620377.428088976,4439847.262597912],[-10620628.749580692,4439849.4751667408],[-10620879.381673146,4439851.675926243],[-10621129.31285299,4439853.8657535007],[-10621378.544521855,4439856.0452753399],[-10621631.585889075,4439856.0575202638],[-10621884.818077406,4439856.0643819142],[-10621932.735512247,4439856.0662800595],[-10622138.137652028,4439854.1144295353],[-10622391.462429309,4439851.7000322221],[-10622644.875709293,4439849.2756110355],[-10622898.394611863,4439846.8456794601],[-10623151.940345695,4439844.4106106469],[-10623405.524524264,4439841.9717839658],[-10623407.96972418,4440092.587196053],[-10623410.425643468,4440344.1693119528],[-10623410.484559201,4440350.5436141798],[-10623412.879567321,4440596.7094245823],[-10623415.346913701,4440850.2206414109],[-10623415.405624487,4440855.9637674922],[-10623417.816663746,4441103.8837302867],[-10623420.290322706,4441358.1707365932],[-10623420.334706014,4441362.4544035383],[-10623422.771594904,4441613.0862190807],[-10623425.256175091,4441868.5952419462],[-10623425.239446184,4442122.644731896],[-10623425.223218197,4442376.7474601781],[-10623425.214298991,4442630.897036124],[-10623425.205780553,4442885.0934629738],[-10623425.192857362,4443139.3432645863],[-10623425.181135884,4443393.6421815921],[-10623425.176122485,4443647.9885875965],[-10623425.172210688,4443902.3841162045],[-10623412.162538776,4444143.8509209827],[-10623399.148463326,4444385.3897034936],[-10623397.685169505,4444412.3869849574],[-10623383.112789778,4444626.9821819095],[-10623367.975018207,4444849.8913759524],[-10623366.983309356,4444868.641252365],[-10623354.26987952,4445109.3941638237],[-10623341.548342364,4445350.2902666759],[-10623328.813191859,4445591.3783607436],[-10623316.075039295,4445832.5234997915],[-10623312.257713469,4445885.4208448287],[-10623322.903126197,4446084.7068693461],[-10623328.249462953,4446184.794876636],[-10623327.647187876,4446335.3415562697],[-10623327.477402821,4446377.131608543],[-10623329.686205473,4446584.414135322],[-10623332.0298588,4446804.4056636905],[-10623332.023528295,4446828.1281794533],[-10623332.020153807,4446832.0759997191],[-10623332.026292728,4447077.8387455177],[-10623332.028619239,4447134.7002826901],[-10623335.840937328,4447323.1417935481],[-10623340.790791543,4447567.8781433851],[-10623345.729827756,4447811.9404585613],[-10623341.904408976,4447893.7561326092],[-10623338.01525644,4448061.4460435482],[-10623332.43448961,4448302.0847858721],[-10623332.245831154,4448310.1250443486],[-10623326.498425942,4448558.0182417035],[-10623321.308387253,4448781.8927193023],[-10623321.283559334,4448795.4178108247],[-10623321.262506656,4448805.034760762],[-10623069.092866777,4448809.9247531239],[-10622823.311019948,4448814.6844661487],[-10622818.293513149,4448814.7853081338],[-10622569.811541809,4448819.5934953885],[-10622323.3329894,4448824.3569582775],[-10622071.981102515,4448829.8766899789],[-10621820.104909273,4448835.4015541794],[-10621569.338600924,4448840.8987301681],[-10621320.083642041,4448846.3550566761],[-10621320.020115348,4449096.2356656324],[-10621319.957145877,4449340.547207769],[-10621319.966388963,4449344.7042498887],[-10621319.897333851,4449591.7684885766],[-10621319.829869218,4449837.3799760547],[-10621570.020778352,4449833.0452476861],[-10621816.542942509,4449828.769259044],[-10621820.143709121,4449828.7031174786],[-10622068.802646175,4449824.383908025],[-10622316.463028058,4449820.076340653],[-10622317.528055552,4450068.6814978756],[-10622318.581047921,4450314.5216352893],[-10622318.59868836,4450317.1490729908],[-10622319.665315378,4450565.4824441755],[-10622320.731741011,4450813.6831080448],[-10622071.038148822,4450818.1111506494],[-10621820.345601186,4450822.5515901605],[-10621814.776758142,4450822.6531947162],[-10621569.125643685,4450826.9970368762],[-10621315.98236124,4450831.4676527958],[-10621315.899340255,4450841.104535047],[-10621070.114150006,4450842.6673442489],[-10620831.914536884,4450844.1779253995],[-10620826.40586297,4450844.212271099],[-10620583.356238136,4450845.7484341096],[-10620341.437622022,4450847.2695729164],[-10620094.325997353,4450848.8197970828],[-10619847.086124374,4450850.3656261414],[-10619599.497648135,4450851.9096887987],[-10619351.631550763,4450853.4498538682],[-10619352.234216277,4451083.490819402],[-10619352.902965125,4451339.0164684448],[-10619352.954158871,4451355.5812994568],[-10619353.586048977,4451596.8241607714],[-10619354.265346801,4451856.9059053995],[-10619352.388222074,4452108.9932122082],[-10619351.082835324,4452284.2904006066],[-10619350.526590658,4452358.0368821966],[-10619348.706082555,4452604.0793738235],[-10619347.553914847,4452759.8758902336],[-10619347.054190343,4452828.0461150631],[-10619346.773720229,4452847.0510658547],[-10619343.292020574,4453084.4490893362],[-10619340.351247642,4453285.0044024512],[-10619339.822826535,4453320.7284444999],[-10619336.400766592,4453554.4641629849],[-10619332.950488951,4453790.0115620047],[-10619081.977693491,4453788.1822931468],[-10618898.616202604,4453786.841919193],[-10618835.758209856,4453788.083978802],[-10618831.998161554,4453788.1630792394],[-10618583.127052289,4453793.0712659461],[-10618345.3425646,4453797.7563335691],[-10618335.55985132,4453797.949994917],[-10618329.14132853,4453798.0705698375],[-10618088.247663492,4453804.962739408],[-10617849.673881613,4453811.7810471384],[-10617840.734444277,4453812.0405059448],[-10617678.771754149,4453816.6588963103],[-10617595.576067764,4453821.3129806239],[-10617352.082654461,4453834.9279704085],[-10617352.428216621,4454090.6783611793],[-10617352.751202274,4454328.6515389755],[-10617352.779759528,4454343.3435417749],[-10617353.116864659,4454593.5252152085],[-10617353.437044358,4454831.1948722135],[-10617353.441632938,4454841.044192859],[-10617098.84872378,4454842.623212385],[-10616844.879035374,4454844.1901981495],[-10616590.959605217,4454845.7555540754],[-10616337.280553095,4454847.3121298207],[-10616084.107986746,4454848.8586771805],[-10615830.942128235,4454850.3994508674],[-10615578.357541963,4454851.9285662221],[-10615326.058285719,4454853.4496557638],[-10615079.022811716,4454854.3887819005],[-10614829.9465778,4454855.3306152392],[-10614579.030015709,4454856.2696376322],[-10614326.180518379,4454857.2103658514],[-10614071.316697486,4454858.7952866713],[-10613814.404007394,4454860.3866809197],[-10613808.874212787,4454860.4172881078],[-10613554.124924516,4454861.9906643555],[-10613289.225198509,4454863.619756747],[-10613289.647276601,4454851.5808153786],[-10613298.625337906,4454608.4768872662],[-10613308.071024738,4454352.6780136321],[-10613308.323756263,4454346.0264804],[-10613317.553850349,4454096.3400480244],[-10613327.0530899,4453839.3648699271],[-10613325.424994962,4453586.2502284348],[-10613323.805923266,4453334.5583578544],[-10613322.167908756,4453080.5992911365],[-10613320.567392088,4452832.6231646631],[-10613320.53559122,4452825.6083467398],[-10613319.109831044,4452572.655030218],[-10613317.709342247,4452324.3330045398],[-10613317.693283139,4452319.8965238724],[-10613316.270229168,4452067.3182549309]]]},"attributes":{"objectid":2886,"field_kid":"1000149391","approxacre":20535,"field_name":"EDNA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":17469,"maxoilwell":4,"lastoilpro":31,"lastoilwel":1,"lastodate":"5-1995","cumm_gas":1036551,"maxgaswell":16,"lastgaspro":7718,"lastgaswel":15,"lastgdate":"2-2009","avgdepth":858.875,"avgdepthsl":-70,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149391}},{"geometry":{"rings":[[[-10558694.207076909,4531489.2539108396],[-10558697.781936493,4531235.2677228563],[-10558701.376709113,4530979.7615802158],[-10558704.984686973,4530722.7296513356],[-10558708.614880543,4530464.1840610988],[-10558708.716848467,4530456.1238577636],[-10558712.255575567,4530204.0080899419],[-10558715.931200488,4529942.2443430489],[-10558716.059394332,4529933.4890067652],[-10558719.618528698,4529678.9261919782],[-10558723.323567068,4529414.044271878],[-10558468.078772215,4529410.0086479886],[-10558212.702426247,4529405.9635413513],[-10558208.184817513,4529405.894222334],[-10557957.211148322,4529401.907434931],[-10557701.607941912,4529397.8404551875],[-10557695.465259541,4529397.7483661063],[-10557445.859368524,4529393.7729692683],[-10557189.997965585,4529389.6910699392],[-10557185.442012673,4529389.6182105904],[-10556933.983687015,4529385.6071472028],[-10556677.833652502,4529381.5143738957],[-10556678.257219663,4529125.886704389],[-10556678.67160554,4528875.5467124702],[-10556678.694104705,4528870.7305374313],[-10556679.119178729,4528616.0612616744],[-10556679.533776747,4528367.895006503],[-10556679.560073625,4528361.8833927112],[-10556679.9807478,4528108.1879187338],[-10556680.392938672,4527859.2710799277],[-10556680.394917045,4527854.9721499244],[-10556680.817899005,4527602.2333967974],[-10556681.238781122,4527349.9757959815],[-10556936.953048093,4527352.1414325088],[-10557192.532359853,4527354.2998626484],[-10557447.979619687,4527356.4440076295],[-10557703.311146447,4527358.5794294802],[-10557958.512022952,4527360.7099203039],[-10558213.575040875,4527362.8323198603],[-10558468.50550635,4527364.9499147628],[-10558723.284697792,4527367.0597974909],[-10558727.768885693,4527111.0900936797],[-10558732.249569645,4526855.2523050569],[-10558736.706927061,4526599.5852257488],[-10558736.779584747,4526595.3693563705],[-10558736.750299916,4526344.0783129502],[-10558736.727191461,4526087.8118413296],[-10558736.705984909,4525831.5052704243],[-10558736.681572542,4525574.8612182494],[-10558736.65735893,4525317.9832166778],[-10558990.82620373,4525321.8589782398],[-10559246.36933193,4525325.7489081398],[-10559253.737918936,4525325.8667659555],[-10559503.249901216,4525329.6672872519],[-10559761.507857459,4525333.5938947704],[-10559769.073271224,4525333.7181999786],[-10560019.634563169,4525337.5231556585],[-10560277.836055512,4525341.4373783106],[-10560281.876709402,4525341.4880957576],[-10560536.141167704,4525345.3389642602],[-10560794.482021684,4525349.2445953488],[-10560791.681436287,4525605.7459690524],[-10560788.871746181,4525863.1699582161],[-10560786.064649982,4526119.3237326974],[-10560783.265258206,4526374.8903637696],[-10560780.915010119,4526590.1464057611],[-10560780.129981661,4526630.8495164244],[-10560775.200035509,4526886.6061105207],[-10560770.247061029,4527142.2151330104],[-10560765.297188366,4527397.681629682],[-10561022.359816412,4527400.0099644251],[-10561279.785963666,4527402.3345100284],[-10561286.482680637,4527402.386899638],[-10561463.738743275,4527403.9677408719],[-10561537.580435552,4527404.63858076],[-10561795.741029922,4527406.9774166169],[-10561803.586570863,4527407.0528221317],[-10562054.297881275,4527409.318657564],[-10562313.240076957,4527411.6518116966],[-10562319.462147027,4527411.7047028951],[-10562572.550597409,4527413.9833256528],[-10562832.244860413,4527416.3161069266],[-10563087.838188989,4527417.4056363776],[-10563338.499434272,4527418.4683253923],[-10563342.899204323,4527418.4931386439],[-10563597.470555546,4527419.5758331316],[-10563846.139605463,4527420.6280131321],[-10563851.530317349,4527420.6482841428],[-10564105.09050357,4527421.7103653671],[-10564353.26598491,4527422.7428213656],[-10564358.141803497,4527422.7639728347],[-10564610.690023767,4527423.8040503114],[-10564862.731059719,4527424.8378029801],[-10564865.361255076,4527683.160987867],[-10564867.909392307,4527933.4871883234],[-10564867.994349737,4527940.9344670437],[-10564870.59940807,4528198.1612336719],[-10564873.152465228,4528450.186595303],[-10564873.180034081,4528454.824939345],[-10564875.802015219,4528712.3776374394],[-10564878.350854652,4528962.7091611139],[-10564878.41857826,4528968.4047814803],[-10564881.00189106,4529222.8994319625],[-10564883.5684723,4529475.8164672246],[-10564629.154779617,4529478.8567501577],[-10564374.335318653,4529481.8958937023],[-10564368.584288716,4529481.9608363081],[-10564119.093670443,4529484.9303576257],[-10563872.359829769,4529487.861213021],[-10563863.439645292,4529487.8290315634],[-10563855.550549561,4529487.7944556978],[-10563607.229649723,4529486.9213273115],[-10563350.409450768,4529486.0122275408],[-10563343.35321535,4529485.9887840496],[-10563093.011685975,4529485.0916179186],[-10562835.041661495,4529484.1619006926],[-10562840.636072502,4529736.0277571529],[-10562846.269341711,4529989.5992747415],[-10562846.394732539,4529995.856089659],[-10562851.926652469,4530244.9318326917],[-10562857.54770541,4530497.9905817527],[-10562857.599995023,4530501.955383379],[-10562857.682221085,4530506.1796514746],[-10562861.68489234,4530757.0696901893],[-10562865.338699138,4530985.9691395266],[-10562865.785519147,4531013.6415076023],[-10562869.88574517,4531270.091784576],[-10562873.993082982,4531526.9480916355],[-10562616.184549574,4531520.7105157878],[-10562357.72276341,4531514.4503020514],[-10562351.265213352,4531514.2897849204],[-10562098.53754355,4531508.1664383449],[-10561838.719594661,4531501.8647423089],[-10561829.648128765,4531501.6056978637],[-10561575.914462887,4531490.1277873125],[-10561463.393533248,4531485.0362639027],[-10561312.787405565,4531484.7312538745],[-10561305.133476637,4531484.7245004382],[-10561049.694021465,4531484.2264479799],[-10560787.05055633,4531483.7072289269],[-10560530.409924954,4531484.5837535271],[-10560271.837965634,4531485.4586215429],[-10560265.41435606,4531485.4776735334],[-10560011.246176256,4531486.3305678004],[-10559748.694926513,4531487.2062949371],[-10559738.461722633,4531487.2401168961],[-10559717.16245422,4531487.3183776271],[-10559486.587086093,4531487.7648714194],[-10559223.472083466,4531488.2705823332],[-10559215.381751273,4531488.2849442856],[-10558959.346915452,4531488.7642732244],[-10558694.207076909,4531489.2539108396]]]},"attributes":{"objectid":2887,"field_kid":"1000147514","approxacre":4516,"field_name":"FARLINGTON","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":372137.14000000001,"maxoilwell":125,"lastoilpro":433.67000000000002,"lastoilwel":117,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147514}},{"geometry":{"rings":[[[-10539466.901283685,4744498.0240671765],[-10539469.211653259,4744234.653959387],[-10539208.889777673,4744235.7974600121],[-10538949.513788054,4744236.9293402396],[-10538691.085386395,4744238.031525244],[-10538433.623694612,4744239.1245428408],[-10538236.356011555,4744239.9736174401],[-10538177.293202188,4744239.6887414828],[-10537922.015720917,4744238.4550100127],[-10537667.582909411,4744237.2265711827],[-10537414.205309391,4744235.998260553],[-10537412.627718084,4743975.7361770738],[-10537411.985010542,4743869.6966773998],[-10537413.609042093,4743733.8254254991],[-10537413.60726149,4743716.3817801019],[-10537413.717706816,4743457.2608642597],[-10537413.751743974,4743377.4758970486],[-10537413.587375147,4743198.6056484664],[-10537413.33109973,4742939.2717200043],[-10537413.077026892,4742679.8996555666],[-10537412.803932246,4742420.5150164133],[-10537412.530236907,4742161.1369071472],[-10537417.133340823,4741901.4738680869],[-10537421.749560563,4741641.1631029714],[-10537426.383100936,4741380.2334442502],[-10537430.892990835,4741126.2122035902],[-10537431.027654668,4741118.696684774],[-10537436.634011498,4740858.0479329349],[-10537441.217335304,4740644.9909876371],[-10537442.362405863,4740599.4681434939],[-10537448.967909474,4740339.0000381293],[-10537455.542876625,4740079.6494025001],[-10537716.95098765,4740077.1010825532],[-10537870.008005604,4740075.6059586937],[-10537903.743335636,4740075.2770933425],[-10537976.906829553,4740076.0637141857],[-10538015.185875049,4740076.4838656327],[-10538236.097492425,4740075.4784184825],[-10538388.790791832,4740074.7826477541],[-10538494.336158909,4740077.7417050116],[-10538499.470953677,4740077.9049508106],[-10538752.173663087,4740081.4552878663],[-10538903.957314756,4740083.5847420385],[-10539009.842173377,4740085.088730528],[-10539015.183205005,4740085.1776417689],[-10539267.342994129,4740086.2723638313],[-10539418.325427769,4740086.9239063198],[-10539524.57480615,4740087.3797273422],[-10539783.75345337,4740088.3708120808],[-10539935.0113033,4740088.9455679385],[-10540042.882443609,4740089.3387965262],[-10540301.924433991,4740090.2996832682],[-10540449.190100765,4740090.842051575],[-10540449.990636788,4740076.6061026882],[-10540446.46632424,4739880.7443873677],[-10540442.676524457,4739670.1813584547],[-10540442.529866416,4739661.5172381401],[-10540441.334472431,4739595.787650587],[-10540442.984129507,4739458.9107706109],[-10540445.542819958,4739246.7366552213],[-10540445.679190569,4739234.9549841229],[-10540448.09670409,4739035.2320626061],[-10540449.584758971,4738912.3213076834],[-10540450.265646648,4738823.4237559205],[-10540450.332834492,4738814.4433180802],[-10540451.878451066,4738611.3449161686],[-10540453.494159114,4738399.0115595479],[-10540713.547406165,4738399.0231165262],[-10540973.165153263,4738399.0288676228],[-10541231.802274585,4738399.0253296429],[-10541489.63977794,4738399.0140507519],[-10541749.146197261,4738398.9960602112],[-10542008.138125934,4738398.9729090426],[-10542266.339446964,4738398.9609845467],[-10542524.529254777,4738398.9428665703],[-10542783.441189934,4738400.3671891876],[-10543042.305270167,4738401.7858347176],[-10543301.666320972,4738403.1802219581],[-10543561.338529006,4738404.5704800365],[-10543821.14549176,4738405.9538994953],[-10544080.371687796,4738407.3275134806],[-10544339.003301263,4738408.6917090919],[-10544597.058853412,4738410.0485508116],[-10544598.331874581,4738620.6133618997],[-10544599.602092765,4738830.9806162557],[-10544600.880920829,4739041.3594746916],[-10544602.158547679,4739251.6068301369],[-10544603.434573175,4739461.4430341264],[-10544604.237844635,4739593.5423985487],[-10544603.431629602,4739671.9555466343],[-10544601.191118103,4739881.6879495326],[-10544598.949204955,4740091.4469016707],[-10544338.304675734,4740089.6195551166],[-10544179.586461565,4740088.5039469823],[-10544079.542907992,4740087.8091126867],[-10543820.501118815,4740085.9692468718],[-10543657.064087313,4740084.804217373],[-10543654.852749746,4740344.0844355319],[-10543652.635604464,4740604.2705921093],[-10543652.569819758,4740612.2348571122],[-10543650.395131322,4740865.3830200331],[-10543648.144445386,4741127.4195970548],[-10543648.043718316,4741137.3347242652],[-10543645.883146228,4741390.3500638241],[-10543644.164240962,4741591.5052684993],[-10543643.515724203,4741654.1666168571],[-10543643.428715697,4741661.6429098891],[-10543640.786585836,4741918.9084360534],[-10543638.05784685,4742184.568881684],[-10543636.95648272,4742444.5778264003],[-10543635.877149872,4742699.3907684209],[-10543635.843905894,4742704.4306846811],[-10543634.763566265,4742964.1295099389],[-10543633.710766152,4743216.9644277319],[-10543633.694840187,4743223.6301406259],[-10543631.925008612,4743483.6309731724],[-10543630.209448582,4743735.6076016137],[-10543630.165990165,4743743.0072006593],[-10543629.934790153,4743773.0044409633],[-10543627.557697359,4744001.7813689597],[-10543626.123191351,4744139.7894469667],[-10543623.80839508,4744260.103066274],[-10543364.431808986,4744257.5867953394],[-10543106.384448972,4744255.0769790197],[-10542848.620214051,4744252.5511539159],[-10542676.812864844,4744250.8645596234],[-10542591.502521085,4744250.3269206146],[-10542548.825724356,4744250.0785644511],[-10542334.102505861,4744246.5102942316],[-10542076.9919235,4744242.231727872],[-10541820.085575631,4744237.9668484041],[-10541563.389569279,4744233.6977101015],[-10541558.558715414,4744494.8037531478],[-10541557.129984081,4744572.0617042137],[-10541557.31167658,4744755.5098380735],[-10541557.535827497,4745015.643824758],[-10541557.758177128,4745275.123421683],[-10541558.007658502,4745534.1022342118],[-10541558.031956933,4745559.1184557294],[-10541557.322467478,4745792.4916445743],[-10541556.520843459,4746050.300645805],[-10541555.720321352,4746307.5613473924],[-10541293.810714846,4746309.87345785],[-10541031.737420406,4746312.1798871383],[-10540769.067641117,4746314.48166872],[-10540505.972773766,4746316.7815142181],[-10540242.907039847,4746319.082005837],[-10539979.63777224,4746321.3742336538],[-10539716.176884614,4746323.6656873403],[-10539452.532786634,4746325.9502976649],[-10539454.525186479,4746066.4886505064],[-10539456.520490346,4745806.454152531],[-10539457.405441839,4745693.916597168],[-10539458.525205662,4745545.8780955719],[-10539459.333262116,4745438.9567310857],[-10539460.555551063,4745284.7509666085],[-10539462.555161845,4745023.0657069804],[-10539464.404075693,4744781.2439903449],[-10539464.595720287,4744760.8365622982],[-10539466.901283685,4744498.0240671765]]]},"attributes":{"objectid":3110,"field_kid":"1000152688","approxacre":5462,"field_name":"WELBORN","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000152688}},{"geometry":{"rings":[[[-10534018.453593697,4614693.4192011105],[-10534256.89136328,4614694.6610011151],[-10534257.091754317,4615001.3087365553],[-10534257.294864925,4615308.1845273552],[-10534257.483158998,4615614.6385613568],[-10534257.670453142,4615919.4344166415],[-10534014.748047916,4615919.3142807046],[-10533924.507431982,4615919.2692143852],[-10533769.782617247,4615919.1742551383],[-10533633.01454168,4615919.0957544316],[-10533516.866237201,4615918.1294377949],[-10533411.173733948,4615917.2505857274],[-10533241.289267251,4615913.2275678432],[-10533265.930978071,4615607.3488938157],[-10533290.513518834,4615302.1768732369],[-10533290.920686716,4615296.9532167288],[-10533315.12398986,4614996.3139113234],[-10533330.444288684,4614806.0093990797],[-10533321.953695459,4614689.7483669855],[-10533549.636625441,4614690.9568923311],[-10533766.913712133,4614692.1071588891],[-10533777.788589017,4614692.1615937641],[-10534018.453593697,4614693.4192011105]]]},"attributes":{"objectid":3208,"field_kid":"1000149641","approxacre":179,"field_name":"HOMEWELL","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149641}},{"geometry":{"rings":[[[-10576427.024976,4764103.3858482502],[-10576687.496762048,4764103.3120425195],[-10576686.088537961,4764364.3591739861],[-10576684.684220189,4764624.6957356688],[-10576683.280702438,4764885.3200183557],[-10576681.893911179,4765143.2153243991],[-10576419.954691976,4765149.0604546154],[-10576353.811836407,4765150.5349048553],[-10576157.516216502,4765150.06250815],[-10576154.188320246,4765150.0640794272],[-10575894.450830402,4765149.463315038],[-10575630.663921343,4765148.8466608524],[-10575626.078290358,4765148.8448755341],[-10575379.187655451,4765148.2497314103],[-10575366.224983508,4765148.2694663117],[-10575101.097363025,4765148.6468577283],[-10575097.56683992,4765148.642478141],[-10574835.271346757,4765149.0124800075],[-10574568.777369337,4765149.3799171457],[-10574572.948074006,4764888.3537403485],[-10574577.121782616,4764627.228766853],[-10574577.179559719,4764623.3194477148],[-10574581.280373396,4764366.3892122423],[-10574585.442167589,4764105.7133267978],[-10574850.567712415,4764105.1978327781],[-10575114.998865938,4764104.6784617314],[-10575378.756351868,4764104.1404664982],[-10575641.797970396,4764103.5983632589],[-10575904.186642794,4764103.528814516],[-10576165.925273778,4764103.4530605311],[-10576427.024976,4764103.3858482502]]]},"attributes":{"objectid":3233,"field_kid":"1000149624","approxacre":322,"field_name":"POSSUM HOLLOW","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1637,"maxoilwell":1,"lastoilpro":143,"lastoilwel":1,"lastodate":"11-1991","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149624}},{"geometry":{"rings":[[[-10640013.746633843,4554076.5093785916],[-10640268.243200768,4554077.3500193162],[-10640267.344562041,4554333.2763786577],[-10640266.443622524,4554589.5367710711],[-10640265.546784693,4554845.3098342074],[-10640264.651046762,4555100.8717004843],[-10640010.041801935,4555099.5292463526],[-10639755.448274864,4555098.1799482126],[-10639500.715491407,4555096.8283695709],[-10639245.888902627,4555095.4715951486],[-10639245.908998821,4555090.723506663],[-10639246.913731599,4554839.4763825405],[-10639247.937357888,4554583.2654320607],[-10639247.94915018,4554579.4948269986],[-10639248.951673957,4554327.1227646535],[-10639249.972493028,4554070.2275560303],[-10639387.831503587,4554071.4903099723],[-10639504.579091519,4554072.5573801324],[-10639759.185389869,4554074.8812483698],[-10639896.429109158,4554076.1196741033],[-10640013.746633843,4554076.5093785916]]]},"attributes":{"objectid":3244,"field_kid":"1000152662","approxacre":159,"field_name":"QUINN","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":864,"maxoilwell":1,"lastoilpro":78,"lastoilwel":1,"lastodate":"1-1989","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000152662}},{"geometry":{"rings":[[[-10556673.471795671,4708134.7944662273],[-10556930.436877763,4708134.4864762137],[-10556930.504365731,4708394.6442389926],[-10556930.572953627,4708654.5930442242],[-10556930.635933824,4708914.3468995318],[-10556930.699012941,4709173.9142815406],[-10556930.767004203,4709434.538188017],[-10556930.833193636,4709695.2076415271],[-10556930.886840537,4709919.0269943792],[-10556931.092404917,4709955.8574086251],[-10556932.54038376,4710216.5475696065],[-10556933.976646386,4710476.8053817544],[-10556935.418921141,4710737.916190194],[-10556936.86199381,4710998.5517979376],[-10556938.304665476,4711259.1092934906],[-10556681.512303198,4711258.9555512303],[-10556423.532374946,4711258.7949989047],[-10556166.200892618,4711258.6475669062],[-10555908.799930336,4711258.4960175594],[-10555909.81910976,4711516.9462623419],[-10555910.837886853,4711775.1060653571],[-10555911.858364038,4712032.9752758108],[-10555912.877838535,4712290.6061235089],[-10555656.094998574,4712291.0060809869],[-10555399.786303913,4712291.3980549714],[-10555142.827862043,4712291.8052212689],[-10554885.602913611,4712292.2058263319],[-10554884.383400518,4712034.4784947569],[-10554883.195065895,4711783.5785468929],[-10554883.146771325,4711777.3342503766],[-10554881.927160097,4711519.941071704],[-10554880.718877181,4711265.0037024338],[-10554879.365901703,4711005.8936317824],[-10554878.338491207,4710809.2789618606],[-10554878.272711016,4710744.551534242],[-10554878.132819928,4710483.7131038215],[-10554877.991324134,4710222.4245861005],[-10554877.85613947,4709961.7622082913],[-10554877.719653489,4709701.1358584054],[-10554877.584668852,4709440.4549548039],[-10554877.451285861,4709179.7503799237],[-10554877.351446737,4708919.8973847646],[-10554877.252213415,4708660.8681150572],[-10554877.139661338,4708401.2966323346],[-10554877.027208837,4708141.6454623127],[-10555133.859731054,4708140.1646022554],[-10555390.596342925,4708138.6776969507],[-10555647.209012151,4708137.1736830221],[-10555903.641974641,4708135.663367236],[-10556160.074143885,4708135.3830403881],[-10556416.675507702,4708135.0946074836],[-10556673.471795671,4708134.7944662273]]]},"attributes":{"objectid":2956,"field_kid":"1000149157","approxacre":1104,"field_name":"WAY WEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":13368,"maxoilwell":4,"lastoilpro":85.390000000000001,"lastoilwel":2,"lastodate":"12-1999","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149157}},{"geometry":{"rings":[[[-10576248.237275822,4696744.3961210549],[-10576492.953672796,4696744.7815792374],[-10576493.350113809,4697004.8148126118],[-10576493.746054431,4697264.9009560104],[-10576494.138090888,4697525.0587763321],[-10576494.530828452,4697785.2902068505],[-10576250.125056054,4697784.815691364],[-10576005.898087872,4697784.3351343721],[-10575761.844517799,4697783.8610018566],[-10575517.949729053,4697783.3812135188],[-10575517.237757275,4697523.2501565926],[-10575516.524584265,4697263.1698302198],[-10575515.80790747,4697003.1528239306],[-10575515.091931628,4696743.1883385926],[-10575759.295442708,4696743.5984727954],[-10576003.680761497,4696744.00462214],[-10576248.237275822,4696744.3961210549]]]},"attributes":{"objectid":3092,"field_kid":"1000149145","approxacre":151,"field_name":"LONGANECKER NORTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":735,"maxoilwell":1,"lastoilpro":78,"lastoilwel":1,"lastodate":"5-1993","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149145}},{"geometry":{"rings":[[[-10593779.593565673,4719651.2186476197],[-10594037.200870987,4719651.9487381987],[-10594035.60915919,4719844.8701416319],[-10594036.450649822,4719912.6685905773],[-10594039.646011218,4720170.091172033],[-10594039.701676052,4720173.2163315918],[-10594042.915759716,4720433.5246297251],[-10594046.069171481,4720688.8813998345],[-10594046.113924654,4720693.5071671242],[-10594046.394354764,4720716.3131201062],[-10594048.556530511,4720953.2802409865],[-10594050.896317422,4721209.5101880031],[-10594050.905629642,4721212.7962964326],[-10594053.281558797,4721472.070383762],[-10594055.112138307,4721671.7699753903],[-10594055.085104935,4721731.1192480456],[-10594059.542299116,4721991.4757523257],[-10594063.995890621,4722251.6625822335],[-10594068.449181233,4722511.9707509894],[-10594072.90347302,4722772.312919246],[-10594077.332138987,4723032.2094325218],[-10594081.760204047,4723292.1780626252],[-10594086.199483814,4723551.8974808818],[-10594090.650773032,4723812.2730704565],[-10593986.462699765,4723810.2253438132],[-10593833.948096674,4723810.7054851111],[-10593576.624198267,4723811.5120268203],[-10593319.022083584,4723812.3328736555],[-10593061.101807376,4723813.1484414693],[-10592803.137781523,4723813.9495790545],[-10592544.00262491,4723814.7464780835],[-10592285.085516132,4723815.5284285061],[-10592025.32875327,4723816.3052346809],[-10591763.914705364,4723817.3465811107],[-10591503.523719972,4723818.3764486704],[-10591243.106195401,4723820.6766121779],[-10591197.972607996,4723821.0747453934],[-10590983.080523105,4723821.9704819405],[-10590722.714565653,4723823.044286184],[-10590462.403670769,4723824.1097148843],[-10590202.17006381,4723825.1528523751],[-10589942.010040455,4723826.1907064114],[-10589939.137249673,4723565.6898124702],[-10589936.266960843,4723305.3395299921],[-10589933.383956553,4723045.1567250341],[-10589930.503654448,4722785.1239919402],[-10589927.635068581,4722524.7114419555],[-10589924.763479577,4722264.2863887725],[-10589921.894994255,4722003.8672549268],[-10589919.025708299,4721743.435618653],[-10590179.428557042,4721742.1659459518],[-10590439.893376172,4721740.8888011212],[-10590700.438887056,4721739.5918172458],[-10590961.086814288,4721738.2863302184],[-10591222.345635364,4721736.9974540742],[-10591336.927614111,4721736.4292037999],[-10591483.352458464,4721737.3579896865],[-10591552.263444189,4721737.7747042598],[-10591744.026015235,4721735.9704443729],[-10592004.301627295,4721733.5162760615],[-10592005.134001778,4721672.2068744227],[-10592003.024596546,4721473.4742134139],[-10592000.261780478,4721213.0035987524],[-10591997.507874047,4720952.4529893333],[-10591994.75166443,4720691.7393122185],[-10591991.978234455,4720430.6682184953],[-10591989.201900525,4720169.3626090456],[-10591986.44458754,4719907.8038264234],[-10591983.685872292,4719646.0006481735],[-10592239.890584141,4719646.7709374148],[-10592496.428474573,4719647.5358136958],[-10592752.925418343,4719648.277765505],[-10593009.493743131,4719649.0150800133],[-10593266.222950689,4719649.7535518492],[-10593523.085309474,4719650.4863553597],[-10593779.593565673,4719651.2186476197]]]},"attributes":{"objectid":3159,"field_kid":"1000149627","approxacre":1901,"field_name":"SIX CORNERS","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149627}},{"geometry":{"rings":[[[-10595858.434144298,4719653.1632254077],[-10596117.32741078,4719652.9446225883],[-10596120.255421173,4719912.8135440517],[-10596122.014309561,4720068.9888360826],[-10596123.643754274,4720173.2005793815],[-10596123.744968845,4720179.8159134993],[-10596127.753306452,4720434.100227138],[-10596131.873570181,4720695.4960479047],[-10596132.000313707,4720702.5580316298],[-10596135.999639923,4720956.8539127549],[-10596140.117299482,4721218.6282659275],[-10596140.199993085,4721223.3784471517],[-10596144.23165467,4721480.7301286729],[-10596148.346342999,4721743.412603071],[-10596146.773994427,4721980.2692250637],[-10596146.89367363,4722004.0374679407],[-10596148.219555169,4722265.551336579],[-10596149.521514893,4722526.2694729064],[-10596149.747073973,4722571.3324544597],[-10596151.601460287,4722786.7411510916],[-10596153.878024641,4723047.9081536476],[-10596156.155389693,4723309.1323930146],[-10596158.420339262,4723570.5883274842],[-10596160.687991036,4723832.200342034],[-10595899.940824239,4723829.7173452582],[-10595642.239017811,4723827.2569914544],[-10595639.57208747,4723827.2480025571],[-10595379.571669634,4723824.7349774027],[-10595124.274696112,4723822.2619706308],[-10595119.952384902,4723822.2374101607],[-10594861.599639449,4723819.7386695612],[-10594607.119294068,4723817.2691336796],[-10594603.968113601,4723817.2437868211],[-10594346.99753885,4723814.7576587787],[-10594090.650773032,4723812.2730704565],[-10594086.194980692,4723551.6035902919],[-10594081.760204047,4723292.1780626252],[-10594077.332038863,4723032.2111073909],[-10594072.90347302,4722772.312919246],[-10594068.45038251,4722511.9840204306],[-10594063.995890621,4722251.6625822335],[-10594059.540397558,4721991.3867356172],[-10594055.085104935,4721731.1192480456],[-10594055.112138307,4721671.7699753903],[-10594053.265239323,4721470.1981905187],[-10594050.905629642,4721212.7962964326],[-10594050.896317422,4721209.5101880031],[-10594048.518284941,4720949.0643512681],[-10594046.394354764,4720716.3131201062],[-10594046.113924654,4720693.5071671242],[-10594046.069171481,4720688.8813998345],[-10594042.864098921,4720429.3725842489],[-10594039.701676052,4720173.2163315918],[-10594039.646011218,4720170.091172033],[-10594036.433729891,4719911.2834013207],[-10594035.60915919,4719844.8701416319],[-10594037.200870987,4719651.9487381987],[-10594229.105697408,4719654.4273902187],[-10594299.170735553,4719654.3754813299],[-10594552.218057174,4719654.1868229872],[-10594559.771742946,4719654.2005197499],[-10594820.461851632,4719654.0148675013],[-10595069.302692091,4719653.8315364011],[-10595080.694340197,4719653.813507773],[-10595340.330751272,4719653.5861387849],[-10595590.953717403,4719653.3619609857],[-10595599.677733397,4719653.3737128722],[-10595858.434144298,4719653.1632254077]]]},"attributes":{"objectid":3187,"field_kid":"1000149615","approxacre":1280,"field_name":"LAWRENCE NORTH","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149615}},{"geometry":{"rings":[[[-10591974.482890438,4483530.5100751817],[-10591972.888058532,4483274.4199788561],[-10591971.291316761,4483017.9956339868],[-10591971.271501957,4483013.932385671],[-10591969.683153441,4482761.2027027421],[-10591968.067476159,4482504.1782791214],[-10591974.856152495,4482504.1333302353],[-10591973.383503349,4482249.9524953216],[-10591971.93677875,4481999.9603471532],[-10591971.919865496,4481995.8193335487],[-10591970.463939423,4481741.8204302089],[-10591969.009617502,4481487.9285911582],[-10592211.308447883,4481490.3464045888],[-10592454.018048868,4481492.7632184532],[-10592697.668027498,4481495.1932627875],[-10592940.683979575,4481497.6117188623],[-10592940.588416219,4481486.4342119768],[-10593192.465939078,4481485.29306118],[-10593445.171610469,4481484.1444987049],[-10593697.07286017,4481482.9905115506],[-10593948.689083209,4481481.8316116063],[-10593949.828145152,4481739.1986835022],[-10593950.969125532,4481997.2845374234],[-10593952.097989848,4482255.2795552807],[-10593953.228459161,4482513.4185951203],[-10593952.61230593,4482770.6166547062],[-10593951.996051511,4483027.7745547397],[-10593951.363977328,4483284.8673690092],[-10593950.731202077,4483541.9555142801],[-10593698.436660729,4483542.3062445605],[-10593446.654205866,4483542.6484235432],[-10593194.060621658,4483542.9889528845],[-10592941.07638975,4483543.3234337363],[-10592941.073855873,4483537.5559798637],[-10592697.761557274,4483535.7885913113],[-10592455.726221761,4483534.0236155707],[-10592214.594621835,4483532.2658298919],[-10591974.482890438,4483530.5100751817]]]},"attributes":{"objectid":2794,"field_kid":"1000149384","approxacre":627,"field_name":"CARES","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":91008,"maxgaswell":3,"lastgaspro":5,"lastgaswel":3,"lastgdate":"1-2009","avgdepth":556.5,"avgdepthsl":-321,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149384}},{"geometry":{"rings":[[[-10608146.143750543,4507036.5903077377],[-10608400.455781171,4507037.9352016523],[-10608406.155182658,4507296.3118367298],[-10608411.840954904,4507554.0922744954],[-10608417.517707974,4507811.519093615],[-10608423.186541378,4508068.505083398],[-10608428.705298651,4508325.2741702478],[-10608434.233571505,4508582.3787477016],[-10608434.294900624,4508585.3798932284],[-10608439.767560979,4508840.0877325023],[-10608445.300443759,4509097.5498406449],[-10608187.076224804,4509097.1496587722],[-10607943.553342471,4509096.766694298],[-10607929.94444189,4509096.7375029912],[-10607850.605558291,4509096.6256018355],[-10607672.055691332,4509095.3725261129],[-10607418.601453986,4509093.5877918182],[-10607411.697002348,4509038.7534256121],[-10607404.915265072,4508835.9340850264],[-10607396.337991256,4508579.4177861372],[-10607396.21578064,4508575.8971667588],[-10607393.227358986,4508486.3326155245],[-10607391.269387767,4508322.9527288089],[-10607388.19694522,4508066.6108083595],[-10607388.13577679,4508061.7817084277],[-10607385.110857015,4507808.8515965967],[-10607382.019551178,4507550.5757681672],[-10607381.948941432,4507544.2580263643],[-10607378.922126647,4507291.781342553],[-10607375.813677713,4507032.461545391],[-10607633.835213,4507033.8534166794],[-10607890.60583045,4507035.2326564873],[-10608146.143750543,4507036.5903077377]]]},"attributes":{"objectid":2805,"field_kid":"1000150028","approxacre":327,"field_name":"URBANA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":308775.20000000001,"maxoilwell":123,"lastoilpro":192.55000000000001,"lastoilwel":28,"lastodate":"2-2009","cumm_gas":148099,"maxgaswell":6,"lastgaspro":7,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150028}},{"geometry":{"rings":[[[-10592225.429148976,4523098.8691435149],[-10592224.954445165,4522843.4269333966],[-10592224.489754518,4522588.1296940912],[-10592224.023463713,4522332.977920155],[-10592223.488996325,4522077.9685680093],[-10592222.955832133,4521823.1066812929],[-10592222.412958404,4521568.3835319038],[-10592221.869285336,4521313.7973410385],[-10592225.739899222,4521061.0478962352],[-10592229.614314865,4520808.0959977554],[-10592233.47131565,4520555.585905415],[-10592237.326817652,4520303.3351817755],[-10592490.342716986,4520302.9548311206],[-10592745.692594131,4520302.5636415556],[-10592751.119620809,4520302.5509401262],[-10593002.946355492,4520302.1523872474],[-10593260.199215766,4520301.7379750665],[-10593260.245596027,4520295.6740094414],[-10593525.575355502,4520289.6199019123],[-10593782.176702399,4520283.7587238858],[-10593789.391077906,4520283.5866263807],[-10594050.174021112,4520277.6107994178],[-10594308.427162131,4520271.6845943537],[-10594571.973975411,4520265.6428679395],[-10594834.835101899,4520259.6099818191],[-10595096.619392809,4520253.5866897572],[-10595357.475318557,4520247.5779197291],[-10595357.428725192,4520252.528982345],[-10595608.908245239,4520250.8503207481],[-10595860.329298109,4520249.1668591397],[-10596111.699292354,4520247.4837766634],[-10596363.029040286,4520245.7934943177],[-10596614.628297225,4520244.0885625686],[-10596866.800811715,4520242.3718899535],[-10597119.528763428,4520240.6526975315],[-10597372.82957224,4520238.9223958468],[-10597626.782147963,4520238.7544082981],[-10597880.376312381,4520238.5807327023],[-10598133.604556931,4520238.4049059041],[-10598386.457771091,4520238.2227592841],[-10598384.26770127,4520493.9289126461],[-10598382.078332052,4520749.6289392672],[-10598634.943068592,4520749.6574253822],[-10598887.456802305,4520749.6792126969],[-10599139.633648133,4520749.5918521695],[-10599391.456988286,4520749.4990560934],[-10599390.015386999,4521004.9529283894],[-10599388.574084671,4521260.3043973474],[-10599384.425199661,4521517.6170911407],[-10599380.254605256,4521776.2023929739],[-10599376.099512586,4522033.5018856525],[-10599371.952022959,4522290.3564140778],[-10599367.826252749,4522546.7795910751],[-10599363.708686402,4522802.7683524955],[-10599359.592415646,4523058.2934790542],[-10599355.484348658,4523313.3766700551],[-10599607.619347222,4523310.6922172504],[-10599859.703987872,4523308.002711189],[-10600111.720550193,4523305.3022130085],[-10600363.685753437,4523302.5956507353],[-10600363.093724148,4523556.8733532745],[-10600362.501799623,4523811.5331671406],[-10600361.90507422,4524066.5747412182],[-10600361.307853024,4524322.0088448552],[-10600109.26403703,4524323.9481217712],[-10599857.167460358,4524325.8807016304],[-10599605.003706522,4524327.8118917467],[-10599352.788293296,4524329.7382803289],[-10599103.146906009,4524329.3996747658],[-10598853.078428525,4524329.0542416852],[-10598602.573650282,4524328.7026128527],[-10598351.62306037,4524328.34478819],[-10598100.11783394,4524327.9841787098],[-10597847.90940043,4524327.6145911561],[-10597595.334846657,4524327.2353964858],[-10597342.810150068,4524326.8524111137],[-10597342.705884429,4524339.4418176413],[-10597340.547099205,4524592.1997449435],[-10597338.482188612,4524834.0879072836],[-10597338.39810965,4524843.6954952339],[-10597336.244098654,4525093.9201309625],[-10597334.101785496,4525342.8807647191],[-10597080.095719768,4525346.0936345449],[-10596824.827505566,4525349.3148374306],[-10596820.306417832,4525349.3806461524],[-10596568.237274278,4525352.5504391827],[-10596310.357062483,4525355.7862854721],[-10596052.04555569,4525359.0266799591],[-10595799.37512175,4525362.190281122],[-10595796.322218584,4525362.2260229252],[-10595543.223693175,4525365.3821661025],[-10595292.754785039,4525368.4985217405],[-10595033.89374301,4525371.388592137],[-10594776.996153887,4525374.2512548435],[-10594773.389014665,4525374.287877054],[-10594511.558965473,4525377.20459376],[-10594259.254546773,4525380.0095394934],[-10594248.314292885,4525380.1334335906],[-10593991.141587608,4525382.9801749224],[-10593747.619145857,4525385.6700593131],[-10593735.56731631,4525385.7967252424],[-10593481.548630074,4525388.6039370261],[-10593229.083726656,4525391.388793014],[-10592979.832986915,4525392.0976138739],[-10592730.824925585,4525392.7997386651],[-10592482.406440685,4525393.4880927578],[-10592239.303656004,4525394.156520348],[-10592234.468607316,4525394.1708900444],[-10592233.385516131,4525139.5908365324],[-10592232.302623861,4524884.9052691218],[-10592231.228740554,4524630.1077505322],[-10592230.153654573,4524375.2071345812],[-10592229.087977991,4524120.1928140903],[-10592228.02189946,4523865.0586054251],[-10592226.964529563,4523609.8144997349],[-10592225.905956889,4523354.4581040991],[-10592225.429148976,4523098.8691435149]]]},"attributes":{"objectid":2827,"field_kid":"1000150026","approxacre":5352,"field_name":"TRENT","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":503819.60999999999,"maxoilwell":119,"lastoilpro":51.229999999999997,"lastoilwel":12,"lastodate":"1-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150026}},{"geometry":{"rings":[[[-10598365.463037867,4574767.9913328243],[-10598362.875683613,4574510.7497569248],[-10598109.794775477,4574510.3302071998],[-10597857.34929679,4574509.9059564359],[-10597604.406647436,4574509.476628745],[-10597351.344861388,4574509.0403177589],[-10597098.223707281,4574508.5927059539],[-10596844.98161442,4574508.1374759786],[-10596591.629895737,4574507.6786910929],[-10596338.18066518,4574507.2139386572],[-10596335.659161741,4574251.4320246438],[-10596333.137858894,4573995.6133768121],[-10596330.620060559,4573739.7427614601],[-10596328.102562921,4573483.8370688381],[-10596325.586166566,4573227.9313431876],[-10596323.070571505,4572971.9873695252],[-10596320.538457796,4572716.010482844],[-10596318.005843828,4572460.002589711],[-10596571.060832174,4572460.6154479962],[-10596820.195820682,4572461.2149930438],[-10596824.217637381,4572461.2302101599],[-10597077.432309093,4572461.8348158114],[-10597325.332279978,4572462.4207821731],[-10597330.706248829,4572462.440690754],[-10597584.068189731,4572463.0301883221],[-10597833.49391219,4572463.6035797466],[-10597837.514127055,4572463.61790819],[-10598091.055574045,4572464.2030885871],[-10598344.680617049,4572464.7810322847],[-10598347.423862439,4572209.7493868768],[-10598350.17041474,4571954.3811278809],[-10598352.89844493,4571699.1165224304],[-10598355.626475638,4571443.8051375868],[-10598358.357510341,4571188.4418991841],[-10598361.090147382,4570933.0341731589],[-10598363.824587032,4570677.5756161362],[-10598366.559027197,4570422.069912673],[-10598624.008877432,4570422.1243146323],[-10598873.737964349,4570422.1717674807],[-10598880.743406592,4570422.1669151913],[-10599136.801258905,4570422.21256484],[-10599382.786948528,4570422.2486096146],[-10599392.180532334,4570422.244509018],[-10599646.863806825,4570422.2690942148],[-10599893.787273165,4570422.2877458958],[-10599900.833562298,4570422.2835280858],[-10600154.111523608,4570422.2969493987],[-10600406.697590677,4570422.303900212],[-10600406.824524187,4570677.7444402175],[-10600406.949957,4570933.0776634263],[-10600407.063577389,4571188.2912490694],[-10600407.178300263,4571443.3763024965],[-10600407.281410908,4571698.3460165691],[-10600407.384422537,4571953.1997480979],[-10600407.495144155,4572207.9344417881],[-10600407.605766792,4572462.5503428979],[-10600408.85588786,4572718.2381637674],[-10600410.106708923,4572974.0200177878],[-10600411.372446436,4573229.8808033625],[-10600412.638783999,4573485.8176062834],[-10600413.906423843,4573741.6715938887],[-10600415.174764397,4573997.5405287938],[-10600416.440301608,4574253.4280945193],[-10600417.707440399,4574509.3486410724],[-10600419.565349659,4574766.1231049048],[-10600421.421758097,4575022.8006897811],[-10600423.287377872,4575279.3982779719],[-10600425.149795054,4575535.8801791826],[-10600427.001000414,4575792.2507027704],[-10600428.854308918,4576048.5440028207],[-10600430.711623039,4576304.7289585415],[-10600432.569237901,4576560.8740170188],[-10600176.085826147,4576561.5307974201],[-10599920.499744492,4576562.1783024678],[-10599664.421598008,4576562.8277149182],[-10599408.30961274,4576563.4720474361],[-10599152.153276663,4576564.1054579122],[-10598895.961399857,4576564.7327724323],[-10598639.743092781,4576565.3531019334],[-10598383.491547627,4576565.9658114333],[-10598380.9248106,4576309.4179968126],[-10598378.356172552,4576052.7447085297],[-10598375.776722912,4575795.983165171],[-10598373.195171749,4575539.1258806894],[-10598370.622431461,4575282.1874656584],[-10598368.048190502,4575025.135417941],[-10598365.463037867,4574767.9913328243]]]},"attributes":{"objectid":2977,"field_kid":"1000146309","approxacre":2544,"field_name":"JONESTOWN","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146309}},{"geometry":{"rings":[[[-10625484.649254616,4509039.3353142869],[-10625739.520677816,4509039.2733761845],[-10625737.322239446,4509288.1513750572],[-10625735.118500305,4509537.7063546199],[-10625735.082096891,4509542.7900941316],[-10625732.903653778,4509787.9300346868],[-10625730.673795601,4510038.8445471972],[-10625472.879411889,4510037.3959969087],[-10625213.877962217,4510035.934055374],[-10624952.582016118,4510034.4440709064],[-10624689.350780083,4510032.9357648054],[-10624430.737969462,4510031.4562868634],[-10624170.994679509,4510029.9626614442],[-10624165.594469395,4510029.9347071219],[-10623910.025001649,4510028.4470633585],[-10623647.930851242,4510026.9159297263],[-10623647.975359675,4510021.6126267072],[-10623655.56212616,4509779.026142302],[-10623663.024083899,4509540.4501086837],[-10623663.289316112,4509531.8568260176],[-10623671.004799051,4509285.372344262],[-10623678.699164404,4509039.5829954362],[-10623938.1378564,4509039.5617447617],[-10624196.703960892,4509039.5336693963],[-10624202.202683421,4509039.5254098047],[-10624454.215672141,4509039.4997765394],[-10624710.593500253,4509039.4676361214],[-10624716.506992254,4509039.4721260937],[-10624970.179158499,4509039.4356618235],[-10625228.202148274,4509039.392059328],[-10625484.649254616,4509039.3353142869]]]},"attributes":{"objectid":3030,"field_kid":"1000150024","approxacre":316,"field_name":"THAYER NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":164.49000000000001,"maxoilwell":2,"lastoilpro":164.49000000000001,"lastoilwel":2,"lastodate":"5-2008","cumm_gas":31413,"maxgaswell":1,"lastgaspro":172,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150024}},{"geometry":{"rings":[[[-10621415.727310089,4516188.208486937],[-10621673.048183132,4516187.652595357],[-10621671.273302555,4516442.1668177107],[-10621669.499521233,4516696.4250846785],[-10621667.728841547,4516950.4411419826],[-10621665.961663907,4517204.2097945912],[-10621409.443461942,4517205.340538281],[-10621158.436686596,4517206.4409023281],[-10621153.348838566,4517206.4599211505],[-10620897.672387728,4517207.5747623006],[-10620649.208485354,4517208.6526737427],[-10620642.417913664,4517208.6781163169],[-10620388.170977976,4517209.7749138447],[-10620138.298083933,4517210.8459930038],[-10620133.961584808,4517210.8686813042],[-10619880.436665006,4517211.9542474756],[-10619625.662834315,4517213.0389178144],[-10619630.305192864,4517067.0692769764],[-10619629.989476768,4516958.2013416225],[-10619629.634397337,4516835.8497348856],[-10619630.164826028,4516703.0144679276],[-10619630.20318565,4516693.51469988],[-10619630.489409305,4516625.4589780886],[-10619630.08989005,4516447.555890887],[-10619629.513185265,4516191.9006312173],[-10619883.017745826,4516191.3971017748],[-10620137.843899798,4516190.8861359116],[-10620392.069675276,4516190.361527117],[-10620646.331891946,4516189.8313629897],[-10620902.373819765,4516189.2989440793],[-10621158.838425208,4516188.7578170346],[-10621415.727310089,4516188.208486937]]]},"attributes":{"objectid":3031,"field_kid":"1000150024","approxacre":319,"field_name":"THAYER NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":164.49000000000001,"maxoilwell":2,"lastoilpro":164.49000000000001,"lastoilwel":2,"lastodate":"5-2008","cumm_gas":31413,"maxgaswell":1,"lastgaspro":172,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150024}},{"geometry":{"rings":[[[-10615573.073884504,4519505.6807802012],[-10615573.977930799,4519251.3849052386],[-10615320.902857486,4519254.5028664079],[-10615066.4708522,4519257.6291529173],[-10615058.606471816,4519257.7346732402],[-10614812.454709345,4519259.9901579153],[-10614558.218617985,4519262.3135227188],[-10614544.789353281,4519262.4395805439],[-10614304.075709805,4519262.4084753077],[-10614050.349771183,4519262.3695474938],[-10613796.40288301,4519262.3288493957],[-10613542.446684241,4519262.2804465489],[-10613541.187347854,4519005.8100592066],[-10613539.92991602,4518749.5955278948],[-10613538.674688818,4518493.6119532809],[-10613537.422567379,4518237.870432145],[-10613537.397771465,4518231.2094627209],[-10613536.168127857,4517980.6320541082],[-10613535.798643587,4517905.4116202854],[-10613535.948052425,4517722.9831361994],[-10613535.950804051,4517717.9336670116],[-10613536.141939687,4517464.8551306129],[-10613536.335421419,4517206.2337990133],[-10613544.332597492,4516955.2047060765],[-10613545.453605345,4516920.0162725933],[-10613553.46590014,4516708.2975815907],[-10613553.610023111,4516704.3858359037],[-10613563.093284329,4516453.7647882057],[-10613566.753034148,4516357.0453722514],[-10613572.03689198,4516208.5640256712],[-10613572.223449595,4516203.3425532468],[-10613581.121855907,4515953.1153298169],[-10613589.875341095,4515706.9821036998],[-10613590.019164009,4515703.0914394883],[-10613598.906263648,4515453.2765491828],[-10613607.786358526,4515203.6782192774],[-10613606.151684046,4514945.6874551913],[-10613604.526132753,4514688.9853775436],[-10613602.892268574,4514431.9658958148],[-10613601.258506563,4514175.1731470134],[-10613599.634255156,4513918.3907367345],[-10613598.012109701,4513661.9837451382],[-10613596.391470255,4513406.0244772919],[-10613594.772536805,4513150.4892948465],[-10613337.914423475,4513152.3073462257],[-10613082.660824396,4513154.1061024955],[-10612827.251749726,4513155.9049838809],[-10612572.271459984,4513157.6931409035],[-10612317.890438344,4513158.5548865385],[-10612064.373894181,4513159.4076794768],[-10611810.900599021,4513160.260725569],[-10611557.486070348,4513161.1083445465],[-10611556.314016135,4512904.8611055473],[-10611555.147076152,4512649.4262175765],[-10611555.093388423,4512637.5002500769],[-10611553.633546058,4512394.1828519609],[-10611552.104202256,4512139.3542814739],[-10611551.949649936,4512113.2992202789],[-10611551.025573369,4511885.0328719039],[-10611549.996603623,4511631.0084355418],[-10611548.976346212,4511377.233873561],[-10611547.955490755,4511123.7231766712],[-10611290.00245215,4511128.4057355048],[-10611038.610834828,4511132.9640595559],[-10611034.373442499,4511133.0452876529],[-10611024.53531584,4511133.222746552],[-10610780.71885032,4511136.1643123198],[-10610529.06331878,4511139.1923659584],[-10610524.100133965,4510884.6863666819],[-10610519.136247758,4510630.1839003079],[-10610514.142014002,4510374.5270921951],[-10610509.131552819,4510118.0967593268],[-10610504.455464207,4509861.1978439847],[-10610499.742011173,4509602.3229163531],[-10610499.658464676,4509597.552827687],[-10610494.998203654,4509341.656354947],[-10610490.209720671,4509078.7623302927],[-10610234.998522537,4509079.4672976499],[-10610032.909037188,4509080.0216318667],[-10609980.649524661,4509082.3953720555],[-10609897.110130787,4509086.2151630661],[-10609725.452294281,4509087.7664722167],[-10609471.236440834,4509090.06010185],[-10609465.851381911,4509039.2890217947],[-10609461.559124973,4508836.7140095942],[-10609456.17313323,4508582.5478218105],[-10609450.705290729,4508325.4601608785],[-10609445.278429773,4508070.2914467277],[-10609445.197156174,4508066.0583809018],[-10609439.764674664,4507810.2502514981],[-10609434.399329489,4507557.6642036773],[-10609434.341404101,4507554.5633032965],[-10609428.908521486,4507298.9107272532],[-10609423.478140939,4507043.3133371975],[-10609419.932245426,4506785.2109346725],[-10609416.382240124,4506526.9072394911],[-10609416.323690208,4506522.5751362368],[-10609412.839237735,4506268.4078171775],[-10609409.293627378,4506009.7134388592],[-10609409.219133273,4506004.0303887427],[-10609152.643596662,4506003.7477440909],[-10608896.170275703,4506003.4586672233],[-10608639.791661782,4506003.1586167719],[-10608383.516765205,4506002.8522602729],[-10608127.45541071,4506002.5517092245],[-10607871.692994885,4506002.2469990822],[-10607615.621127903,4506001.9279043023],[-10607359.453852536,4506001.6022486789],[-10607355.381665863,4505745.2509856066],[-10607351.318499107,4505489.4399453094],[-10607347.272461208,4505234.1558437757],[-10607343.235042762,4504979.4098682906],[-10607355.398943005,4504726.7533508772],[-10607367.565148387,4504474.0414975174],[-10607379.759476176,4504220.689089952],[-10607391.973721139,4503966.8936821949],[-10607404.212289266,4503712.7019705577],[-10607416.472176578,4503458.0857336521],[-10607428.748177091,4503203.0402099313],[-10607441.04509614,4502947.5589990448],[-10607698.61314992,4502948.208213632],[-10607956.016516343,4502948.8496073065],[-10608213.263304476,4502949.4753613435],[-10608470.354715846,4502950.0931684766],[-10608475.534096664,4502950.1033232193],[-10608727.275232855,4502950.7044157311],[-10608984.041274169,4502951.3098599697],[-10608986.966195421,4502951.3264176371],[-10609240.654341759,4502951.922995002],[-10609497.096014244,4502952.5197335323],[-10609747.384805426,4502953.3674793523],[-10609998.369686618,4502954.2123335451],[-10610003.053705035,4502954.2251302926],[-10610250.042748624,4502955.0423155213],[-10610502.393479755,4502955.8704145225],[-10610507.31436727,4502955.8921681177],[-10610755.423581937,4502956.6960000051],[-10611009.143867332,4502957.5135232536],[-10611012.839563737,4502957.5332434941],[-10611263.547228243,4502958.342657391],[-10611518.64197365,4502959.1590632219],[-10611508.69082257,4503211.6432000436],[-10611498.749381132,4503463.8853451023],[-10611488.812744139,4503715.9064168055],[-10611478.884315396,4503967.7033724086],[-10611468.961491771,4504219.2664841749],[-10611459.046976294,4504470.5946002631],[-10611449.149478838,4504721.6879562382],[-10611439.259288598,4504972.5580134597],[-10611441.909160513,4505231.1244646916],[-10611444.557326417,4505489.5175425783],[-10611447.198480522,4505747.7499748832],[-10611449.839630157,4506005.7879425352],[-10611452.479672777,4506263.5596518749],[-10611455.116205066,4506521.0314004254],[-10611457.744429829,4506778.6607349869],[-10611460.372954162,4507036.2996824374],[-10611717.914514249,4507036.1609820705],[-10611973.834637428,4507036.0188550828],[-10612228.139430447,4507035.8632087912],[-10612480.828392874,4507035.7014865987],[-10612485.673481714,4507035.6987718381],[-10612739.975471409,4507035.5288695134],[-10612997.41391423,4507035.350301519],[-10613253.172554141,4507035.1746141464],[-10613507.215950845,4507034.9924711417],[-10613756.945922934,4507032.5180848883],[-10614009.233692903,4507030.0099206446],[-10614264.147037543,4507027.4669700293],[-10614512.002788588,4507024.9873896996],[-10614521.637201827,4507024.8993251929],[-10614775.166380154,4507022.3674605954],[-10615023.080198525,4507019.8872515233],[-10615029.172599522,4507019.8241221597],[-10615283.675181691,4507017.2604790144],[-10615538.667218998,4507014.6861191737],[-10615789.363403417,4507012.9599998118],[-10616040.47325688,4507011.2253071563],[-10616045.972286018,4507011.1815989129],[-10616292.013197968,4507009.4797705384],[-10616543.921056343,4507007.7304540966],[-10616551.77295099,4507007.6824859688],[-10616796.269914888,4507005.9825312616],[-10617048.871660247,4507004.21909439],[-10617051.719786448,4507004.1897350587],[-10617125.146964425,4507003.6848844634],[-10617301.822824504,4507004.0130945873],[-10617555.085651446,4507004.47548893],[-10617556.119893406,4507261.4417718705],[-10617557.157245774,4507518.9193947054],[-10617558.188578691,4507775.5418666685],[-10617559.219405126,4508031.7794918502],[-10617560.247022307,4508287.6521776514],[-10617561.273731356,4508543.0565580977],[-10617562.310145454,4508798.0739856586],[-10617563.291197998,4509039.2008980624],[-10617561.031765012,4509052.5370970201],[-10617560.495125461,4509307.4260750711],[-10617559.958488479,4509562.5901626991],[-10617559.945736052,4509569.2645379575],[-10617559.421051934,4509817.8985192049],[-10617558.882115504,4510073.4011284085],[-10617558.86137397,4510082.2219004855],[-10617558.342179865,4510329.1102458378],[-10617557.803446485,4510584.9153346466],[-10617557.798200706,4510591.3915946661],[-10617557.261415308,4510841.3593320036],[-10617556.714669595,4511096.8111830438],[-10617811.400630469,4511093.1454632264],[-10618066.238163145,4511089.4716698471],[-10618321.247790882,4511085.7943466082],[-10618576.434719535,4511082.1089501204],[-10618831.091548946,4511078.4192582844],[-10619085.620333912,4511074.7266641054],[-10619340.030084586,4511071.0271290718],[-10619594.311090028,4511067.3230510149],[-10619847.438987345,4511063.1435406962],[-10620088.008280784,4511059.1644271854],[-10620100.181749552,4511058.972357844],[-10620352.566907592,4511054.7859021565],[-10620588.335572103,4511050.871606756],[-10620604.585651705,4511050.6073955316],[-10620855.923325939,4511046.4368342552],[-10621095.21257326,4511042.4611222558],[-10621107.089606704,4511042.2576912837],[-10621358.069777438,4511038.081451226],[-10621608.878855079,4511033.9004156869],[-10621611.850854903,4511289.4164836425],[-10621614.830166994,4511545.4568871045],[-10621614.893785844,4511551.0617309688],[-10621617.819194008,4511802.0153538566],[-10621620.815834016,4512059.1458174158],[-10621620.902593987,4512066.540843837],[-10621624.602671359,4512316.7681781137],[-10621628.420747623,4512574.878803079],[-10621628.506991202,4512580.3859951729],[-10621632.241931109,4512833.4926231103],[-10621636.064820193,4513092.6057624044],[-10621887.797039542,4513090.1931263823],[-10622140.635409772,4513087.7629574826],[-10622149.423445929,4513087.6794901574],[-10622394.556003848,4513085.3170227138],[-10622649.618389113,4513082.8520407369],[-10622661.891065214,4513082.7390741529],[-10622905.831175428,4513080.3855577689],[-10623163.114972891,4513077.8980071479],[-10623172.280035326,4513077.8059604466],[-10623421.505221512,4513075.38219414],[-10623680.926335948,4513072.8528869292],[-10623681.979977449,4513332.5178305954],[-10623683.0420394,4513593.588551701],[-10623684.095885215,4513853.8149240557],[-10623685.149429809,4514113.9516935963],[-10623686.199769974,4514374.0092059374],[-10623687.250609733,4514633.9652354047],[-10623688.306754552,4514893.8245721897],[-10623689.362698352,4515153.6062737918],[-10623942.6402498,4515151.4725385811],[-10624188.390093705,4515149.3964245953],[-10624194.884033071,4515149.3390459102],[-10624446.091745563,4515147.2049119445],[-10624687.537625495,4515145.1468092026],[-10624696.267692195,4515145.0793534042],[-10624945.338690223,4515142.9571930356],[-10625186.781667314,4515140.8947990919],[-10625193.373617498,4515140.8394416003],[-10625440.331527701,4515138.7210484315],[-10625686.224734752,4515136.6032762062],[-10625691.919672761,4515392.243029437],[-10625697.551617768,4515645.0438437937],[-10625697.614712283,4515648.1652864246],[-10625703.319263959,4515904.3725934122],[-10625709.030925103,4516160.8674967559],[-10625714.748294339,4516417.6800701926],[-10625720.470670715,4516674.7883655122],[-10625726.200256707,4516932.1896265429],[-10625731.936852103,4517189.8882948104],[-10625730.235809635,4517442.9287067428],[-10625728.56577117,4517691.7725534746],[-10625728.53786548,4517695.250480907],[-10625726.857836496,4517946.8707409175],[-10625725.217906466,4518192.2310526064],[-10625725.187713251,4518197.7360144602],[-10625723.513680236,4518447.861655239],[-10625721.868746664,4518693.4683804773],[-10625721.849553484,4518697.3049499495],[-10625720.170204436,4518946.0409682458],[-10625718.494254891,4519194.1738611786],[-10625465.115732005,4519197.7728813579],[-10625212.983316636,4519201.3486746401],[-10624959.682382073,4519204.9303954532],[-10624706.025646104,4519208.5129990038],[-10624707.043938002,4519462.0930599403],[-10624708.06683998,4519716.33103274],[-10624709.094652329,4519971.2217866145],[-10624710.128075821,4520226.761453568],[-10624711.165308548,4520482.9677660754],[-10624712.207151437,4520739.8427944193],[-10624713.255206104,4520997.3639755808],[-10624714.306669444,4521255.5360315666],[-10624458.997966101,4521256.4236251544],[-10624203.331058446,4521257.3046468208],[-10623947.32026263,4521258.1773280725],[-10623690.949660687,4521259.0438163765],[-10623436.638984436,4521259.9367250893],[-10623183.776242746,4521260.8196661528],[-10622930.499633964,4521261.7047515614],[-10622776.799731383,4521262.2383402092],[-10622677.453189842,4521263.1727240877],[-10622469.529487459,4521265.1276979269],[-10622424.679067204,4521266.3403388951],[-10622183.002800614,4521272.8728415743],[-10622171.349447787,4521273.1451107515],[-10621919.073608708,4521278.7415518099],[-10621666.770839829,4521284.332817046],[-10621408.517423086,4521286.2298944928],[-10621149.785165993,4521288.1246946454],[-10620893.431794431,4521290.0043558246],[-10620843.264966162,4521290.3716816949],[-10620638.507534888,4521291.7124734176],[-10620633.712922676,4521291.7399731474],[-10620379.039445935,4521293.3911185386],[-10620119.453624265,4521295.0679946132],[-10619863.068715999,4521296.725443244],[-10619608.777471205,4521298.3630761448],[-10619358.942421809,4521296.0314519526],[-10619106.707162386,4521293.6707518157],[-10618854.325237062,4521291.3020917894],[-10618601.034185063,4521288.920285942],[-10618486.420892682,4521287.8381910957],[-10618348.267526323,4521286.7102935864],[-10618093.722360808,4521284.6278797947],[-10617839.405853065,4521282.5333403023],[-10617584.566354619,4521280.4298270438],[-10617332.035481546,4521280.416843133],[-10617125.363576982,4521280.4010858573],[-10617079.664185969,4521280.1212601485],[-10616827.257237794,4521278.5213187328],[-10616586.099088414,4521276.9862790359],[-10616574.825063266,4521277.1643097978],[-10616322.476832766,4521280.9778659288],[-10616070.14452062,4521284.7859920273],[-10615817.688469138,4521288.5840126984],[-10615564.394572349,4521292.3899871605],[-10615565.034526642,4521090.1491476633],[-10615565.942460408,4521039.6733418517],[-10615567.999568747,4520925.1981344419],[-10615568.498873457,4520785.5453291591],[-10615568.51363091,4520779.4609273337],[-10615569.412419103,4520530.1043070517],[-10615570.336363897,4520273.3641542867],[-10615570.349125683,4520267.9559775898],[-10615571.250198001,4520016.6939669047],[-10615572.166842999,4519760.8113170294],[-10615572.177821726,4519757.3518902753],[-10615573.073884504,4519505.6807802012]]]},"attributes":{"objectid":3099,"field_kid":"1000150028","approxacre":23802,"field_name":"URBANA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":308775.20000000001,"maxoilwell":123,"lastoilpro":192.55000000000001,"lastoilwel":28,"lastodate":"2-2009","cumm_gas":148099,"maxgaswell":6,"lastgaspro":7,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150028}},{"geometry":{"rings":[[[-10623721.955560753,4674253.6813207204],[-10623718.94097737,4673997.179051985],[-10623462.407149196,4673995.3161872393],[-10623213.089194266,4673993.4990387158],[-10623206.497636717,4673993.4547282746],[-10622951.224653983,4673991.5848025363],[-10622705.429337762,4673989.7767302757],[-10622696.50550619,4673989.7002564175],[-10622694.3726089,4673730.9550243616],[-10622692.255123399,4673473.9711242532],[-10622690.125024363,4673216.6701054014],[-10622687.9988284,4672959.7611990971],[-10622944.004590416,4672959.5848485474],[-10623200.678718872,4672959.4018263333],[-10623457.946528075,4672959.2326451959],[-10623715.829943223,4672959.0547415968],[-10623715.079136429,4672708.0731241284],[-10623714.306229217,4672449.7617416503],[-10623714.291330535,4672444.3528316291],[-10623713.537227077,4672191.2655040268],[-10623712.764721535,4671932.5813487209],[-10623967.08407254,4671935.0651927507],[-10624221.729196995,4671937.5465992624],[-10624226.069774682,4671937.6013018023],[-10624476.702497676,4671940.024286327],[-10624732.002072433,4671942.4862042926],[-10624732.167450942,4672200.7678324571],[-10624732.33192895,4672458.9021600941],[-10624732.497809215,4672716.8550754804],[-10624732.663690172,4672974.6164370803],[-10624732.438623408,4673232.2214897247],[-10624732.211654996,4673489.685347137],[-10624731.978179894,4673746.9406880885],[-10624731.744405134,4674004.0135243014],[-10624733.709652629,4674260.8154831678],[-10624735.67690162,4674517.8176436061],[-10624737.650356885,4674775.0266884034],[-10624739.626114063,4675032.4149363255],[-10624486.687440703,4675030.4073481718],[-10624234.27687267,4675028.3984739808],[-10623982.38600038,4675026.37087496],[-10623731.020630429,4675024.3417334696],[-10623730.94376266,4675018.3632868044],[-10623727.991032334,4674767.2519402197],[-10623724.97234589,4674510.3636451773],[-10623724.927707495,4674506.6083271094],[-10623721.955560753,4674253.6813207204]]]},"attributes":{"objectid":2557,"field_kid":"1000148268","approxacre":624,"field_name":"POMONA NORTH","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":129522,"maxgaswell":4,"lastgaspro":16,"lastgaswel":2,"lastgdate":"3-1983","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000148268}},{"geometry":{"rings":[[[-10682078.516443929,4603080.89708101],[-10682070.183082657,4602821.2567289639],[-10682062.002379008,4602566.3240865394],[-10682061.855526146,4602561.8107112385],[-10682061.382533697,4602547.3080305327],[-10682060.953419978,4602302.6200631279],[-10682060.505520372,4602046.7046677629],[-10682060.505430296,4602043.5375183905],[-10682060.045326483,4601784.5512325438],[-10682059.584020939,4601525.6622166522],[-10682059.814092603,4601269.9126065662],[-10682060.046267357,4601013.961443007],[-10682060.276640723,4600757.8193069268],[-10682060.508216111,4600501.484175629],[-10682060.737990135,4600244.9531356469],[-10682060.970267663,4599988.231674986],[-10682061.201144286,4599731.3073334778],[-10682061.43202161,4599474.1812717151],[-10682063.51040078,4599217.9581736485],[-10682065.580067113,4598962.7558494741],[-10682067.648133853,4598706.9506865283],[-10682069.715500288,4598451.0950950235],[-10682071.784268823,4598195.1837332426],[-10682073.855240354,4597939.2206777744],[-10682075.917902935,4597683.196769462],[-10682077.982067756,4597427.1093401732],[-10682079.138100144,4597170.2931014625],[-10682079.447269425,4597101.9376573218],[-10682081.160018623,4596913.8186806785],[-10682083.506007135,4596657.2486953968],[-10682085.850193856,4596400.7124395575],[-10682088.194080601,4596144.1773358779],[-10682090.537166387,4595887.7708802633],[-10682092.878050007,4595631.3710413743],[-10682095.219534537,4595375.0162436608],[-10682098.077906998,4595119.252558928],[-10682100.944791827,4594862.7931542164],[-10682103.816381184,4594606.7331137937],[-10682106.688171145,4594350.6973555079],[-10682109.555156134,4594094.6393151563],[-10682112.419236844,4593839.0266416455],[-10682115.290827833,4593583.0130793694],[-10682118.163921358,4593326.8820820991],[-10682119.770669471,4593071.0682099769],[-10682121.382626448,4592814.4184518112],[-10682122.999188205,4592557.9972843528],[-10682124.615350138,4592301.4604942296],[-10682126.227407988,4592044.8164848201],[-10682127.839366378,4591788.0468212646],[-10682129.4570319,4591531.1657577967],[-10682131.075298777,4591274.1591851786],[-10682130.71750962,4591017.3134189602],[-10682130.359420124,4590760.4574989295],[-10682130.004133817,4590503.5943507338],[-10682129.646745108,4590246.7209227365],[-10682129.29125797,4589990.0264430493],[-10682128.935469307,4589733.6917281458],[-10682128.569971945,4589476.5981008867],[-10682128.203875065,4589219.1264604926],[-10682126.861557906,4588963.3065156378],[-10682125.516238434,4588707.0793950167],[-10682124.154000703,4588450.4611498341],[-10682122.78956151,4588193.455496205],[-10682121.437237194,4587936.068184223],[-10682120.081910489,4587678.2968267528],[-10682118.729588287,4587420.1356040267],[-10682117.374664173,4587161.5823838869],[-10682116.411684033,4586904.2014121087],[-10682115.448902925,4586647.1549594142],[-10682114.487221865,4586390.4530436127],[-10682113.52734164,4586134.0951304743],[-10682112.576665869,4585879.6017856738],[-10682111.622488104,4585624.442767079],[-10682110.655097226,4585368.6191408504],[-10682109.685305588,4585112.1337524336],[-10681854.852276674,4585108.6728927325],[-10681600.275540268,4585105.2084725238],[-10681345.353308409,4585101.7310925229],[-10681090.288913531,4585098.2443094952],[-10680835.083657125,4585094.7449457245],[-10680579.745147889,4585091.2384668179],[-10680324.263574567,4585087.7342789434],[-10680079.399639143,4585084.3677590648],[-10680068.627524529,4585084.0728608025],[-10679812.135696936,4585079.8675559992],[-10679555.808757242,4585075.65818391],[-10679299.621676849,4585071.4363556495],[-10679043.588972336,4585067.2113500033],[-10678787.69993145,4585062.9843110666],[-10678531.967669182,4585058.7537133954],[-10678276.373764478,4585054.5212095985],[-10678020.923723629,4585050.2851472227],[-10677769.853075016,4585053.2920456864],[-10677522.642239753,4585056.2460243655],[-10677518.575189902,4585056.3021248337],[-10677267.08195905,4585059.3003859762],[-10677020.791977473,4585062.2305862978],[-10677015.370779471,4585062.2912779087],[-10676763.468281589,4585065.2861129921],[-10676517.806218769,4585068.2008002689],[-10676511.347834975,4585068.2743415199],[-10676259.003532879,4585071.2630816251],[-10676006.447989708,4585074.248647023],[-10675749.384795446,4585075.8058181964],[-10675490.997988179,4585077.3626230406],[-10675234.695864528,4585078.8920762241],[-10674979.335718041,4585080.4103333829],[-10674721.886883847,4585081.9362406274],[-10674464.165738558,4585083.4589733174],[-10674206.16897841,4585084.968489917],[-10673947.898705786,4585086.4729253473],[-10673688.012787385,4585086.5118167866],[-10673434.798095971,4585086.5419898918],[-10673428.041170971,4585086.6067640781],[-10673321.990025872,4585087.5110620959],[-10673168.811403072,4585086.0951408511],[-10672910.013930319,4585083.6977302367],[-10672785.863193642,4585082.5429457938],[-10672651.692000479,4585082.1843547784],[-10672393.820885502,4585081.4923497653],[-10672136.394679068,4585080.8021193743],[-10671879.440912656,4585080.1078163041],[-10671622.871986892,4585074.5034370665],[-10671367.9054923,4585068.9281511102],[-10671111.978398668,4585063.3236444835],[-10670855.953792715,4585057.7111346163],[-10670599.853299173,4585052.0897315191],[-10670343.684526742,4585046.4600706594],[-10670087.37949769,4585040.8198648784],[-10669830.878543805,4585035.1678437861],[-10669575.179708902,4585035.9008261831],[-10669319.270733848,4585036.6280910913],[-10669312.753883287,4585036.6551112216],[-10669063.138403544,4585037.3512910474],[-10668806.786922794,4585038.0591133991],[-10668798.117611371,4585038.0879372442],[-10668549.936071225,4585038.7708817031],[-10668293.066198004,4585039.4703207482],[-10668286.969027253,4585039.4883115087],[-10668036.118335724,4585040.1660745284],[-10667779.247261321,4585040.8535654331],[-10667524.062215084,4585041.9917620858],[-10667266.956272904,4585043.1302345796],[-10667010.946283849,4585044.2558568884],[-10666755.026097624,4585045.3725806596],[-10666499.363906518,4585046.4863780858],[-10666243.393062687,4585047.5956031196],[-10665987.925894849,4585048.693509927],[-10665732.217851773,4585049.7862080364],[-10665484.700060876,4585043.6367112333],[-10665237.7098723,4585037.492805358],[-10664990.707168519,4585031.3332694918],[-10664743.861142978,4585025.1725920253],[-10664497.73433888,4585019.0352983987],[-10664252.023209153,4585012.9039782593],[-10664006.663780635,4585006.7647775998],[-10663761.682383457,4585000.6300255423],[-10663506.684241971,4584998.4340639645],[-10663253.194424627,4584996.2443143101],[-10662998.884068806,4584994.0390674444],[-10662744.527459767,4584991.8277205881],[-10662490.17255233,4584989.608747921],[-10662235.781403113,4584987.38316675],[-10661981.386849688,4584985.1608910551],[-10661726.975777028,4584982.9309897628],[-10661472.580626613,4584982.2772166114],[-10661217.506199477,4584981.6167145306],[-10661212.385244654,4584981.5969434362],[-10660961.754197553,4584980.951008766],[-10660705.327724403,4584980.2821330158],[-10660698.53305601,4584980.2555169808],[-10660448.235790271,4584979.5948343342],[-10660190.47799477,4584978.9080516649],[-10660185.357039943,4584978.8880263688],[-10659932.073259497,4584978.2128873123],[-10659672.958212011,4584977.5159515627],[-10659415.196214074,4584977.6232065298],[-10659156.51046,4584977.7250062833],[-10658897.987992592,4584977.8180338172],[-10658870.977111187,4584977.8265996696],[-10658639.25909587,4584973.1844970789],[-10658380.536186321,4584967.9977071164],[-10658121.514239505,4584962.7980846995],[-10657862.603418667,4584957.593761377],[-10657603.651652059,4584952.3816878265],[-10657347.93935876,4584951.5734533984],[-10657104.973560989,4584950.797400956],[-10657093.617035303,4584950.7625385923],[-10656840.670065187,4584949.9532651501],[-10656604.243853139,4584949.1921585612],[-10656589.119772516,4584949.1495732004],[-10656338.954844458,4584948.3358287215],[-10656101.241078388,4584947.5569378529],[-10656090.183390221,4584947.5274115624],[-10656086.675928999,4584947.5101534668],[-10655842.786586819,4584946.1415383508],[-10655596.736504458,4584944.7542563276],[-10655342.825947262,4584944.1690802574],[-10655088.301496793,4584943.5764099387],[-10655085.271975368,4584943.5712231109],[-10654833.149537673,4584942.9754828578],[-10654577.375275787,4584942.3646465819],[-10654572.991825303,4584942.3609959818],[-10654321.008745087,4584941.7583909957],[-10654064.018309794,4584941.1368877767],[-10654060.67052892,4584941.1230602777],[-10653806.388552483,4584940.496705154],[-10653548.071018487,4584939.8522065589],[-10653520.268119577,4584940.0301264906],[-10653470.040190041,4584938.3151050322],[-10653287.144337742,4584939.1492602304],[-10653029.22535843,4584940.3193297368],[-10653025.976889776,4584940.3274908485],[-10652764.602307759,4584941.5034352913],[-10652507.376911478,4584942.6546875425],[-10652503.033706501,4584942.6727718292],[-10652241.235746108,4584943.8452879414],[-10651982.478920082,4584944.9990948355],[-10651979.231352443,4584945.0071288468],[-10651717.020825854,4584946.1628703652],[-10651454.611374477,4584947.3103516232],[-10651196.037353015,4584947.7277021976],[-10650937.466234777,4584948.1385703078],[-10650933.978095429,4584948.1393611887],[-10650678.891812732,4584948.5299911443],[-10650420.320494156,4584948.9193782425],[-10650415.637104947,4584948.9266612297],[-10650161.720743421,4584949.3083842425],[-10649903.114485297,4584949.6911620665],[-10649899.587101627,4584949.6916990532],[-10649644.482097611,4584950.0650426364],[-10649385.809664657,4584950.4360000798],[-10649130.402421106,4584951.8835231205],[-10648880.996755281,4584953.291848884],[-10648875.217027962,4584953.3255789094],[-10648620.254886789,4584954.7560663065],[-10648373.195870863,4584956.1347574554],[-10648365.502482336,4584956.1749854153],[-10648110.982740507,4584957.5930130025],[-10647862.463174842,4584958.970953553],[-10647856.683847953,4584959.0044293702],[-10647602.59739517,4584960.4023708208],[-10647348.721580137,4584961.7925571734],[-10647091.734240806,4584955.7560591074],[-10646834.388997819,4584949.7036795262],[-10646823.735365743,4584949.4573063916],[-10646576.687252769,4584943.6356726633],[-10646318.64472341,4584937.5489878682],[-10646304.546000542,4584937.222184672],[-10646060.274724783,4584931.4581151772],[-10645801.546121724,4584925.3475478981],[-10645790.853045192,4584925.0987607157],[-10645542.459414812,4584919.2226245329],[-10645282.995582549,4584913.0778796831],[-10645184.126723928,4584912.0737808868],[-10645026.941002792,4584908.6449735565],[-10644955.545270529,4584907.0871065045],[-10644777.786714716,4584902.5283696596],[-10644771.275060626,4584902.3606427228],[-10644515.969826171,4584895.8022731729],[-10644269.542919222,4584889.4653814109],[-10644260.97954802,4584889.2372961417],[-10644006.35948859,4584882.6813451611],[-10643758.511678103,4584876.2949025771],[-10643752.041270664,4584876.1273028823],[-10643518.07033276,4584870.0902921306],[-10643498.070245618,4584869.8169234013],[-10643244.499675281,4584866.3547215713],[-10642989.99695527,4584867.321006082],[-10642748.35736201,4584868.2339291973],[-10642735.54158867,4584868.3406745028],[-10642549.751468908,4584870.0113285994],[-10642480.831935151,4584870.0378167788],[-10642297.808639169,4584870.1046325928],[-10642225.968206761,4584870.2227874473],[-10641970.529028555,4584870.6052845577],[-10641715.747893468,4584870.9798957836],[-10641698.868931342,4584871.005072373],[-10641460.817688113,4584865.691709944],[-10641205.770250749,4584859.9917070428],[-10640963.945046501,4584855.1082512559],[-10640720.608335678,4584850.1893479796],[-10640711.746327432,4584850.0082950303],[-10640475.809173688,4584845.2348697698],[-10640229.510919163,4584840.2478675013],[-10640218.916454418,4584840.035688078],[-10639982.873482035,4584835.2430759948],[-10639735.170241702,4584830.2061383082],[-10639727.282433722,4584830.0540577648],[-10639486.442244543,4584825.1543404311],[-10639276.816607395,4584820.8853204306],[-10639236.634327913,4584824.5405440489],[-10638980.870985832,4584822.6638830164],[-10638726.824683035,4584820.7943263836],[-10638472.022026237,4584818.9156248095],[-10638239.686041929,4584817.1977830445],[-10638217.278035913,4584816.8729581563],[-10637962.042391051,4584813.1794609176],[-10637705.820733009,4584809.4657635987],[-10637451.725176377,4584805.7687012842],[-10637198.707437305,4584802.0815459155],[-10636942.564167347,4584801.3385379221],[-10636700.863908367,4584800.6317646969],[-10636687.553576635,4584800.5957750427],[-10636433.618100151,4584799.8462670017],[-10636279.793982277,4584799.3903205553],[-10636196.323918013,4584797.8783280961],[-10636180.748228114,4584797.5923424596],[-10636140.69639688,4584796.8564787367],[-10635928.452200081,4584801.5719960155],[-10635693.348586714,4584806.7898906227],[-10635677.794721004,4584807.1256998712],[-10635431.147870811,4584812.5912903473],[-10635181.612357812,4584818.1166460151],[-10634925.196776921,4584820.745344053],[-10634672.368346922,4584823.3288913229],[-10634662.60021534,4584823.4353572093],[-10634416.211657926,4584825.9521227647],[-10634159.03541727,4584828.5719311461],[-10634150.642638924,4584828.6608454483],[-10634142.132528076,4584828.7445494151],[-10633902.729060311,4584829.7259606104],[-10633645.255585287,4584830.7752652634],[-10633637.741198985,4584830.8081192495],[-10633386.533900507,4584831.8314437382],[-10633126.594340239,4584832.8834376764],[-10632868.968894305,4584833.1224505408],[-10632610.890636975,4584833.3546034209],[-10632353.077378899,4584833.5812886339],[-10632095.30666887,4584833.8013640456],[-10631837.889357924,4584834.0237244656],[-10631793.414230503,4584834.0603100508],[-10631581.14200379,4584834.086690031],[-10631345.176619548,4584834.1104658693],[-10631323.193593558,4584833.9555763286],[-10631195.251004776,4584833.0593813779],[-10631064.651616646,4584831.5120504191],[-10631040.690864963,4584826.4225903992],[-10630996.788445173,4584821.8852604991],[-10630808.241749648,4584823.4387370236],[-10630588.719584012,4584825.2415920235],[-10630552.029088642,4584825.3065645099],[-10630297.080473203,4584825.792377892],[-10630043.175449336,4584826.2725944733],[-10629788.593452429,4584826.7360360483],[-10629534.362356143,4584827.1931210048],[-10629280.385550145,4584827.6532554934],[-10629243.156539824,4584827.7203909997],[-10629026.758834966,4584832.2481068019],[-10628767.048183106,4584831.8954298198],[-10628512.891172774,4584831.5440013036],[-10628508.108611785,4584831.5363944592],[-10628249.888662226,4584831.1767206304],[-10627998.665401924,4584830.8205772946],[-10627992.408657646,4584830.8095446015],[-10627735.598017454,4584830.4349937662],[-10627484.159811864,4584830.0637258077],[-10627479.517410908,4584830.0610754741],[-10627224.127493143,4584829.6671989057],[-10626969.357683513,4584829.2710319189],[-10626713.76573039,4584830.5816315757],[-10626457.119072758,4584831.8922357718],[-10626447.034056963,4584831.9409579197],[-10626199.404095061,4584833.2037343001],[-10625940.635714335,4584834.517271054],[-10625927.141505668,4584834.5797344055],[-10625680.803018155,4584835.8184832148],[-10625419.905806245,4584837.1241486259],[-10625409.801268136,4584837.1703287913],[-10625157.955892105,4584838.4279120052],[-10624894.950472536,4584839.732950977],[-10624639.715323702,4584841.5213388531],[-10624388.678368477,4584843.2755188448],[-10624384.671092601,4584843.3108703308],[-10624129.809069363,4584845.0836236347],[-10623880.472154941,4584846.8116139146],[-10623875.150378086,4584846.8456997164],[-10623620.807847556,4584848.6109525608],[-10623370.351354221,4584850.3431426836],[-10623366.564630214,4584850.3652743762],[-10623112.609741893,4584852.1103167608],[-10622858.396358166,4584853.8519287696],[-10622602.622195963,4584854.5903063053],[-10622348.019471304,4584855.3219426041],[-10622092.458752692,4584856.0417621257],[-10621836.66476764,4584856.7556087403],[-10621580.633010998,4584857.466787219],[-10621324.334449615,4584858.173136875],[-10621067.803122362,4584858.8750388967],[-10620811.006592203,4584859.5719849812],[-10620554.554251404,4584861.0539320288],[-10620298.306644211,4584862.5273625022],[-10620042.257062934,4584863.9978690566],[-10619786.403805656,4584865.4608758977],[-10619530.77250167,4584866.9115529312],[-10619275.358245349,4584868.3553656945],[-10619020.139612202,4584869.7973984806],[-10618765.12781507,4584871.2306604441],[-10618509.457862126,4584873.462656199],[-10618255.386434264,4584875.6755802575],[-10618000.048259625,4584877.8882558811],[-10617744.408240031,4584880.0952136079],[-10617488.455362864,4584882.3053508783],[-10617232.173910206,4584884.5105329836],[-10617125.245005941,4584885.4357890626],[-10616975.583002672,4584886.9331947677],[-10616718.705266459,4584889.4988523889],[-10616473.228399623,4584883.0272499034],[-10616227.921427693,4584876.5545063894],[-10616223.620717514,4584876.4366970453],[-10615982.778644206,4584870.0696908161],[-10615737.838192627,4584863.5881827977],[-10615732.043376578,4584863.4430519976],[-10615492.781809615,4584857.1003236119],[-10615248.014157221,4584850.6057303175],[-10615243.951418793,4584850.4952923758],[-10615003.258519441,4584844.1119032521],[-10614759.346445674,4584837.6361253355],[-10614504.320162568,4584834.2667165082],[-10614247.543181097,4584830.8663020441],[-10613991.872162875,4584827.4806281384],[-10613736.357623853,4584824.089616064],[-10613481.018185301,4584820.692376026],[-10613225.891490182,4584817.2913228516],[-10612970.775808219,4584813.8764160927],[-10612715.744823506,4584810.4552817438],[-10612460.809023954,4584810.5566029586],[-10612214.001005169,4584810.6492480459],[-10612206.389413899,4584810.6436863486],[-10611952.484791867,4584810.731530278],[-10611709.448880356,4584810.8086532596],[-10611699.085246591,4584810.8133982383],[-10611446.212402752,4584810.8899256559],[-10611201.607299516,4584810.9554884806],[-10611193.854747178,4584810.96594257],[-10610942.013381312,4584811.0153924795],[-10610690.698016101,4584811.0577223916],[-10610436.132955734,4584808.9996580128],[-10610180.978923228,4584806.9300297694],[-10609926.061661351,4584804.8640868682],[-10609671.101751123,4584802.7919162754],[-10609416.109003771,4584800.7098319195],[-10609161.084120065,4584798.6221553721],[-10608906.019291114,4584796.526471667],[-10608650.909911655,4584794.4222724019],[-10608396.45136367,4584793.8234984493],[-10608140.636166755,4584793.215451357],[-10607885.705379846,4584792.6010454418],[-10607630.92136066,4584791.9800294694],[-10607376.318848858,4584791.3544370048],[-10607121.864606498,4584790.7219802663],[-10606867.602183325,4584790.0824048901],[-10606613.465804197,4584789.4385074386],[-10606355.872864332,4584790.4310964961],[-10606098.481254293,4584791.4146604631],[-10605841.302787574,4584792.3881824622],[-10605584.335561989,4584793.353314843],[-10605328.003161177,4584794.3139961446],[-10605072.04328567,4584795.2665413776],[-10604816.479262115,4584796.208789669],[-10604561.303982375,4584797.1444270909],[-10604298.62616251,4584795.1435933961],[-10604033.818411103,4584793.1190000111],[-10603768.568054719,4584791.0836047688],[-10603502.308746701,4584789.0334697254],[-10603235.060910348,4584786.9726621704],[-10603210.332175771,4584786.7812157925],[-10602966.827817442,4584784.3882059176],[-10602697.585128604,4584781.7319830265],[-10602427.324471829,4584779.0602596328],[-10602173.169875445,4584778.389325235],[-10601919.91350965,4584777.7136828341],[-10601665.620454414,4584777.036012657],[-10601410.949065126,4584776.35135388],[-10601155.879218776,4584775.6529700682],[-10600900.390992425,4584774.9484876078],[-10600644.523030462,4584774.2319323719],[-10600388.2776355,4584773.5074987942],[-10600131.748224219,4584771.7383944513],[-10599874.999261023,4584769.9620465543],[-10599869.858062599,4584769.9299184158],[-10599618.01843182,4584768.17565889],[-10599360.843980486,4584766.378468602],[-10599353.950471705,4584766.3286829228],[-10599103.439965751,4584764.5733993165],[-10598845.81289508,4584762.7613407243],[-10598840.592105363,4584762.725654114],[-10598587.962768504,4584760.9392423183],[-10598329.864857648,4584759.1067229332],[-10598072.303845171,4584759.2252536584],[-10597820.723294422,4584759.3363782736],[-10597815.382666875,4584759.3364087055],[-10597559.126952186,4584759.438154228],[-10597310.664579252,4584759.5294327894],[-10597303.529392725,4584759.5299818609],[-10597048.56015417,4584759.6209161896],[-10596799.64896635,4584759.705842101],[-10596794.268392997,4584759.7034577746],[-10596540.613562688,4584759.7763357982],[-10596287.677457074,4584759.8426003],[-10596033.98036997,4584760.8580855215],[-10595778.630987156,4584761.8742158571],[-10595523.597967397,4584762.8860230232],[-10595268.226659587,4584763.8938920544],[-10595012.707382161,4584764.8881619172],[-10594756.430235263,4584765.8797670817],[-10594499.972581344,4584766.8676874107],[-10594243.156516274,4584767.8511612955],[-10593986.170558503,4584768.5834775539],[-10593730.816573275,4584769.3058704548],[-10593475.19377975,4584770.0192405675],[-10593219.950922221,4584770.726253395],[-10592965.017720053,4584771.4276719438],[-10592710.361736022,4584772.123496417],[-10592456.206026161,4584772.8020318942],[-10592202.48641674,4584773.474082646],[-10592171.572252298,4584772.9162690891],[-10591950.247384263,4584776.7172001917],[-10591696.550169501,4584781.0698253894],[-10591443.045876376,4584785.4103766978],[-10591189.180469112,4584789.7509322315],[-10590935.148370724,4584794.0973377144],[-10590680.971206123,4584798.4394246228],[-10590426.241007196,4584802.7806271156],[-10590171.085620599,4584807.1233594641],[-10589913.456149202,4584805.0155188795],[-10589654.825328942,4584802.8928129664],[-10589397.535947653,4584800.7732772967],[-10589293.82165898,4584799.9175617239],[-10589140.795996336,4584798.6923787128],[-10588884.279600974,4584796.6667698044],[-10588628.194900861,4584794.6368371015],[-10588372.557814227,4584792.6076647062],[-10588117.34741709,4584790.5745498613],[-10587860.427962339,4584788.1302603045],[-10587615.214837817,4584785.7894949485],[-10587604.41594856,4584785.6944819968],[-10587349.310575021,4584783.2448444581],[-10587109.536790844,4584780.9351895172],[-10587095.111841608,4584780.7946937084],[-10586842.027786879,4584778.3602979984],[-10586700.412216142,4584776.9946005996],[-10586600.566360332,4584776.781252264],[-10586589.683674287,4584776.7633925136],[-10586338.314672189,4584776.1936161052],[-10586087.424018933,4584775.6186256511],[-10585833.067085247,4584775.4693292016],[-10585578.318902718,4584775.3120273575],[-10585567.556354495,4584775.2973445402],[-10585322.646760177,4584775.1427829107],[-10585066.223856239,4584774.9750679946],[-10585051.872890761,4584774.9729890153],[-10584808.767666765,4584774.8062150097],[-10584550.460901491,4584774.6235124329],[-10584539.698453397,4584774.6060333084],[-10584291.301758368,4584774.4244181691],[-10584031.269913947,4584774.2253288692],[-10583775.073978228,4584773.051450192],[-10583519.999729425,4584771.8764212141],[-10583263.999518223,4584770.6956778383],[-10583007.772546839,4584769.5093431724],[-10582751.300193977,4584768.3091555219],[-10582494.58856659,4584767.1013429826],[-10582237.639466697,4584765.891752379],[-10581980.449991029,4584764.6741555771],[-10581724.32685175,4584761.7539838273],[-10581468.381316135,4584758.8306340389],[-10581212.574339448,4584755.8986409204],[-10580956.952274799,4584752.964359466],[-10580701.520127906,4584750.0338906646],[-10580446.360093109,4584747.1012601266],[-10580191.097340465,4584744.1512174411],[-10579935.848603824,4584741.1943116337],[-10579700.476252742,4584740.8419200145],[-10579467.008987468,4584740.4859586125],[-10579235.033033317,4584740.1182950791],[-10579004.70767297,4584739.7476987196],[-10578775.919376122,4584739.3828133075],[-10578548.184688136,4584739.0142358467],[-10578322.147748066,4584738.6427252991],[-10578097.603120189,4584738.2705707159],[-10577844.670916343,4584738.657773478],[-10577591.277082913,4584739.0393863153],[-10577337.423121629,4584739.4121044902],[-10577083.117141796,4584739.7774532083],[-10576828.357942054,4584740.1320006689],[-10576574.041550444,4584740.4780296246],[-10576319.060195895,4584740.8260960849],[-10576063.769786799,4584741.1685717376],[-10575808.687717101,4584741.4640175225],[-10575556.130544424,4584741.7481366377],[-10575553.579317205,4584741.7581924396],[-10575380.406126205,4584741.9422094123],[-10575298.425057242,4584741.6300863326],[-10575047.43146139,4584740.6655643163],[-10575043.206466377,4584740.6534041893],[-10574788.941680653,4584739.6765857628],[-10574537.882809335,4584738.7055826224],[-10574534.933492273,4584738.7002734952],[-10574281.116225274,4584737.7085799547],[-10574027.538135475,4584736.7116730558],[-10573770.009876881,4584734.6398827089],[-10573513.162106842,4584732.5659256615],[-10573256.53158867,4584730.4868831057],[-10573000.262589505,4584728.4051685948],[-10572744.368524875,4584726.3211633125],[-10572488.837681228,4584724.2334692338],[-10572233.72141812,4584722.1343324799],[-10571979.008922968,4584720.0317607401],[-10571729.048666365,4584713.6120490888],[-10571477.822443673,4584707.1532071838],[-10571471.291578326,4584706.9764703121],[-10571225.39282747,4584700.6453203792],[-10570971.739393933,4584694.1107592769],[-10570963.056535611,4584693.8946418893],[-10570718.74842819,4584687.5918307509],[-10570463.306723978,4584680.9981950074],[-10570454.305697147,4584680.7700062823],[-10570205.424993666,4584674.3365885923],[-10569945.079710061,4584667.6007838594],[-10569687.464428544,4584668.7683777409],[-10569435.929491911,4584669.9013388911],[-10569431.782787481,4584669.9096418647],[-10569178.038390834,4584671.0511408253],[-10568926.221327251,4584672.1760970624],[-10568671.126566071,4584673.301721327],[-10568415.876825308,4584674.4208647562],[-10568160.511550598,4584675.5435681315],[-10567905.012621019,4584676.6602988811],[-10567659.732894162,4584682.4303158],[-10567423.554513561,4584687.9811176937],[-10567415.414981648,4584688.1621941971],[-10567172.045467732,4584693.8807193721],[-10566940.459908679,4584699.3172134245],[-10566929.647479268,4584699.5794087993],[-10566688.15123561,4584705.2334779138],[-10566455.728205649,4584710.6706197448],[-10566447.590175439,4584710.8513151733],[-10566207.979115792,4584716.4490625905],[-10565969.320659766,4584722.018585464],[-10565712.436863277,4584718.3548228247],[-10565459.276280345,4584714.7376723355],[-10565456.048541006,4584714.6984293042],[-10565200.172812922,4584711.0317372959],[-10564949.112463655,4584707.4271532092],[-10564944.809078231,4584707.3680927167],[-10564689.95653603,4584703.7034282377],[-10564438.829209683,4584700.0869010398],[-10564435.601570468,4584700.0468954686],[-10564181.756095417,4584696.3906138502],[-10563928.427319225,4584692.7347104056],[-10563675.226167548,4584691.8693645736],[-10563421.128076784,4584690.9969101036],[-10563413.953364376,4584690.970670999],[-10563166.172993328,4584690.1043820484],[-10562910.36101719,4584689.2046178635],[-10562900.754587499,4584689.1672178563],[-10562653.660912223,4584688.2929150499],[-10562396.086194044,4584687.3746118201],[-10562388.870834572,4584687.3467208147],[-10562137.633258421,4584686.4554278655],[-10561878.263460634,4584685.5292625967],[-10561623.021844164,4584684.7937115133],[-10561466.218776152,4584684.3379529826],[-10561368.713608051,4584684.1836022977],[-10561113.433344012,4584683.7766139172],[-10560857.826101216,4584683.3632737342],[-10560602.004209787,4584682.9456142643],[-10560345.984889708,4584682.5210932847],[-10560089.424542874,4584682.089841322],[-10559832.42749018,4584681.6500778953],[-10559574.65799877,4584686.1212083735],[-10559316.550815856,4584690.5919619584],[-10559311.444298647,4584690.6807308001],[-10559058.1474896,4584695.0580167044],[-10558799.437307578,4584699.5220418805],[-10558792.814733647,4584699.6342128487],[-10558540.395941636,4584703.9797162199],[-10558281.046518516,4584708.4370133374],[-10558276.019993942,4584708.5285777533],[-10558021.375922959,4584712.9010511739],[-10557761.378648713,4584717.3574670702],[-10557504.926744385,4584714.9862290071],[-10557248.877206415,4584712.6115561584],[-10556992.285840858,4584710.2325682025],[-10556735.459002702,4584707.8446863666],[-10556478.299779732,4584705.4420648599],[-10556221.084992563,4584703.0346150231],[-10555963.5373199,4584700.6227209168],[-10555705.754875448,4584698.2026955774],[-10555453.590590706,4584701.0690906802],[-10555209.165873749,4584703.8423695667],[-10555202.267380407,4584703.9200981772],[-10554951.766823165,4584706.7613107925],[-10554711.580216698,4584709.4796394072],[-10554702.088218294,4584709.579763975],[-10554453.541424707,4584712.3851145143],[-10554212.996102408,4584715.0936601758],[-10554205.936322218,4584715.1670689108],[-10553959.263199396,4584717.9474890344],[-10553713.533069115,4584720.7118849857],[-10553457.092634903,4584722.9328934317],[-10553199.68097529,4584725.1549283937],[-10552942.695609566,4584727.3641217081],[-10552685.670397624,4584729.5659434637],[-10552428.602836488,4584731.7680198718],[-10552171.498732923,4584733.9653938608],[-10551914.342669057,4584736.1602263218],[-10551657.126335267,4584738.3503565807],[-10551401.344728559,4584733.9544801023],[-10551145.048526037,4584729.544375889],[-10551140.625702396,4584729.4766737064],[-10550888.230519243,4584725.1309749167],[-10550630.899017984,4584720.696228452],[-10550624.962541034,4584720.5874870494],[-10550372.98644395,4584716.241408241],[-10550114.559173962,4584711.7763005998],[-10550109.898775212,4584711.6960177422],[-10549855.568251314,4584707.2988723768],[-10549596.029494364,4584702.8055645507],[-10549568.238716166,4584700.7948181583],[-10549362.562750917,4584697.7012711708],[-10549343.54631624,4584697.9214752316],[-10549094.534181273,4584700.809566563],[-10549090.585906319,4584700.8565067649],[-10548837.324447362,4584703.798278003],[-10548588.951052207,4584706.6764494758],[-10548583.805790268,4584706.7381455228],[-10548331.222516937,4584709.6589385597],[-10548080.136278164,4584712.5541692926],[-10548077.503727684,4584712.5927076461],[-10547822.647720689,4584715.5259798747],[-10547566.653995285,4584718.4657459036],[-10547548.436578464,4584719.442967888],[-10547308.354251934,4584721.7231558105],[-10547051.427432431,4584724.1575985095],[-10546794.467475366,4584726.5884828977],[-10546537.905977692,4584729.0083111087],[-10546281.670956558,4584731.414540872],[-10546025.022860438,4584733.8172112349],[-10545768.858421715,4584736.2170873508],[-10545512.897517916,4584738.6098469086],[-10545255.316431301,4584732.1877358081],[-10544997.34399285,4584725.747578661],[-10544740.792588647,4584719.3406031616],[-10544485.059224674,4584712.947106597],[-10544229.97130237,4584706.5525987092],[-10543975.525117366,4584700.1681374386],[-10543722.10060698,4584693.8077051593],[-10543469.575530557,4584687.4626584891],[-10543469.114489624,4584430.1031056847],[-10543468.652147911,4584172.6517056078],[-10543468.662288044,4584169.3083089255],[-10543468.207727661,4583915.0991872698],[-10543467.746488847,4583657.4456850998],[-10543467.720497061,4583652.9619490141],[-10543467.256519118,4583399.5304415831],[-10543466.784970654,4583141.6030687504],[-10543466.790804792,4583138.3806074206],[-10543466.333545484,4582883.6563238082],[-10543465.870807931,4582625.627940095],[-10543464.825696722,4582367.8967301482],[-10543463.825441739,4582121.363851686],[-10543463.781777937,4582111.1954922481],[-10543462.74215579,4581855.4500691108],[-10543461.762877138,4581614.5002981862],[-10543461.70022242,4581600.6896147188],[-10543460.678997882,4581347.6754100509],[-10543459.705427378,4581106.5015042592],[-10543459.658067448,4581095.374086312],[-10543458.644032709,4580844.4921471076],[-10543457.625498271,4580592.9455747567],[-10543459.121084196,4580491.7005211478],[-10543459.624291761,4580335.6979379812],[-10543459.843724241,4580267.5964395003],[-10543461.665030867,4580078.833508824],[-10543464.150182428,4579822.0471027112],[-10543464.354598047,4579800.9161913088],[-10543467.24793474,4579566.0272702836],[-10543468.914000582,4579431.6492039273],[-10543469.153432801,4579309.8732768092],[-10543469.65723354,4579053.957347488],[-10543470.136899753,4578798.8208603496],[-10543470.617061153,4578544.3146250658],[-10543470.232821072,4578290.3020387655],[-10543469.847681722,4578036.0904095946],[-10543469.481265776,4577781.6750524295],[-10543469.112549009,4577527.052552646],[-10543468.742525876,4577272.9939002832],[-10543468.370106235,4577018.2189111849],[-10543468.017006179,4576763.7595760571],[-10543467.659224613,4576506.5511231357],[-10543466.337238811,4576248.3834576374],[-10543465.025348002,4575992.1345623853],[-10543464.996543918,4575988.7738070404],[-10543463.672119368,4575734.7463784274],[-10543462.329503993,4575477.2411491331],[-10543462.307827389,4575471.6607418144],[-10543461.015032694,4575218.3975046994],[-10543459.690755602,4574958.9166328153],[-10543459.665155901,4574955.4764654692],[-10543458.335948441,4574698.8394694906],[-10543456.9866529,4574438.1555203488],[-10543456.614959788,4574180.4456869867],[-10543456.250034962,4573927.2960175993],[-10543456.247767383,4573923.2573881699],[-10543455.869257277,4573666.6081067482],[-10543455.500799431,4573416.8024616633],[-10543455.505759805,4573410.5035162186],[-10543455.147862425,4573155.1380842086],[-10543454.79423181,4572904.1751998309],[-10543454.79296557,4572900.1156395022],[-10543454.432356214,4572645.7780526793],[-10543454.070649333,4572391.0136623299],[-10543453.027876573,4572133.9191200156],[-10543452.007178631,4571882.6637001494],[-10543451.979785183,4571878.2639382808],[-10543450.928487433,4571622.9169324581],[-10543449.902969385,4571373.3375885207],[-10543449.901411654,4571368.2596664615],[-10543448.844799215,4571113.8988335179],[-10543447.806570694,4570863.8369413335],[-10543447.794589819,4570860.0390317971],[-10543446.761095086,4570606.7148770196],[-10543445.728396833,4570353.9023401383],[-10543446.22169777,4570096.7718499098],[-10543446.711992746,4569839.9368626066],[-10543447.22391028,4569583.3891065093],[-10543447.733122196,4569327.1369366078],[-10543448.24924857,4569070.1481429227],[-10543448.764374698,4568813.0640583429],[-10543449.269290179,4568555.8567702277],[-10543449.77410662,4568298.535678572],[-10543449.602216946,4568044.0750943897],[-10543449.429630147,4567789.1958947536],[-10543449.428855969,4567786.1184943849],[-10543449.251340393,4567533.9040744454],[-10543449.069950817,4567278.1843099315],[-10543449.070387051,4567274.0681995237],[-10543448.904282779,4567022.0804093499],[-10543448.73481402,4566765.5590300895],[-10543448.736542905,4566762.461504668],[-10543448.562745884,4566508.6257858416],[-10543448.385875816,4566251.2817220939],[-10543449.371634062,4565995.5941911489],[-10543450.358194467,4565739.7769495333],[-10543451.357070848,4565483.7689824617],[-10543452.356449489,4565227.5796919921],[-10543453.349722741,4564971.2112481212],[-10543454.344399044,4564714.6889092317],[-10543455.330867611,4564457.977674013],[-10543456.319940882,4564201.0832648547],[-10543456.542117106,4563945.4959363407],[-10543456.762890279,4563690.0814489778],[-10543456.972649328,4563434.8361113742],[-10543457.181405781,4563179.7634625807],[-10543457.397268958,4562924.8689438561],[-10543457.611428712,4562670.1494978974],[-10543457.854820738,4562415.6092973342],[-10543458.096909825,4562161.2426214451],[-10543459.644229481,4561904.2651251135],[-10543460.341540623,4561788.5006532604],[-10543460.854426235,4561651.1519359052],[-10543460.874280045,4561647.5978514934],[-10543461.796372065,4561391.2627173169],[-10543462.701000005,4561139.9924961394],[-10543462.724968631,4561135.2808777196],[-10543463.643851675,4560879.5745697487],[-10543464.548884649,4560627.8007310471],[-10543464.569339689,4560624.1863813335],[-10543465.487216236,4560369.1162888259],[-10543466.40468956,4560114.3755543176],[-10543465.227340383,4559859.8902184851],[-10543464.048192602,4559605.0048538148],[-10543464.036111604,4559601.2110602614],[-10543462.865744593,4559349.7066833796],[-10543461.67589156,4559094.0020770403],[-10543461.663118269,4559089.2287509507],[-10543460.493848074,4558838.2368172295],[-10543459.807433734,4558691.0621796018],[-10543458.991840035,4558581.8751113852],[-10543458.94961746,4558578.8585053449],[-10543456.966833521,4558324.8359886305],[-10543454.957946934,4558067.6436068453],[-10543454.925936831,4557903.4310005466],[-10543454.888797181,4557810.9889162406],[-10543454.788785506,4557557.3619413851],[-10543454.784406286,4557554.3879749775],[-10543454.705640346,4557298.3290965334],[-10543454.675482633,4557197.3919229684],[-10543454.452028507,4557047.3208245663],[-10543454.435049491,4557042.6478232639],[-10543454.038813803,4556786.9284698209],[-10543453.649653658,4556534.9686564263],[-10543453.627258491,4556531.4344476545],[-10543453.227314005,4556276.2417945899],[-10543452.826367734,4556021.126006539],[-10543455.611612048,4555765.0907034632],[-10543458.095967902,4555536.7687226841],[-10543458.13465306,4555509.1050508199],[-10543458.682712018,4555253.0588947404],[-10543459.229468746,4554997.104846702],[-10543459.782933285,4554741.1544362791],[-10543460.337102123,4554484.8113611462],[-10543460.903482191,4554228.8103178907],[-10543461.469160711,4553972.903018469],[-10543593.481654372,4553973.6545795891],[-10543718.343482586,4553974.3601006232],[-10543975.49332295,4553975.8079331266],[-10544107.982567705,4553976.5521465819],[-10544232.939605894,4553977.2591890208],[-10544490.669416483,4553978.7129811188],[-10544620.018130949,4553979.4476736067],[-10544615.591266796,4553723.4120493187],[-10544611.162900576,4553467.3969196379],[-10544606.724724108,4553211.2398279049],[-10544602.283945277,4552954.9913445469],[-10544597.835562421,4552698.1844093893],[-10544593.383978186,4552441.0954195149],[-10544588.958826685,4552183.7417548057],[-10544584.527470306,4551926.1097505456],[-10544579.150404351,4551670.2988610743],[-10544573.766733212,4551414.1867637737],[-10544568.375255561,4551157.7656256696],[-10544562.977172814,4550901.0333157601],[-10544562.887202531,4550897.1983538447],[-10544557.551271329,4550642.7524882415],[-10544552.157597085,4550385.5874558194],[-10544546.736593863,4550128.1019364754],[-10544541.317491312,4549870.7663143007],[-10544538.045653626,4549615.4694586126],[-10544534.791023668,4549361.5456670066],[-10544531.525089059,4549106.6532167653],[-10544528.25595231,4548851.5710537368],[-10544524.979911568,4548596.0245846286],[-10544521.698967796,4548340.1664696708],[-10544518.406112762,4548084.0104107028],[-10544515.110657323,4547827.548323784],[-10544512.491192881,4547570.0302062193],[-10544509.891734447,4547314.4516153773],[-10544507.299088342,4547058.3596725659],[-10544504.708441766,4546802.5765752122],[-10544502.111286137,4546546.9590718402],[-10544499.520232707,4546291.8860444464],[-10544496.920968279,4546036.976035228],[-10544494.32420342,4545782.43607153],[-10544486.715633964,4545517.3464676049],[-10544479.185431279,4545254.9363716654],[-10544471.662237551,4544992.3943637619],[-10544464.162463348,4544730.6784364218],[-10544456.699923649,4544469.9018465569],[-10544449.269110184,4544210.2820402486],[-10544448.282376688,4544175.2510038652],[-10544447.338984609,4543951.3509026989],[-10544446.251732741,4543692.8405892756],[-10544438.815958943,4543442.5832830528],[-10544431.329622226,4543190.6106157238],[-10544423.791320922,4542936.9062541239],[-10544416.200954955,4542681.4805786945],[-10544416.065185258,4542676.7702976232],[-10544408.520476205,4542422.8048869902],[-10544400.83539244,4542164.1723274365],[-10544393.100846967,4541903.7980648084],[-10544385.333260346,4541642.2607030636],[-10544379.8365166,4541386.6771599166],[-10544374.51109229,4541138.9754750254],[-10544374.347681602,4541130.896859467],[-10544368.867055722,4540874.9271572204],[-10544363.612519784,4540629.5142191667],[-10544363.39413836,4540618.7632574392],[-10544357.913113814,4540363.3682079595],[-10544352.559852934,4540113.8531602947],[-10544352.424077818,4540107.1124665979],[-10544346.914616117,4539850.0331784058],[-10544341.387631925,4539592.0750993844],[-10544336.481367989,4539334.9389113178],[-10544331.65981414,4539082.2774024429],[-10544331.600435792,4539078.6675772928],[-10544326.747238295,4538823.3362019965],[-10544321.912965244,4538568.9186482904],[-10544321.733631697,4538559.1664657407],[-10544322.383126205,4538314.1335256658],[-10544323.05842408,4538059.237075896],[-10544323.069525063,4538054.8129595546],[-10544323.718704237,4537804.2212078962],[-10544324.380085321,4537549.0883344784],[-10544324.286995076,4537294.4258033205],[-10544324.234143389,4537148.7131842747],[-10544323.02124816,4537039.579318882],[-10544323.003620725,4537036.9492491856],[-10544321.037459003,4536854.9262986565],[-10544320.844447071,4536784.5187836634],[-10544320.143352205,4536529.3003967497],[-10544320.145137714,4536523.1237625284],[-10544319.490911555,4536273.3165102573],[-10544318.819447782,4536016.9140770258],[-10544318.790997572,4536010.458027455],[-10544318.125657028,4535760.0775671536],[-10544317.441276025,4535502.8182717701],[-10544320.193973208,4535246.8852642095],[-10544322.95537802,4534990.0746796345],[-10544325.718282087,4534732.3727945806],[-10544328.48899273,4534473.7900474695],[-10544328.622816252,4534462.1427735332],[-10544331.278224727,4534215.2164908219],[-10544334.074260477,4533955.1443945309],[-10544334.225597458,4533940.9685881324],[-10544336.89572145,4533693.5490796724],[-10544339.735199086,4533430.433443239],[-10544341.84453324,4533167.6427824767],[-10544343.888713675,4532912.9397105463],[-10544343.925039388,4532906.8665229939],[-10544346.016363325,4532648.0865548253],[-10544347.078038579,4532516.7581059253],[-10544347.48887706,4532391.3077864824],[-10544347.789522266,4532315.8603030303],[-10544349.109259496,4532133.7035729727],[-10544350.733936762,4531909.6160912598],[-10544350.585078664,4531877.5681245569],[-10544349.862063736,4531736.3298016209],[-10544349.822206901,4531620.5130220158],[-10544349.732713614,4531363.4228996849],[-10544351.007104261,4531108.9592144815],[-10544352.278391853,4530854.7116378807],[-10544353.51934479,4530600.639185193],[-10544354.757695194,4530346.7605572576],[-10544356.011662444,4530092.4521350553],[-10544357.266029885,4529838.0592505811],[-10544358.505479906,4529583.6202194914],[-10544359.745029839,4529329.1231605494],[-10544362.348156936,4529074.929032743],[-10544364.912949683,4528824.4775875956],[-10544364.937167745,4528820.7759848805],[-10544367.552008407,4528566.6511188541],[-10544370.123810422,4528316.6945291683],[-10544370.164346164,4528312.5544324713],[-10544372.739446815,4528060.700477994],[-10544375.31885088,4527808.2975166934],[-10544377.93078571,4527553.3796626823],[-10544380.562338155,4527296.6042883927],[-10544387.537607711,4527038.3286254387],[-10544394.229377635,4526790.5794090042],[-10544394.448106971,4526781.830343538],[-10544399.502947615,4526594.7891426776],[-10544401.986536715,4526527.1295359321],[-10544411.271089323,4526274.162369132],[-10544420.60129012,4526019.5921120355],[-10544429.936195776,4525764.9012885094],[-10544439.274806626,4525510.6472655479],[-10544448.603306187,4525256.6386687653],[-10544456.452495072,4525002.43580704],[-10544464.302484598,4524748.2081654416],[-10544464.409598242,4524744.4314228641],[-10544472.134452673,4524493.8332904251],[-10544479.978634384,4524239.3622460142],[-10544480.152520552,4524233.8578347228],[-10544487.876974447,4523983.3976767603],[-10544495.766404442,4523727.6028891075],[-10544496.00155429,4523719.4535809159],[-10544503.640116531,4523471.9869684493],[-10544511.526143093,4523216.5429518977],[-10544519.215152293,4522965.0222860845],[-10544526.937496888,4522712.4191544484],[-10544527.154527057,4522704.748624024],[-10544534.6782599,4522458.8316815542],[-10544542.465874102,4522204.2270891769],[-10544542.585601389,4522200.1140504563],[-10544542.607497577,4522189.310793275],[-10544542.871361941,4521951.6631849715],[-10544543.153102888,4521697.6695386739],[-10544543.180799777,4521684.6396990512],[-10544543.455964245,4521442.2010260578],[-10544543.748009229,4521185.3055089507],[-10544546.855708733,4520928.6330828443],[-10544549.834788105,4520682.5681653935],[-10544549.944891062,4520673.5618299618],[-10544553.008047616,4520420.1229612846],[-10544555.942784172,4520177.2529083574],[-10544556.050584622,4520168.3059997512],[-10544559.111839863,4519915.267168561],[-10544562.114040252,4519667.229311347],[-10544562.169992687,4519662.6967695821],[-10544565.215432042,4519410.6145996759],[-10544568.253864523,4519159.0212549688],[-10544569.590120899,4518904.0750004342],[-10544570.925376821,4518649.4104242465],[-10544572.278554197,4518395.0393778384],[-10544573.630430808,4518140.9590611923],[-10544573.671661716,4518134.7564110113],[-10544574.97029403,4517887.0820582891],[-10544576.29924535,4517633.4870328689],[-10544576.322954446,4517626.7066549063],[-10544577.6274965,4517380.1458023228],[-10544578.967061386,4517127.0737547176],[-10544575.770377707,4516871.3733669668],[-10544572.659511253,4516622.3440378113],[-10544572.560378674,4516615.6581395678],[-10544569.376509864,4516359.9304726403],[-10544567.834393723,4516236.0248014042],[-10544566.601830002,4516110.1714688763],[-10544566.556461379,4516104.1653645514],[-10544564.062389554,4515848.3876927895],[-10544561.612881256,4515597.053109684],[-10544561.586839149,4515592.598468923],[-10544559.104580948,4515336.7744614808],[-10544556.621121317,4515080.9192081578],[-10544556.912863703,4514823.4473074023],[-10544557.204706522,4514566.1010486055],[-10544557.486438023,4514308.9002436437],[-10544557.766067468,4514051.8461441612],[-10544558.048899781,4513794.4913318185],[-10544558.331132503,4513537.5552733857],[-10544558.601751508,4513280.5180922579],[-10544558.871673578,4513024.9207381764],[-10544559.884751705,4512768.4206298888],[-10544560.863914622,4512520.816047417],[-10544560.882810276,4512511.1170511479],[-10544560.978058405,4512488.1828111401],[-10544563.620580403,4512254.5046862001],[-10544566.396224616,4512009.1610213965],[-10544566.510526525,4511997.9961781073],[-10544569.401075535,4511742.3348225337],[-10544572.152897077,4511498.8538596649],[-10544572.290824709,4511487.1135113556],[-10544575.169962576,4511232.2769311825],[-10544578.047599711,4510977.8442376498],[-10544577.639831884,4510719.7930832095],[-10544577.233064419,4510461.4495625831],[-10544577.215033818,4510457.8319416475],[-10544576.824494001,4510202.7869428294],[-10544576.428937759,4509943.8099167207],[-10544576.025772436,4509684.7269801646],[-10544575.622405732,4509425.2214015741],[-10544575.603668801,4509419.5582053829],[-10544575.210128253,4509165.5377642866],[-10544575.015566312,4509040.6688375017],[-10544569.229941482,4508905.7686534468],[-10544570.648639692,4508649.2125199912],[-10544572.045878777,4508396.7424539132],[-10544572.064626688,4508392.1732306201],[-10544573.481005289,4508134.603884331],[-10544574.899377549,4507876.516884773],[-10544576.319042092,4507617.8770695012],[-10544577.74100068,4507358.7225808166],[-10544577.765685899,4507356.0412206864],[-10544579.166254194,4507099.0361727634],[-10544580.583089259,4506838.8273466267],[-10544580.885802636,4506576.4362048078],[-10544581.170639904,4506329.2000142932],[-10544581.172326345,4506315.8516843654],[-10544581.449866544,4506056.9400594858],[-10544581.706686368,4505816.8367690397],[-10544581.457422685,4505799.7438439969],[-10544577.598538417,4505550.1152833262],[-10544573.827849785,4505306.2751354016],[-10544573.726509936,4505298.6630190751],[-10544569.82271478,4505045.3271416677],[-10544565.889055621,4504790.1357890433],[-10544564.627125807,4504531.6011349512],[-10544563.378756527,4504275.8428508453],[-10544563.3313726,4504267.8367059641],[-10544562.137540087,4504022.8430761583],[-10544560.916691694,4503772.5984580666],[-10544560.818389056,4503754.6827755822],[-10544559.639051888,4503514.5518682553],[-10544558.371218702,4503256.2109709429],[-10544558.320666732,4503244.2150935279],[-10544557.107284809,4502997.5429988345],[-10544555.834936796,4502738.5982932486],[-10544555.235815862,4502482.7832258474],[-10544554.635082666,4502226.3252239497],[-10544554.048867201,4501969.9296064172],[-10544553.462949323,4501713.3652347298],[-10544552.863418872,4501456.9960251879],[-10544552.2616785,4501200.1712139957],[-10544551.677250667,4500942.8883127319],[-10544551.093516057,4500685.1377726737],[-10544553.777175849,4500429.0971583324],[-10544556.463734504,4500172.807359647],[-10544556.503213668,4500168.6987491883],[-10544559.133166807,4499916.13652106],[-10544561.807098456,4499659.1318210242],[-10544561.872981133,4499653.3571286714],[-10544562.173887983,4499626.1134325042],[-10544560.861942485,4499401.1456775935],[-10544559.351327024,4499142.6762406724],[-10544559.345757138,4499138.7462895345],[-10544557.874843277,4498883.7287134128],[-10544556.378929814,4498624.3220399907],[-10544549.392617811,4498440.9616373451],[-10544547.08295553,4498366.6041279826],[-10544539.457105763,4498121.2092769612],[-10544539.096911009,4498110.0794529496],[-10544531.136716448,4497854.7455341527],[-10544523.777527042,4497618.7247655354],[-10544523.830416558,4497614.3006516024],[-10544524.046743575,4497600.5356050311],[-10544526.016935498,4497471.8228439959],[-10544527.517804785,4497344.2382381558],[-10544530.334979044,4497104.4695235752],[-10544530.509458417,4497090.7432098361],[-10544533.469917068,4496839.8151306557],[-10544536.394481726,4496591.848682276],[-10544539.109961174,4496341.1627875715],[-10544541.858930446,4496087.4857978579],[-10544541.909518242,4496083.1228228081],[-10544544.645902544,4495831.3026230764],[-10544547.456659537,4495572.5176697252],[-10544550.212795949,4495316.3814629121],[-10544552.973927777,4495059.6344036134],[-10544553.05011748,4495053.566103559],[-10544555.766484484,4494802.2160502989],[-10544558.554524915,4494544.1415734347],[-10544561.293062678,4494289.4578544069],[-10544564.037797602,4494034.1859521391],[-10544566.783623794,4493778.3235153733],[-10544569.534946367,4493521.8748710975],[-10544569.64552848,4493512.8922557086],[-10544572.320396056,4493264.70172018],[-10544575.1006271,4493006.7761456426],[-10544575.147095,4493001.4814844811],[-10544577.801097291,4492756.9797514034],[-10544577.796650168,4492748.195087783],[-10544577.649290415,4492488.9865630586],[-10544514.039855421,4492487.0027881777],[-10544517.728231074,4492235.0566437123],[-10544521.409405932,4491983.6103797816],[-10544525.06184756,4491732.1882745707],[-10544528.258969914,4491512.0381259946],[-10544520.233638851,4491512.2010061285],[-10544520.488429474,4491481.0890047411],[-10544522.619121756,4491229.7926745983],[-10544524.751613528,4490978.3598857345],[-10544526.87640631,4490727.560540217],[-10544528.996499443,4490477.1407810282],[-10544529.55196302,4490224.8955579475],[-10544530.107018929,4489972.2152947141],[-10544530.6756834,4489719.1070759166],[-10544531.244340762,4489465.5700507201],[-10544531.804989543,4489212.0824666396],[-10544532.36703587,4488958.3546514148],[-10544532.925974611,4488704.3888892299],[-10544533.485910594,4488450.1919978214],[-10544534.819049722,4488196.8832939276],[-10544536.150993742,4487943.979012439],[-10544537.491253557,4487691.4774870193],[-10544538.831519615,4487439.378436679],[-10544540.165075844,4487187.1651758235],[-10544541.499736421,4486935.1590569019],[-10544542.818481414,4486683.3375260159],[-10544544.137329502,4486431.7163088834],[-10544546.125822475,4486178.5856660018],[-10544548.116814777,4485925.2580289366],[-10544548.161397437,4485921.0168680558],[-10544550.107402917,4485671.7237172499],[-10544552.088476572,4485417.9919364741],[-10544552.152157141,4485412.2651035702],[-10544554.082460003,4485163.969536758],[-10544556.058719363,4484909.7400069637],[-10544556.110007472,4484905.3610236216],[-10544558.070114942,4484655.2761695934],[-10544560.065387918,4484400.5824475149],[-10544561.393310897,4484146.9358357321],[-10544562.713851292,4483894.907009935],[-10544564.067112958,4483641.8862515753],[-10544565.421273397,4483388.7426811578],[-10544566.758715017,4483135.6399425138],[-10544568.095554471,4482882.4633649513],[-10544569.418076212,4482629.2244075397],[-10544570.739595635,4482375.9298713868],[-10544570.234834816,4482123.6802841164],[-10544569.728366384,4481871.0830821693],[-10544569.732219484,4481867.9110827576],[-10544569.254830038,4481618.134389054],[-10544568.771276491,4481364.8361176681],[-10544568.776814556,4481360.6150432974],[-10544568.288317982,4481111.1904326165],[-10544567.79163789,4480857.1870394768],[-10544567.795891771,4480854.0349775916],[-10544567.314574743,4480602.8411911577],[-10544566.827394454,4480348.1563099427],[-10544566.047850298,4480091.7225442976],[-10544565.270121286,4479836.095327463],[-10544564.508499196,4479579.7540631369],[-10544563.746173045,4479323.2115506465],[-10544562.962018395,4479066.456228652],[-10544562.176558658,4478809.4786760882],[-10544561.408415701,4478552.3103637649],[-10544560.639568681,4478294.9407369923],[-10544559.853324676,4478038.9906490929],[-10544559.071906755,4477784.3105352344],[-10544558.307598207,4477528.9966046922],[-10544557.544290891,4477273.6878572172],[-10544556.761161095,4477018.3948594332],[-10544555.976128913,4476763.0891800495],[-10544555.212822074,4476507.8099418785],[-10544554.447513035,4476252.5367646897],[-10544552.828583704,4475994.6970316442],[-10544551.212363612,4475737.2292656628],[-10544549.584636481,4475480.1353260344],[-10544547.957616296,4475223.413424422],[-10544546.32438568,4474966.4796834663],[-10544544.687643399,4474709.0669778809],[-10544543.052015742,4474452.4720250247],[-10544541.410965936,4474194.8852390861],[-10544535.96767007,4474024.5153611889],[-10544535.668797661,4473937.6353593059],[-10544534.788689485,4473681.4504291359],[-10544534.776890589,4473678.716402851],[-10544533.906060908,4473424.7039333219],[-10544533.025129855,4473167.8151768539],[-10544533.00066204,4473163.3385845404],[-10544532.135567134,4472910.2279733205],[-10544531.254103821,4472652.3241445757],[-10544531.22986846,4472648.8785264632],[-10544530.351504639,4472394.0461224513],[-10544529.460407546,4472135.412292813],[-10544528.578328995,4471880.243125746],[-10544527.693945609,4471625.0028079348],[-10544526.814867189,4471369.7261724211],[-10544525.935286688,4471114.4006487364],[-10544525.053197039,4470858.873482598],[-10544524.169794874,4470602.9928146014],[-10544523.287111199,4470347.6770580569],[-10544522.405036282,4470092.6187928002],[-10544520.564919339,4469836.0877876384],[-10544518.734145723,4469580.5934784031],[-10544516.913759047,4469324.2920269482],[-10544515.09366711,4469067.8033441175],[-10544513.250043008,4468811.1381279789],[-10544511.405211309,4468554.2654694961],[-10544509.576392638,4468297.2152994499],[-10544507.746667465,4468039.9817230552],[-10544505.917495029,4467784.4083724711],[-10544504.093855005,4467529.6620745845],[-10544502.287110507,4467274.1460824367],[-10544500.478557017,4467018.4001248237],[-10544498.650774887,4466762.4326386359],[-10544496.821683597,4466506.2113416279],[-10544494.974364653,4466249.7630201066],[-10544493.124435626,4465993.078893831],[-10544492.259022698,4465736.1209107107],[-10544491.392905666,4465479.0567170111],[-10544490.516473882,4465221.8966243835],[-10544489.63913765,4464964.6265662815],[-10544488.771909524,4464707.2459224556],[-10544487.904377401,4464449.7477900479],[-10544487.026230121,4464192.1516527655],[-10544486.147078685,4463934.4582716031],[-10544485.937085629,4463676.5986821856],[-10544485.731669236,4463424.2331304299],[-10544485.72830843,4463419.2072368739],[-10544485.527755009,4463162.2813886805],[-10544485.332633542,4462912.5880099498],[-10544485.317805355,4462905.8238672363],[-10544485.114777772,4462649.8247137815],[-10544484.915628195,4462399.3875652552],[-10544484.914968627,4462394.3031155476],[-10544484.717176205,4462139.2478573183],[-10544484.519598141,4461884.6493580984],[-10544484.13656584,4461628.6847607428],[-10544483.753023317,4461372.4149723146],[-10544483.35496662,4461116.2242572512],[-10544482.954205325,4460859.9881328288],[-10544482.560150482,4460603.7169018686],[-10544482.165392941,4460347.388084135],[-10544481.773137074,4460091.0249193935],[-10544481.381880874,4459834.6176136052],[-10544480.410176476,4459578.6288460009],[-10544479.437063055,4459322.4011322008],[-10544478.478762219,4459066.034581787],[-10544477.52095668,4458809.4984367536],[-10544476.556538401,4458552.7939650789],[-10544475.591413099,4458295.8891568566],[-10544474.622478995,4458038.8400325142],[-10544473.652237959,4457781.6150842225],[-10544472.601624103,4457524.9856867585],[-10544471.551713625,4457268.4366053147],[-10544471.552919216,4457265.3709427714],[-10544470.506909464,4457011.9016629672],[-10544469.44799041,4456755.4020777876],[-10544469.442060744,4456751.4679496195],[-10544468.617846128,4456553.7735177418],[-10544467.850355269,4456498.7959637698],[-10544464.261239802,4456241.6993734604],[-10544460.730927356,4455985.7373508289],[-10544457.209645761,4455730.4121466279],[-10544458.146650977,4455475.6221979111],[-10544459.08364493,4455220.4859993011],[-10544460.030737069,4454964.9377942868],[-10544460.979218328,4454709.0047279606],[-10544461.896342246,4454455.5911200512],[-10544462.823704625,4454199.8492628513],[-10544462.847753791,4454194.1480210265],[-10544463.766811512,4453941.7729234817],[-10544464.715851802,4453681.3639044771],[-10544463.670061821,4453425.3208047887],[-10544462.652502954,4453175.6446843473],[-10544462.618000703,4453170.4272309616],[-10544461.556264125,4452916.6682891613],[-10544460.500469957,4452664.048165122],[-10544459.42757139,4452408.7070587035],[-10544458.343074851,4452150.6500616167],[-10544458.338178519,4452147.7456493368],[-10544457.266102359,4451889.8871618388],[-10544456.172125826,4451626.4107782496],[-10544454.444028363,4451369.2943680752],[-10544452.720960436,4451112.9327656273],[-10544452.69909361,4451108.3890903201],[-10544450.998917785,4450857.3352020243],[-10544449.271593072,4450602.4959748313],[-10544449.223526962,4450592.5267762337],[-10544447.56061078,4450345.2135929279],[-10544445.823068472,4450086.9675113391],[-10544445.753827728,4450078.5782070691],[-10544444.07378247,4449827.7419906966],[-10544442.329972466,4449567.5422474761],[-10544442.383020492,4449311.1825440936],[-10544442.437300203,4449055.7986630173],[-10544442.467638878,4448799.9769277805],[-10544442.498579068,4448544.1883515911],[-10544442.552354684,4448288.7115747882],[-10544442.557713214,4448264.7956401343],[-10544441.994031031,4448033.0659477701],[-10544441.362053307,4447778.3628697265],[-10544440.730194127,4447524.2498869468],[-10544438.748139946,4447264.8555619363],[-10544436.775037484,4447006.7818597062],[-10544434.802734215,4446748.643952338],[-10544434.242209798,4446675.39984308],[-10544435.667358926,4446490.9628221653],[-10544435.951546533,4446233.9443519507],[-10544436.234354749,4445977.6433143774],[-10544436.509947944,4445721.1318682553],[-10544436.78604473,4445464.7253465308],[-10544436.880659962,4445205.8931066627],[-10544436.973895011,4444954.1490805419],[-10544436.971303139,4444948.1057853568],[-10544437.066884426,4444691.3656891985],[-10544437.15817509,4444444.6830061432],[-10544437.151886139,4444435.6688538967],[-10544437.234301655,4444180.513816786],[-10544437.312882083,4443933.9770936063],[-10544437.321362661,4443926.6527266484],[-10544437.40345815,4443674.080724841],[-10544437.487195786,4443422.8039891552],[-10544692.993164085,4443424.0056603597],[-10544943.279226871,4443425.1756545817],[-10544947.917174093,4443425.1987958057],[-10545202.297669223,4443426.3808880271],[-10545449.976482453,4443427.5261402838],[-10545456.068975311,4443427.5563251087],[-10545709.114159888,4443428.7193369083],[-10545957.498871891,4443429.8548180852],[-10545961.665786304,4443429.8782032421],[-10546112.495028347,4443430.5693495013],[-10546213.628187455,4443432.3126351647],[-10546465.675646979,4443436.6554143839],[-10546717.853111358,4443433.4850717029],[-10546970.030274479,4443430.3104668548],[-10546973.963822661,4443430.2645021388],[-10547222.771875018,4443427.1267174436],[-10547475.839442994,4443423.9271737933],[-10547481.661326442,4443423.8562819427],[-10547547.27212506,4443423.0208177622],[-10547726.717194248,4443422.0284619061],[-10547980.165141078,4443420.6218997678],[-10547988.61910584,4443420.5732755931],[-10548237.677883107,4443419.1860693591],[-10548494.774544744,4443417.7477233782],[-10548749.22789691,4443417.6705490416],[-10549000.629323272,4443417.5896815713],[-10549004.640056537,4443417.5866208365],[-10549256.449854432,4443417.4977353122],[-10549506.16943747,4443417.4031680459],[-10549510.023289617,4443417.403866413],[-10549758.741358863,4443418.6705013011],[-10550011.291254899,4443419.9501235792],[-10550263.772911925,4443419.3277973589],[-10550516.122616475,4443418.6995748915],[-10550768.386340145,4443421.8584421072],[-10551020.706027579,4443425.0135494089],[-10551273.008694375,4443428.1616350356],[-10551525.329080705,4443431.3042044174],[-10551777.739670452,4443434.4458987312],[-10552030.187101748,4443437.5793183316],[-10552282.657258276,4443440.7043375624],[-10552535.165357703,4443443.8234647103],[-10552788.867462384,4443444.5191211384],[-10553042.48987459,4443445.2070013136],[-10553296.073641997,4443445.8951316485],[-10553549.61566082,4443446.5769912424],[-10553802.982676979,4443447.2476870017],[-10554056.271101993,4443447.9118605433],[-10554309.460512377,4443448.573273492],[-10554562.573434059,4443449.228540455],[-10554814.439752182,4443451.1369143333],[-10555066.616628472,4443453.0405291431],[-10555319.113774117,4443454.9387580706],[-10555571.919776019,4443456.8337327158],[-10555825.025323352,4443458.7238226738],[-10556078.441028418,4443460.6099059694],[-10556332.157880908,4443462.4957444444],[-10556586.181286935,4443464.3766983729],[-10556840.174638942,4443465.5923999716],[-10557093.774335662,4443466.7994418023],[-10557346.927816289,4443467.9950640602],[-10557599.677830309,4443469.1827787589],[-10557852.074535621,4443470.3604550129],[-10558104.048552155,4443471.5309757553],[-10558355.603283852,4443472.694717247],[-10558606.68877296,4443473.8499229467],[-10558860.25324861,4443475.8484971849],[-10559113.828936569,4443477.8413036335],[-10559367.411631977,4443479.8282168088],[-10559621.007341772,4443481.8089860147],[-10559874.62037096,4443483.7847399423],[-10560128.263334094,4443485.754851819],[-10560381.913204538,4443487.7176909884],[-10560635.600117164,4443489.6756406371],[-10560887.010543387,4443493.2976241857],[-10561139.392391099,4443496.9261479899],[-10561392.373930708,4443500.555060491],[-10561464.631329468,4443501.5897068894],[-10561464.595891759,4443494.0486931512],[-10561645.860228825,4443495.5823238194],[-10561900.081060799,4443497.7221171875],[-10562154.990687892,4443499.8596666036],[-10562410.529140975,4443502.0009902241],[-10562666.715141522,4443504.1396929361],[-10562922.989561709,4443506.9885465866],[-10563173.827098899,4443509.7727185916],[-10563178.425111812,4443509.8245946132],[-10563433.003470488,4443512.6401871732],[-10563680.469910713,4443515.37112814],[-10563686.718330447,4443515.4351987308],[-10563939.491601657,4443518.215897901],[-10564186.720966263,4443520.929405285],[-10564191.396568855,4443520.985170261],[-10564442.412608134,4443523.7393787848],[-10564692.537817251,4443526.4766423833],[-10564942.855700323,4443527.249867497],[-10565193.783888135,4443528.0193419578],[-10565197.480058091,4443528.0271853497],[-10565445.331691323,4443528.7801752547],[-10565697.507019218,4443529.5401424468],[-10565702.421596788,4443529.5534006879],[-10565950.283140833,4443530.2949793842],[-10566203.667965321,4443531.0451878095],[-10566207.324289221,4443531.0522780549],[-10566457.663194571,4443531.78725651],[-10566712.265224546,4443532.527079301],[-10566966.062519088,4443533.0263664704],[-10567219.465958351,4443533.5177460704],[-10567472.475442264,4443534.0032245284],[-10567725.092272345,4443534.4833034649],[-10567977.268192677,4443534.9500816753],[-10568229.030334761,4443535.4103313582],[-10568480.356873468,4443535.86793957],[-10568731.197450517,4443536.3178892927],[-10568984.528106699,4443536.889775875],[-10569237.996221423,4443537.4567743689],[-10569491.601894898,4443538.0228976598],[-10569745.343625257,4443538.5823772149],[-10569999.20479317,4443539.1288172305],[-10570253.203019165,4443539.6701183524],[-10570507.32028258,4443540.2135535646],[-10570761.573903278,4443540.751849873],[-10571013.624408841,4443542.6852028137],[-10571265.714759864,4443544.6136662336],[-10571517.835445274,4443546.533352497],[-10571769.97405077,4443548.4457661929],[-10572022.163214149,4443550.3556732079],[-10572274.392022708,4443552.2578064352],[-10572526.659475395,4443554.1575581599],[-10572778.965171656,4443556.0502884854],[-10573031.545087099,4443558.0828477787],[-10573284.15854062,4443560.1070062118],[-10573536.825955851,4443562.1243943879],[-10573789.549935823,4443564.1362663722],[-10574042.325474793,4443566.1445031045],[-10574295.137154888,4443568.1457184386],[-10574548.010605736,4443570.1410414595],[-10574800.961044891,4443572.1292184172],[-10575055.707371578,4443574.8057630882],[-10575310.195298927,4443577.4725223584],[-10575378.064612824,4443578.18581519],[-10575564.426330714,4443580.3726364216],[-10575818.387814982,4443583.3469336992],[-10576072.11592925,4443586.3167130956],[-10576325.595555948,4443589.2759550111],[-10576578.811677732,4443592.2245337712],[-10576831.78291613,4443595.1633275086],[-10577084.10029112,4443597.6787508335],[-10577337.015856367,4443600.192555083],[-10577590.397158965,4443602.7062427504],[-10577844.292454623,4443605.219438469],[-10578098.697838742,4443607.7278784886],[-10578353.65535997,4443610.2362034414],[-10578609.136285052,4443612.7403999362],[-10578865.138711846,4443615.2429759949],[-10579117.89307015,4443616.7671012338],[-10579370.323954592,4443618.282818906],[-10579622.437772579,4443619.7912577521],[-10579874.249140989,4443621.2920418158],[-10580125.303935362,4443622.7783912597],[-10580376.289949976,4443624.2578424951],[-10580626.664258009,4443625.7330193231],[-10580877.899359617,4443627.2044495232],[-10581133.184330944,4443628.3343539899],[-10581387.275022971,4443629.4519478232],[-10581577.324768402,4443630.286121143],[-10581641.564128948,4443629.713794779],[-10581895.463741187,4443627.447760297],[-10582149.656692334,4443625.1739565879],[-10582403.739316335,4443622.8933797078],[-10582657.637627907,4443620.6138033122],[-10582878.50981283,4443618.6249514017],[-10582911.263569899,4443615.0890465565],[-10583127.102005553,4443622.6267142324],[-10583179.748287469,4443622.4251242345],[-10583191.418076137,4443623.2923677657],[-10583284.245171383,4443630.196199418],[-10583418.056492984,4443631.5837800512],[-10583451.617648492,4443631.9337495295],[-10583498.578277281,4443632.420270334],[-10583541.653717224,4443632.7291513365],[-10583702.95627784,4443633.9963323139],[-10583816.60961644,4443634.8864571722],[-10583922.807744324,4443635.6037695026],[-10583955.311676951,4443635.8275647741],[-10584195.867248258,4443637.4485375341],[-10584331.405354984,4443638.3602447556],[-10584426.970814049,4443639.5482571293],[-10584439.191426409,4443639.6997105461],[-10584650.99471678,4443642.3343082778],[-10584679.279779542,4443642.6384121319],[-10584929.341543229,4443645.3199643232],[-10585195.750990672,4443648.5678779669],[-10585442.426448887,4443651.568773509],[-10585455.78737792,4443651.7305304157],[-10585713.160889542,4443654.8562678164],[-10585954.294747273,4443657.7789402008],[-10585966.633996356,4443657.9229971599],[-10586206.103631714,4443660.8190552145],[-10586232.219183797,4443660.7816475444],[-10586464.554730022,4443660.4417953696],[-10586488.418782573,4443660.4053509105],[-10586734.189440485,4443660.0414092848],[-10586920.010482693,4443659.7609240655],[-10586971.830464788,4443663.0050277254],[-10587180.102288561,4443666.5489937402],[-10587211.607762463,4443666.4310474172],[-10587350.14961265,4443665.907818431],[-10587457.768876212,4443666.4109687274],[-10587476.203061437,4443666.4989533685],[-10587712.383068701,4443667.6036917232],[-10587974.679931737,4443668.8243909311],[-10587982.265890932,4443668.8607673626],[-10588243.330030318,4443670.0707854833],[-10588488.445654379,4443671.2011398431],[-10588502.871611366,4443671.2664806517],[-10588753.28915702,4443672.4138588067],[-10588994.509382684,4443673.5122916372],[-10589232.143518656,4443677.9722286239],[-10589292.223903449,4443679.0999222063],[-10589479.075755559,4443680.1872316813],[-10589503.798602261,4443680.3307565693],[-10589735.018784923,4443681.6761828903],[-10589999.815937547,4443683.2116909735],[-10590012.472251358,4443683.2837721892],[-10590271.150137842,4443684.7723961528],[-10590519.652674908,4443686.1976360017],[-10590532.702342886,4443686.2723576967],[-10590784.552144524,4443687.705432225],[-10591026.598926703,4443689.078515132],[-10591172.264821688,4443689.9209324718],[-10591397.58909505,4443691.2216112828],[-10591523.636737365,4443691.9476816617],[-10591667.414852284,4443692.7746409858],[-10591949.338878544,4443694.3905877601],[-10592026.414274342,4443694.8332533296],[-10592220.415479429,4443695.942762238],[-10592494.524781656,4443697.5022642305],[-10592535.795234773,4443697.7319849813],[-10592771.52231827,4443699.0601874748],[-10593051.464154223,4443700.6307036178],[-10593310.281703044,4443702.3963491367],[-10593560.470187783,4443704.0962553369],[-10593567.505310951,4443704.1396446936],[-10593823.186237309,4443705.8727553617],[-10594067.983596416,4443707.524912742],[-10594077.297851223,4443707.5850213347],[-10594329.949579092,4443709.2803320633],[-10594573.885843219,4443710.9122845614],[-10594581.078548346,4443710.9591880469],[-10594830.683757808,4443712.6198336007],[-10595078.648072265,4443714.2638968984],[-10595330.026639551,4443716.743462489],[-10595582.412970029,4443719.2260562172],[-10595585.871964196,4443719.2651183326],[-10595835.739485715,4443721.7151881717],[-10596090.029813789,4443724.203083735],[-10596094.353205932,4443724.2409071922],[-10596345.225787088,4443726.6902434928],[-10596601.379666032,4443729.1826877622],[-10596604.562941711,4443729.2115872791],[-10596858.454608038,4443731.6770299859],[-10597116.463628143,4443734.174649843],[-10597370.285409622,4443736.3719781144],[-10597619.776590271,4443738.5263415752],[-10597623.47085597,4443738.5612696018],[-10597876.034283701,4443740.7412705133],[-10598122.969812661,4443742.8668717714],[-10598127.961976923,4443742.9069644464],[-10598379.229607584,4443745.0613606377],[-10598626.086544944,4443747.170407882],[-10598629.859801752,4443747.1990671251],[-10598879.831935721,4443749.3286109967],[-10599129.16393017,4443751.4486131417],[-10599384.63041061,4443753.8758400744],[-10599639.691021977,4443756.2951597981],[-10599894.228929287,4443758.6985443672],[-10600148.293089125,4443761.0913870223],[-10600402.161809508,4443762.3365245638],[-10600655.438345879,4443763.5729987789],[-10600908.080749813,4443764.7995548891],[-10601160.107742902,4443766.0156915998],[-10601414.090409553,4443768.6187122799],[-10601667.948832247,4443771.2128276108],[-10601921.700431097,4443773.7974108476],[-10602154.608161774,4443776.1634202022],[-10602175.322178043,4443776.2411629185],[-10602428.387065142,4443777.1920882706],[-10602681.187346501,4443778.134732279],[-10602933.619602785,4443779.074736312],[-10603185.716872076,4443780.0069593694],[-10603208.753843129,4443777.5740165636],[-10603437.491113869,4443779.6609616578],[-10603689.498140207,4443781.95524769],[-10603941.792098619,4443784.2415174032],[-10604194.410933085,4443786.5229072236],[-10604447.498510314,4443788.8044382632],[-10604700.738664037,4443791.0819613235],[-10604954.121382602,4443793.3502090387],[-10605207.656677658,4443795.6144487616],[-10605457.886432007,4443796.7619710593],[-10605709.105532223,4443797.9090254651],[-10605714.804133255,4443797.9390675519],[-10605961.311175074,4443799.0573675474],[-10606214.523083333,4443800.2007277496],[-10606221.716315581,4443800.2293163119],[-10606467.880159587,4443801.3379478371],[-10606722.378457641,4443802.4768371396],[-10606728.351876965,4443802.5050075715],[-10606977.968019594,4443803.6140079815],[-10607234.713920791,4443804.7467037179],[-10607492.499430913,4443806.3565995824],[-10607743.757779993,4443807.919996622],[-10607748.86689819,4443807.9486389598],[-10608003.867682183,4443809.5294700833],[-10608251.386499161,4443811.0601328826],[-10608257.477955306,4443811.0995937428],[-10608510.441879489,4443812.6560258046],[-10608757.640425058,4443814.1684933463],[-10608762.29771984,4443814.192103954],[-10609013.042272801,4443815.7222496383],[-10609262.577925216,4443817.2376811681],[-10609514.715284234,4443818.0548234014],[-10609764.003242569,4443818.8561920114],[-10609766.892288998,4443818.8608057853],[-10610019.098627679,4443819.6677922076],[-10610267.473628271,4443820.456839391],[-10610271.325990621,4443820.4728980688],[-10610524.165061885,4443821.2613459136],[-10610771.76826817,4443822.0287966011],[-10610776.643415246,4443822.0487779304],[-10611028.74973754,4443822.8274186449],[-10611280.505854066,4443823.6005293382],[-10611533.132995971,4443826.1235645786],[-10611786.341511048,4443828.6453654729],[-10611791.31176859,4443828.6978298174],[-10612040.106670739,4443831.1742078839],[-10612294.435583165,4443833.6984294178],[-10612298.462948447,4443833.7403274029],[-10612548.401574943,4443836.2161172032],[-10612802.548976574,4443838.7272899086],[-10612805.555859704,4443838.7554837521],[-10613056.879489983,4443841.2265552012],[-10613311.390912699,4443843.7233183496],[-10613562.341806913,4443845.7652419284],[-10613813.697169421,4443847.8037931733],[-10614065.448790746,4443849.8427339271],[-10614317.595769824,4443851.8799322955],[-10614570.163135579,4443853.9081156598],[-10614823.20404966,4443855.9355625482],[-10615076.479935698,4443857.9580010083],[-10615330.06988531,4443859.9769386137],[-10615583.742038222,4443862.9390469752],[-10615837.46484952,4443865.89538828],[-10616091.24602809,4443868.842702264],[-10616345.078065261,4443871.7841237914],[-10616598.967068143,4443874.7225373723],[-10616852.907930791,4443877.6550585255],[-10617106.907861566,4443880.5825653234],[-10617126.067155477,4443880.8038093643],[-10617360.957749018,4443883.3989650542],[-10617609.408443429,4443885.3474971913],[-10617859.43426219,4443887.302980301],[-10617872.520420589,4443887.4031258496],[-10618110.955913445,4443889.2650354709],[-10618364.001329575,4443891.2370495647],[-10618380.508450659,4443891.3657792639],[-10618618.347952724,4443893.2096095914],[-10618829.722799215,4443894.8439841177],[-10618874.194822511,4443896.2909241319],[-10618886.604800146,4443896.6940243104],[-10618949.453914296,4443898.7407785673],[-10619131.486155318,4443898.168778534],[-10619390.251473363,4443897.349603449],[-10619652.961165294,4443897.1610987727],[-10619892.024167651,4443896.9836968035],[-10619910.144756425,4443896.9732825169],[-10620164.338884894,4443896.7816016907],[-10620395.938342325,4443896.6015612679],[-10620418.06967668,4443896.5881493865],[-10620658.109710651,4443896.3953563599],[-10620902.073689647,4443896.1954244832],[-10620905.827137202,4443896.1937975166],[-10621157.735317744,4443895.9759544544],[-10621410.390964037,4443895.7514906563],[-10621669.567471948,4443896.6340707866],[-10621912.389936602,4443897.4536384903],[-10621923.159911584,4443897.4857351137],[-10622173.125449996,4443898.3167085266],[-10622415.510507725,4443899.1160706999],[-10622421.425759422,4443899.1342063546],[-10622673.710083477,4443899.9598664567],[-10622919.77179971,4443900.7607337255],[-10622925.097268263,4443900.7779713152],[-10623174.819324182,4443901.5834784359],[-10623425.172210688,4443902.3841162045],[-10623659.073839722,4443902.8975152224],[-10623903.506366631,4443903.4265744844],[-10623935.855436649,4443903.4964051461],[-10624158.283075163,4443903.9745480856],[-10624413.992664175,4443904.5190421864],[-10624445.359095978,4443904.5862056389],[-10624564.515114613,4443904.8347037835],[-10624674.850821566,4443905.7439059587],[-10624936.220177609,4443907.8922647666],[-10624953.90446211,4443908.036584408],[-10625198.106632428,4443910.0433998769],[-10625460.521999672,4443912.19191931],[-10625715.418043224,4443912.3584153047],[-10625969.889194578,4443912.5191280879],[-10626223.927144077,4443912.6704206485],[-10626477.529188622,4443912.8156788088],[-10626730.68231312,4443912.9520178391],[-10626983.399232307,4443913.0825732704],[-10627235.67313833,4443913.2088497449],[-10627487.520049715,4443913.3287159214],[-10627743.054734418,4443913.7225912567],[-10627993.58852654,4443914.1018735794],[-10627998.01034832,4443914.1100510173],[-10628252.382786635,4443914.4863296952],[-10628499.814485455,4443914.8461932335],[-10628506.182661667,4443914.8536849488],[-10628759.337489503,4443915.2182590868],[-10629006.474246556,4443915.5670767259],[-10629011.898429362,4443915.57528851],[-10629263.85747198,4443915.9257761873],[-10629515.216920026,4443916.2684681509],[-10629765.937331822,4443917.2342709703],[-10630017.120579608,4443918.1955748769],[-10630268.765662182,4443919.1469874522],[-10630520.872079007,4443920.0935248472],[-10630773.419606715,4443921.0463473313],[-10631026.432172962,4443921.9929153165],[-10631039.618246466,4443922.0393904988],[-10631279.878921876,4443922.5644597113],[-10631533.768572098,4443923.1134503307],[-10631786.698339237,4443923.6463913247],[-10632039.985009018,4443924.1751933461],[-10632044.484685756,4443924.1830844143],[-10632293.645500502,4443924.696094228],[-10632547.674507737,4443925.2148625571],[-10632553.610204663,4443925.226763566],[-10632801.60109935,4443925.7225956479],[-10633056.210461257,4443926.2254366325],[-10633061.261560164,4443926.2398475772],[-10633311.501792606,4443926.734546504],[-10633567.477295808,4443927.2341243196],[-10633821.843986263,4443928.125342885],[-10634070.407329021,4443928.9906150755],[-10634075.516693685,4443929.0075339908],[-10634328.503126746,4443929.8783149347],[-10634574.832348729,4443930.7188875237],[-10634580.805087501,4443930.7406954085],[-10634833.644154221,4443931.6020717183],[-10635080.730029825,4443932.4364982946],[-10635085.819471993,4443932.4510345804],[-10635337.425647594,4443933.2939793989],[-10635588.200785512,4443934.1265175669],[-10635841.020125672,4443934.2821190255],[-10636094.06091563,4443934.4300703751],[-10636347.130437972,4443934.5733817331],[-10636600.294166557,4443934.7095448589],[-10636853.034317223,4443934.8424483817],[-10637105.38843232,4443934.9688316975],[-10637189.520953674,4443935.0084095541],[-10637357.385944521,4443935.0027927319],[-10637608.915828833,4443934.9880978419],[-10637862.454383116,4443935.5926457681],[-10638115.788706908,4443936.1875381041],[-10638217.406657074,4443936.4225850906],[-10638368.983181281,4443938.1813175986],[-10638617.737151023,4443941.0638487181],[-10638622.079850903,4443941.1138760699],[-10638874.774166452,4443944.0317642614],[-10639124.041114815,4443946.903261085],[-10639127.066728594,4443946.933351893],[-10639281.151582817,4443948.7098892378],[-10639379.205944404,4443954.3155243844],[-10639631.153185332,4443968.718116683],[-10639973.04623203,4443987.5220117541],[-10640314.936875645,4444006.3147826083],[-10640391.383049557,4444010.511942436],[-10640656.837135788,4444026.1166035393],[-10640998.736996865,4444046.20489207],[-10641157.732435644,4444055.5368961021],[-10641340.785637785,4444068.3742108857],[-10641373.534099165,4444070.6707061799],[-10641679.345326031,4444087.8389481623],[-10641682.740157293,4444088.0275523821],[-10642024.608376324,4444107.2072734246],[-10642366.376582103,4444126.3684727289],[-10642618.734911552,4444128.3225509636],[-10642871.326203786,4444130.2718638843],[-10643124.158067403,4444132.2186688045],[-10643377.239912989,4444134.158827275],[-10643629.925311215,4444136.0894562341],[-10643882.996244365,4444138.015695774],[-10644136.408162184,4444139.9389254712],[-10644390.128027385,4444141.8575150967],[-10644642.520204898,4444145.5346921319],[-10644894.938511819,4444149.2082340866],[-10644955.169471219,4444150.0868402366],[-10645147.360615943,4444151.6724758549],[-10645399.749880742,4444153.7510912828],[-10645652.714294381,4444155.8236866845],[-10645905.910369324,4444157.8912660088],[-10646159.303366428,4444159.9587202044],[-10646412.894887455,4444162.0211583981],[-10646664.944471454,4444164.5429677889],[-10646916.926078688,4444167.0573792271],[-10647168.862735162,4444169.5677786423],[-10647420.760848083,4444172.0731627801],[-10647672.334695058,4444174.5653807018],[-10647923.986029405,4444177.0544642033],[-10648175.683816113,4444179.5399117004],[-10648427.449279109,4444182.0184625695],[-10648679.386032516,4444184.0070459992],[-10648759.172953922,4444184.6355540222],[-10648931.134077175,4444186.7256290521],[-10649182.722343488,4444189.7835670132],[-10649434.131607732,4444192.8298437111],[-10649594.109109787,4444194.7646902874],[-10649682.570405364,4444193.2140944907],[-10649685.833787544,4444193.2744091032],[-10649937.414453929,4444197.8619505009],[-10650189.023552289,4444202.4424715927],[-10650440.462058078,4444207.0145932976],[-10650691.638555961,4444209.4349657875],[-10650943.19978787,4444211.8528302163],[-10651194.859030269,4444214.2615405321],[-10651446.704382597,4444216.6667399276],[-10651698.590280598,4444219.0639139758],[-10651950.623044237,4444221.4565739036],[-10651957.853101764,4444221.5240290491],[-10652202.762428137,4444223.8472279478],[-10652454.992013756,4444226.2353745047],[-10652704.678035438,4444229.6518758815],[-10652954.09715591,4444233.0596007574],[-10653203.255682284,4444236.459928615],[-10653452.160722578,4444239.8494733954],[-10653700.79996291,4444243.2332514469],[-10653949.164292974,4444246.6052431585],[-10654197.264524978,4444249.9656993318],[-10654445.107166259,4444253.3157486077],[-10654698.044233905,4444252.8691641735],[-10654950.931645487,4444252.4150552787],[-10655203.769501142,4444251.9574349867],[-10655456.559102323,4444251.4919140004],[-10655708.70037202,4444251.0232590493],[-10655961.183727628,4444250.5460755732],[-10656214.023685519,4444250.0592348687],[-10656467.224150101,4444249.5638656011],[-10656719.691092545,4444250.0475640651],[-10656967.392358145,4444250.516473894],[-10656971.656469079,4444250.5268743038],[-10657223.127487795,4444250.9942717841],[-10657469.467317281,4444251.4465051377],[-10657474.105249973,4444251.4565285668],[-10657725.575067265,4444251.9138935087],[-10657973.547038123,4444252.3582229996],[-10657976.94717427,4444252.362730925],[-10658228.22978029,4444252.8121956456],[-10658479.415076489,4444253.255139377],[-10658730.951351626,4444250.6044964101],[-10658869.804601409,4444249.1395687927],[-10658982.420635153,4444249.5507495357],[-10659233.880304644,4444250.4565943414],[-10659485.374613637,4444251.357546702],[-10659736.854306364,4444252.2577475263],[-10659988.348515784,4444253.1492946316],[-10660239.876663892,4444254.0334411338],[-10660491.441053286,4444254.911064784],[-10660741.964778055,4444257.8074486014],[-10660992.634469045,4444260.6995625235],[-10661243.457935106,4444263.5875315638],[-10661494.437378714,4444266.4707285576],[-10661745.556481397,4444269.3482764522],[-10661996.829259019,4444272.221679464],[-10662248.239893682,4444275.0914400015],[-10662499.793791488,4444277.9555512341],[-10662751.183398355,4444280.0944294827],[-10662999.594132213,4444282.2036078908],[-10663002.874347197,4444282.2341714799],[-10663254.840608437,4444284.3628646173],[-10663503.343147529,4444286.4572416414],[-10663507.114618897,4444286.4907908598],[-10663759.469821915,4444288.6084302543],[-10664009.46985824,4444290.6998504698],[-10664012.201051464,4444290.7247977359],[-10664265.302000418,4444292.8412731392],[-10664518.78037747,4444294.9545954233],[-10664779.743719334,4444295.7390854554],[-10665040.89727683,4444296.5175466239],[-10665046.695343187,4444296.5370755326],[-10665302.226633672,4444297.2952468442],[-10665563.683134682,4444298.0639114743],[-10665571.720236704,4444298.0825775592],[-10665825.623784188,4444298.8265327439],[-10665836.335915744,4444298.8568554828],[-10666059.740554461,4444302.573144909],[-10666087.854896586,4444302.8850325849],[-10666093.925972622,4444302.9495701529],[-10666350.399553461,4444305.7881187703],[-10666613.256865395,4444308.6896858672],[-10666864.429423381,4444309.5293396972],[-10667115.480644166,4444310.3621021574],[-10667366.418036303,4444311.1933654891],[-10667617.234191332,4444312.0172358025],[-10667867.925104709,4444312.8327100053],[-10668118.496482927,4444313.6438009283],[-10668368.95142947,4444314.446996944],[-10668619.286440371,4444315.2431760943],[-10668871.618332302,4444317.6440033307],[-10669123.902971422,4444320.0375599992],[-10669376.151169972,4444322.4229676938],[-10669628.361226033,4444324.8021076424],[-10669880.523128251,4444327.1729737651],[-10670132.645886827,4444329.5370705416],[-10670384.717087755,4444331.8974084184],[-10670636.733327137,4444334.2516047703],[-10670890.301230779,4444337.070872332],[-10671143.605336498,4444339.8820023872],[-10671396.600693358,4444342.6838684287],[-10671649.301717693,4444345.4768459834],[-10671901.721424235,4444348.2605581619],[-10672153.857610464,4444351.0342526082],[-10672405.689052377,4444353.8006893797],[-10672657.195627132,4444356.5561071401],[-10672785.286280928,4444355.8081168113],[-10672907.111870093,4444357.1571751405],[-10673156.954561971,4444359.9150592005],[-10673406.76021268,4444362.6646690974],[-10673656.55945692,4444365.4073828198],[-10673906.324162912,4444368.1474657161],[-10674156.048023442,4444370.8806541236],[-10674405.74785755,4444373.6075742692],[-10674655.418058876,4444376.3269723132],[-10674905.848045353,4444380.5339587852],[-10675156.892429091,4444384.7443033494],[-10675160.447756639,4444384.8072099192],[-10675408.546905354,4444388.9661579505],[-10675660.804065578,4444393.1884867894],[-10675664.732816085,4444393.2516258536],[-10675913.657502534,4444397.4121680595],[-10676167.11242217,4444401.6403367957],[-10676170.020816851,4444401.687348146],[-10676421.176232964,4444405.87738204],[-10676675.837021384,4444410.1210469697],[-10676928.864953911,4444413.9016502313],[-10677181.95415701,4444417.6777375508],[-10677186.06000811,4444417.7347229291],[-10677435.093918415,4444421.44191017],[-10677688.286641035,4444425.2055804143],[-10677693.76664892,4444425.2867026012],[-10677941.534827681,4444428.9667415703],[-10678194.836275794,4444432.7223838661],[-10678198.962349877,4444432.7794937789],[-10678448.188482441,4444436.4669892993],[-10678701.602059811,4444440.2099632174],[-10678953.873898774,4444441.4542896049],[-10679200.458796639,4444442.6645335723],[-10679205.569084847,4444442.6877338821],[-10679456.695727205,4444443.9102956597],[-10679700.377136905,4444445.0918385144],[-10679707.27404891,4444445.1305019241],[-10679957.244382154,4444446.3365669074],[-10680201.651214058,4444447.5091704],[-10680206.642567704,4444447.5381455431],[-10680455.459194778,4444448.7287168829],[-10680703.691660464,4444449.9104130436],[-10680954.229959087,4444452.1467110533],[-10681196.976832494,4444454.3060143366],[-10681205.031356588,4444454.3906470323],[-10681456.141213622,4444457.1000983343],[-10681707.566028148,4444459.8042679038],[-10681959.183561748,4444462.5037888018],[-10682049.354007429,4444463.4680318804],[-10682211.138548033,4444463.7389810774],[-10682463.311564622,4444464.1591088595],[-10682715.693417776,4444464.5744607691],[-10682965.736257536,4444466.6653103586],[-10683215.546334216,4444468.7495252732],[-10683465.104025468,4444470.8213375043],[-10683714.416739756,4444472.8850106867],[-10683963.281847645,4444474.9429376433],[-10684212.049345518,4444476.9947248818],[-10684460.71743123,4444479.0357322404],[-10684709.231442915,4444481.0684706336],[-10684960.848482933,4444483.6854793495],[-10685212.593869081,4444486.2979679145],[-10685464.482117862,4444488.9089455148],[-10685716.507222421,4444491.5160295954],[-10685969.148225399,4444494.1223318931],[-10686222.307616301,4444496.7258506007],[-10686475.287404371,4444499.3173395405],[-10686556.515223414,4444500.1475859424],[-10686700.0507864,4444504.0673193308],[-10686728.33100787,4444502.4494706932],[-10686981.494832318,4444505.1807394307],[-10687229.52208644,4444507.8532282831],[-10687234.098905664,4444507.9070375944],[-10687486.143728314,4444510.6212166194],[-10687731.970724009,4444513.2634091238],[-10687737.629300291,4444513.3239035364],[-10687988.037519507,4444516.0107506812],[-10688235.068212684,4444518.6537255729],[-10688238.251312125,4444518.6933502434],[-10688487.86000062,4444521.3555570552],[-10688738.028739259,4444524.0173432296],[-10688993.074759435,4444527.343551957],[-10689046.035111008,4444528.0324399378],[-10689203.819264058,4444528.9070149763],[-10689248.015717844,4444528.9450883195],[-10689255.817683216,4444528.9485978428],[-10689388.387921907,4444529.043505813],[-10689503.940118581,4444530.5467965221],[-10689559.895350594,4444531.2735688565],[-10689760.442272205,4444531.3411736265],[-10689772.489169966,4444531.349984454],[-10689803.125967788,4444531.3595536929],[-10689867.960252643,4444533.7069522487],[-10690018.472047558,4444538.7355508376],[-10690166.800403221,4444543.6910865894],[-10690277.577954622,4444545.3615643764],[-10690286.692848338,4444545.495774189],[-10690537.73031644,4444549.2812014092],[-10690729.467762522,4444552.169438119],[-10690798.853768691,4444551.5126965828],[-10691049.679147579,4444553.4055284075],[-10691296.154971387,4444555.2587044686],[-10691299.966600897,4444555.2921333518],[-10691549.720934149,4444557.1689994326],[-10691793.829105612,4444558.9970336659],[-10691798.937041368,4444559.0337441992],[-10692047.601506976,4444560.8869958064],[-10692291.34655541,4444562.6998850638],[-10692295.727146022,4444562.7357763657],[-10692543.302645234,4444564.5743177589],[-10692790.337215295,4444566.4009888666],[-10693040.884840272,4444566.9617024204],[-10693291.923936065,4444567.5177360894],[-10693543.450798284,4444568.0645752773],[-10693795.497063775,4444568.6063560909],[-10694048.018080676,4444569.1439600214],[-10694301.016351877,4444569.6766343871],[-10694554.513402432,4444570.206509483],[-10694808.499621129,4444570.7307015574],[-10695061.933322849,4444572.5051877229],[-10695314.960051117,4444574.2700502127],[-10695567.573398536,4444576.0267944969],[-10695819.770762054,4444577.7745428924],[-10696071.887431262,4444579.5138954287],[-10696323.364656946,4444581.2443954824],[-10696574.212350523,4444582.9609003048],[-10696824.442726281,4444584.6675475463],[-10697073.782367291,4444586.4039900471],[-10697323.515064547,4444588.1371404426],[-10697573.660540976,4444589.8669971488],[-10697824.217795381,4444591.5919298511],[-10698074.57621829,4444593.3118623747],[-10698325.118654516,4444595.0255097095],[-10698575.829786226,4444596.7313681031],[-10698826.707110547,4444598.4311935697],[-10698935.700976271,4444599.8670502063],[-10699078.19467329,4444601.7513205288],[-10699329.810884837,4444605.0745736314],[-10699581.561451741,4444608.3963121064],[-10699833.447274996,4444611.7139021689],[-10700084.123892257,4444615.0140329078],[-10700335.80537644,4444618.3197274208],[-10700338.693232473,4444618.357495117],[-10700588.512952212,4444621.6314856578],[-10700615.028866742,4444621.9777488392],[-10700842.250854647,4444626.6628446002],[-10701095.141414952,4444628.4639737196],[-10701347.017796308,4444630.2536468534],[-10701597.875793718,4444632.0248411223],[-10701847.718811238,4444633.7833253155],[-10702099.234471988,4444635.5535893766],[-10702350.325739071,4444637.3134786272],[-10702601.02795355,4444639.0618614508],[-10702851.341315717,4444640.8022494512],[-10703102.944675911,4444642.5183287747],[-10703354.735853901,4444644.2311325138],[-10703606.718053289,4444645.9340134384],[-10703858.917404551,4444647.6332401559],[-10704110.525167903,4444649.3208513483],[-10704361.841692386,4444651.0010868954],[-10704612.859569367,4444652.6724423878],[-10704863.585706893,4444654.335920603],[-10705115.638209146,4444657.5234586801],[-10705367.9144706,4444660.7058377815],[-10705620.424102463,4444663.8855654364],[-10705873.168105874,4444667.0615128204],[-10706125.91871614,4444670.2284308728],[-10706378.815094987,4444673.3901962237],[-10706631.841524223,4444676.5506980028],[-10706884.972273905,4444679.7065520808],[-10707137.675819995,4444682.4227361232],[-10707389.911922265,4444685.1304304162],[-10707641.67907895,4444687.8281300953],[-10707892.966076998,4444690.5142056616],[-10708143.785330849,4444693.1886561094],[-10708394.135438871,4444695.8514815308],[-10708644.021807423,4444698.5078235054],[-10708893.438129095,4444701.1511609564],[-10709141.223205781,4444700.2915275032],[-10709145.453621421,4444700.3296889486],[-10709397.464952206,4444702.6054760069],[-10709649.497707378,4444704.880634835],[-10709894.603913516,4444707.0862454334],[-10709901.598841213,4444707.1349697625],[-10710153.732205529,4444708.9133508317],[-10710405.873078087,4444710.6852100482],[-10710526.7300064,4444711.5309254928],[-10710658.058809891,4444713.0186768463],[-10710910.306219744,4444715.8714852147],[-10711163.098244432,4444717.4107727977],[-10711415.730583163,4444718.9433010919],[-10711668.146470016,4444720.4710813239],[-10711920.369432285,4444721.9914778713],[-10712172.391260432,4444723.5034880582],[-10712424.221365379,4444725.0066094641],[-10712675.831914857,4444726.5054847011],[-10712927.18977033,4444727.9968556454],[-10713180.265233586,4444730.5082203094],[-10713433.710025353,4444733.0161696738],[-10713687.542567071,4444735.5247155363],[-10713941.781980947,4444738.0318497289],[-10714195.020130679,4444740.5153617132],[-10714448.027311444,4444742.9921205528],[-10714530.801590558,4444743.7990204692],[-10714700.817809664,4444744.9356676377],[-10714953.234043246,4444746.6182385935],[-10715204.049549745,4444746.6360150529],[-10715454.788264653,4444746.6477764761],[-10715705.373296322,4444746.6520227883],[-10715955.832477929,4444746.6496301377],[-10716206.053175293,4444746.6438665437],[-10716456.108375339,4444746.6307140179],[-10716705.989567967,4444746.6136847623],[-10716955.697053518,4444746.5910229217],[-10717206.874194194,4444746.8992397785],[-10717451.440055761,4444747.1928307563],[-10717457.650156651,4444747.1998320268],[-10717708.015830047,4444747.4948069071],[-10717949.677730639,4444747.7750392659],[-10717957.970313355,4444747.7876761146],[-10718212.650127918,4444748.0744731771],[-10718450.372032812,4444748.3368983762],[-10718463.499277232,4444748.3548688861],[-10718710.550199887,4444748.6227157852],[-10718953.64000177,4444748.8790276516],[-10719197.173738323,4444749.6649433812],[-10719444.7615062,4444750.458124212],[-10719462.387211967,4444750.5119260876],[-10719696.543572586,4444751.2606932288],[-10719952.408304421,4444752.071654262],[-10719966.732775852,4444752.1133770943],[-10720203.816624984,4444752.8524251087],[-10720455.948207373,4444753.6313938694],[-10720466.697217694,4444753.6640652195],[-10720708.755995529,4444754.4100685623],[-10720962.279836908,4444755.186063733],[-10721215.102115825,4444753.3827936621],[-10721460.188276045,4444751.6305626072],[-10721467.344103357,4444751.5761747099],[-10721705.813278491,4444749.8656300893],[-10721719.032031251,4444749.8147412632],[-10721960.71464389,4444748.8754256209],[-10721970.187732967,4444748.8405794585],[-10722106.148156753,4444748.3121351292],[-10722220.318215227,4444748.0894733723],[-10722463.762131643,4444747.6112000626],[-10722470.208113443,4444747.5996246133],[-10722719.900676528,4444747.1085343268],[-10722969.398407437,4444746.6124398671],[-10723221.33285594,4444747.5143288122],[-10723473.165983528,4444748.410329855],[-10723724.904798528,4444749.2960529793],[-10723976.542492842,4444750.1748848548],[-10724228.885127151,4444751.0530445967],[-10724481.449725844,4444751.9274277641],[-10724734.240894418,4444752.7984103169],[-10724987.262237124,4444753.6619787049],[-10725240.435271576,4444755.7177452138],[-10725494.713723166,4444757.7750718398],[-10725499.272055835,4444757.8125298321],[-10725750.117415568,4444759.8389739646],[-10726006.6274262,4444761.9068190642],[-10726012.71748437,4444761.9553409098],[-10726264.283101918,4444763.9753437964],[-10726523.059513044,4444766.0466818297],[-10726527.637268828,4444766.0827590432],[-10726782.965369927,4444768.11945304],[-10727043.991461616,4444770.1951630153],[-10727297.783737138,4444772.8209129972],[-10727551.636384252,4444775.4417687608],[-10727556.233262902,4444775.488254372],[-10727805.552406508,4444778.0523371985],[-10728059.537410626,4444780.6583870919],[-10728065.68683959,4444780.71706401],[-10728313.593098536,4444783.2482545795],[-10728447.197430342,4444784.6097394712],[-10728567.70575713,4444786.1995704537],[-10728572.322659789,4444786.2662469512],[-10728821.88750107,4444789.5484543443],[-10729076.147237478,4444792.8855454158],[-10729327.039537352,4444793.4601702718],[-10729573.952094264,4444794.0192478821],[-10729577.665820068,4444794.0269110054],[-10729659.549003929,4444794.2084059631],[-10729828.021379156,4444794.4802922951],[-10730073.138094407,4444794.8701723805],[-10730078.108617943,4444794.8742432343],[-10730327.916723937,4444795.2559212707],[-10730573.719456485,4444795.6266940888],[-10730577.45280567,4444795.6332271984],[-10730826.71536136,4444796.007415303],[-10731075.697382644,4444796.3750997595],[-10731328.229724117,4444795.3799012955],[-10731580.657841453,4444794.3790657492],[-10731832.965615429,4444793.3708383208],[-10732085.127215266,4444792.35634943],[-10732208.173448965,4444791.8629700243],[-10732337.219840989,4444792.3805680331],[-10732424.044314697,4444792.7271711323],[-10732589.192533992,4444793.744874524],[-10732841.071316261,4444795.2870286284],[-10733092.850980196,4444796.8246744461],[-10733306.428595621,4444795.4128299532],[-10733343.344591586,4444795.7099585095],[-10733594.05728728,4444797.7204951812],[-10733683.122133343,4444798.4277797956],[-10733844.971106291,4444797.5294486051],[-10734096.07804667,4444796.1293693995],[-10734347.387828877,4444794.7212505555],[-10734598.870317016,4444793.3059719224],[-10734850.597997427,4444791.877885092],[-10734921.657478057,4444791.4741260549],[-10735102.412294099,4444792.2778709065],[-10735355.964579908,4444795.2495469628],[-10735609.725914465,4444798.217448228],[-10735612.574509457,4444798.2536365166],[-10735863.534204621,4444801.181961325],[-10736117.452024905,4444804.1386926482],[-10736121.224520981,4444804.1833500909],[-10736371.458550515,4444807.0885214433],[-10736625.553681327,4444810.0318239601],[-10736628.402176199,4444810.0693918979],[-10736879.750332788,4444812.9748702226],[-10737134.047603752,4444815.9081285782],[-10737387.110692233,4444817.1043112632],[-10737639.91867651,4444818.2924838476],[-10737892.470655505,4444819.4703888632],[-10738144.767229941,4444820.6414125329],[-10738396.56741262,4444821.8030619752],[-10738648.260968056,4444822.957695106],[-10738899.79743612,4444824.1069456013],[-10739151.303367618,4444825.249049481],[-10739150.727723114,4445076.8645204417],[-10739150.149879731,4445329.0861224784],[-10739150.14311084,4445335.480714485],[-10739149.578347588,4445581.9095085757],[-10739149.276295723,4445713.8071782766],[-10739149.323496524,4445835.3423532946],[-10739149.319936654,4445842.5850291261],[-10739149.414456859,4446088.675754426],[-10739149.510629941,4446343.0844298769],[-10739149.505162479,4446349.4595646299],[-10739149.607209519,4446598.4821558986],[-10739149.712206885,4446855.1547595281],[-10739149.180621363,4447107.8212838713],[-10739148.659220411,4447355.9845033959],[-10739148.64993692,4447360.4849331947],[-10739148.113743413,4447612.7361118514],[-10739147.650324188,4447830.3088466888],[-10739147.397901813,4447859.4103837619],[-10739147.358585929,4447864.463401326],[-10739145.055788659,4448116.7377452869],[-10739142.785307672,4448365.3525519678],[-10739142.753592633,4448369.0628921892],[-10739140.449694855,4448621.3949340591],[-10739138.144796954,4448873.8652337883],[-10739137.65216673,4449127.8860851638],[-10739137.160740048,4449382.2486714106],[-10739136.663402036,4449635.9069367182],[-10739136.166662546,4449889.2048894363],[-10739135.6712193,4450141.63380579],[-10739135.175475601,4450394.0437744427],[-10739134.670821236,4450646.4413200039],[-10739134.165065452,4450898.8185353326],[-10739133.694866585,4451153.5735784294],[-10739133.221769985,4451409.2591579119],[-10739132.761573767,4451662.498299364],[-10739132.303872408,4451914.4105524821],[-10739132.306499496,4451918.3216830259],[-10739132.179528086,4451980.2975678612],[-10739131.529007958,4452168.6629596492],[-10739130.649820307,4452423.0600465927],[-10739130.631716724,4452425.9921561303],[-10739130.070978718,4452593.9874711605],[-10739129.729284406,4452677.6033260282],[-10739128.688406272,4452932.2911818903],[-10739129.145398805,4453185.0835015513],[-10739129.593055367,4453433.8312228322],[-10739129.599585649,4453437.5056830766],[-10739130.053069327,4453689.5628463523],[-10739130.497710142,4453936.3544476712],[-10739130.500143044,4453941.252831812],[-10739130.957927203,4454192.5820142198],[-10739131.407175278,4454439.6927849306],[-10739131.411003418,4454443.5439668037],[-10739131.860873528,4454694.1448146133],[-10739132.31034082,4454944.3788827034],[-10739131.459682394,4455197.991601347],[-10739130.608723141,4455451.5176285151],[-10739129.750755109,4455704.9608504567],[-10739128.893887969,4455958.3270360772],[-10739128.045625294,4456210.7413292732],[-10739127.372851048,4456410.8618559688],[-10739127.621163938,4456462.7186650233],[-10739128.066427456,4456549.9141850835],[-10739127.236246983,4456714.266192886],[-10739125.969178516,4456965.3791680494],[-10739125.674278632,4457218.556178513],[-10739125.381282505,4457471.9785869569],[-10739125.368614703,4457479.6944646817],[-10739125.086685942,4457725.6416396843],[-10739124.794293454,4457979.5413355436],[-10739124.79471847,4457983.543491561],[-10739124.505106267,4458233.6866075899],[-10739124.20961309,4458488.0777253872],[-10739124.210232224,4458491.0808367105],[-10739123.919627925,4458742.7075478788],[-10739123.625639459,4458997.5779768024],[-10739121.416972136,4459251.8980640331],[-10739119.195497733,4459507.5129719125],[-10739116.990837038,4459762.067388312],[-10739114.78867784,4460016.3463492701],[-10739112.586316001,4460270.1973557901],[-10739110.386256028,4460523.8715846082],[-10739108.183190381,4460777.167047631],[-10739105.97842432,4461030.6896595294],[-10739105.929720076,4461284.2500061849],[-10739105.881783575,4461532.4007654954],[-10739105.87300057,4461536.8770866664],[-10739105.83870575,4461789.1916406779],[-10739105.802971054,4462035.2816325184],[-10739105.810715191,4462040.9847377455],[-10739105.766103145,4462292.4984211642],[-10739105.720961722,4462539.3247665912],[-10739105.716382569,4462543.6143289423],[-10739105.710980114,4462609.5518197939],[-10739106.757554984,4462794.3112600548],[-10739108.1763731,4463044.5793032609],[-10739107.968785807,4463299.1233974509],[-10739107.761498675,4463553.6373199243],[-10739107.546602262,4463808.1132792346],[-10739107.331305131,4464062.5517748734],[-10739107.130218815,4464316.0028972914],[-10739106.92832887,4464569.0205758456],[-10739106.724233843,4464821.6379524525],[-10739106.518934922,4465073.8551240824],[-10739104.765603479,4465326.9076543422],[-10739103.011872312,4465580.0562284309],[-10739101.263448369,4465833.32824843],[-10739099.516026372,4466086.6980869053],[-10739097.763799349,4466340.1509219324],[-10739096.012173926,4466593.7216972494],[-10739095.995771775,4466596.5482791131],[-10739094.263553057,4466847.4277650137],[-10739092.647569269,4467081.4685567804],[-10739091.100254344,4467101.2552696317],[-10739093.466839217,4467162.7110964423],[-10739094.808398359,4467353.2315965397],[-10739096.587456172,4467605.7359157531],[-10739098.372424126,4467858.7891393453],[-10739100.162601545,4468112.4184569316],[-10739100.617048645,4468179.0248581031],[-10739097.063077563,4468366.0319182025],[-10739092.224096561,4468620.6610802608],[-10739087.40493441,4468874.4450002825],[-10739082.577365072,4469128.5999528999],[-10739084.29867864,4469385.105620998],[-10739085.956959963,4469632.2674260372],[-10739086.000259439,4469640.1220553899],[-10739087.702635868,4469894.3085241811],[-10739089.329553777,4470137.2659261227],[-10739089.406707708,4470147.4572805669],[-10739091.093153248,4470399.761736338],[-10739092.723078076,4470643.3385373065],[-10739092.766777895,4470651.174935488],[-10739094.446003389,4470901.6790857008],[-10739096.119315969,4471151.2566464311],[-10739096.202978417,4471406.539831291],[-10739096.284941262,4471662.2237595255],[-10739096.372303843,4471916.8273740308],[-10739096.459262168,4472170.8211255996],[-10739096.537307901,4472424.4920479078],[-10739096.616455471,4472678.2572252955],[-10739096.698599003,4472930.7911166288],[-10739096.770616882,4473148.4349608952],[-10739095.997312335,4473183.069787344],[-10739091.995226353,4473437.4495630115],[-10739088.004349908,4473691.1481959606],[-10739084.020783938,4473945.0745317563],[-10739083.213842578,4473996.4977313429],[-10739082.379371332,4474016.0155436527],[-10739078.653012028,4474198.9672269514],[-10739078.566992164,4474203.379508676],[-10739082.842543039,4474453.5275407983],[-10739087.126902219,4474704.2122736592],[-10739087.186060183,4474707.2018902106],[-10739091.504149335,4474960.3615121627],[-10739095.793311307,4475211.7829187745],[-10739096.91131161,4475464.0709850071],[-10739098.037814608,4475718.1825590506],[-10739098.053015338,4475722.4381141672],[-10739099.168720793,4475972.8012764314],[-10739100.306931656,4476228.4080728795],[-10739100.325536821,4476232.5648363791],[-10739101.436734378,4476483.5732460413],[-10739102.568437934,4476739.0958265206],[-10739102.574530127,4476742.7970292168],[-10739103.699539218,4476995.0101840077],[-10739104.841151739,4477251.2328132158],[-10739103.987099355,4477507.4039195823],[-10739103.130940957,4477764.4466998512],[-10739102.274585644,4478020.6777218031],[-10739101.420133544,4478276.676306407],[-10739100.572593803,4478531.6555674877],[-10739099.72545672,4478786.1016059835],[-10739099.331621887,4478901.3889052486],[-10739099.629319241,4479038.2013346124],[-10739100.185843375,4479293.236707082],[-10739099.694852775,4479541.6907057324],[-10739099.198845865,4479792.7056189347],[-10739098.704739325,4480044.1867017215],[-10739098.211635543,4480295.288345539],[-10739097.715213528,4480549.9168042904],[-10739097.225715078,4480800.7673690179],[-10739097.229808437,4480803.5995253101],[-10739096.72518431,4481056.3648838261],[-10739096.222766548,4481308.2120575272],[-10739094.228987673,4481558.4823393859],[-10739092.219382018,4481810.731644528],[-10739092.189832453,4481814.3146901075],[-10739090.186540771,4482064.9703104598],[-10739088.140175441,4482321.1950826412],[-10739086.118851595,4482574.5159240598],[-10739084.098629523,4482827.7239165101],[-10739082.068094956,4483081.0028270306],[-10739080.036559317,4483334.2580016274],[-10739079.336096603,4483588.6653280752],[-10739078.63733675,4483842.8708492406],[-10739077.938378116,4484096.7236145232],[-10739077.243025053,4484350.2604834866],[-10739076.546872396,4484603.4711105842],[-10739075.853023676,4484856.3877010839],[-10739075.159076162,4485108.9849286675],[-10739074.466431318,4485361.3097311519],[-10739074.152526949,4485615.7140672244],[-10739073.83822293,4485869.9198336191],[-10739073.828092352,4485874.497032295],[-10739073.529326117,4486123.9362071082],[-10739073.22583659,4486377.7425244479],[-10739073.224410137,4486383.8441136656],[-10739072.915538505,4486631.6737061609],[-10739072.600136068,4486885.1925932122],[-10739072.597015407,4486889.373967954],[-10739072.295548197,4487138.2856814684],[-10739071.987958152,4487391.0429770052],[-10739073.574210506,4487644.3685166966],[-10739075.144956108,4487894.833982165],[-10739075.169173395,4487897.64815096],[-10739076.748718208,4488150.8875448471],[-10739078.300948568,4488399.7189626629],[-10739078.334570644,4488404.0995399617],[-10739079.911715288,4488656.6970044896],[-10739081.46464745,4488905.3029944515],[-10739081.492465466,4488908.989460703],[-10739083.064306224,4489161.0116484175],[-10739084.03642655,4489316.7928541787],[-10739084.060666166,4489412.7231477052],[-10739083.742851855,4489668.5383311231],[-10739083.424834931,4489924.9422822297],[-10739083.407982554,4489932.9309730688],[-10739083.110820439,4490181.9224482356],[-10739082.803511545,4490439.4870588584],[-10739082.784147438,4490449.636374414],[-10739082.476276563,4490697.6689091772],[-10739082.155546939,4490956.435795879],[-10739082.136691948,4490964.4840976987],[-10739081.834214212,4491215.7960766703],[-10739081.521189034,4491475.7300173482],[-10739083.022925559,4491511.1075030481],[-10739083.674116472,4491728.3356602909],[-10739084.435790055,4491982.1351813329],[-10739085.211082051,4492235.3826043047],[-10739085.986574119,4492488.6777074691],[-10739086.744748451,4492741.2916510291],[-10739087.503623528,4492993.9352299366],[-10739088.260597857,4493246.2128232569],[-10739089.017472614,4493498.3643042594],[-10739090.320683002,4493753.4672054574],[-10739091.518453106,4493987.6893048109],[-10739091.487147912,4494004.4842102844],[-10739091.474618345,4494008.1137503115],[-10739091.055590404,4494262.4750923449],[-10739090.642587515,4494512.4273337973],[-10739090.641769977,4494516.5132046929],[-10739090.222842272,4494770.8582553556],[-10739089.809334392,4495021.9033100978],[-10739089.804515576,4495025.1354948077],[-10739089.379681427,4495279.3555041654],[-10739088.954046628,4495533.506180983],[-10739088.461935526,4495787.0468755066],[-10739087.968923127,4496040.6505311048],[-10739087.47210733,4496293.9851862611],[-10739086.975892901,4496547.1645043353],[-10739086.4855855,4496800.3424915494],[-10739085.993677406,4497053.2281210655],[-10739085.494859342,4497306.5572135095],[-10739084.994738935,4497560.0904385857],[-10739085.554777775,4497812.9912969656],[-10739086.114116229,4498065.7893397259],[-10739086.677760202,4498318.4926268617],[-10739087.241004059,4498571.1147661833],[-10739087.797940847,4498823.6420114944],[-10739088.35617961,4499076.0703216167],[-10739088.917322155,4499328.4194820756],[-10739089.478565324,4499580.6530529559],[-10739089.743051402,4499834.2063893946],[-10739089.999452567,4500081.6779839331],[-10739089.998726865,4500087.8089716658],[-10739090.270621322,4500341.4744189167],[-10739090.535039792,4500587.0329455556],[-10739090.554329537,4500595.2072750153],[-10739090.823320111,4500848.9949375549],[-10739091.087329537,4501096.6785940817],[-10739091.08510197,4501102.8311058218],[-10739091.359198209,4501356.7270047618],[-10739091.631792393,4501610.6968881916],[-10739092.574475998,4501865.8831809508],[-10739093.482056512,4502111.5689145867],[-10739093.524370328,4502120.5397516275],[-10739094.466958109,4502374.682451535],[-10739095.367440891,4502617.7452196144],[-10739095.398935452,4502628.3041815506],[-10739096.338624133,4502881.391535474],[-10739097.25131063,4503127.1227506502],[-10739097.276412725,4503133.9506546985],[-10739098.20709506,4503385.9830147959],[-10739099.135376679,4503637.4967754437],[-10739102.071232615,4503890.376333965],[-10739105.013093388,4504143.8267818876],[-10739105.090956822,4504150.9543896476],[-10739107.953550257,4504397.8429897688],[-10739110.905918984,4504652.4261334436],[-10739111.020416921,4504661.7569772396],[-10739113.862891117,4504907.5265575517],[-10739116.817257902,4505163.1937462902],[-10739116.901029309,4505170.0835200716],[-10739119.790845312,4505419.4052872173],[-10739122.767233919,4505676.1521387026],[-10739121.691230884,4505929.888519112],[-10739120.612923818,4506183.9534810856],[-10739120.594189387,4506186.9706149008],[-10739119.531111354,4506438.3276210707],[-10739118.453902958,4506693.050574393],[-10739118.434363397,4506697.1003179019],[-10739117.370085273,4506948.1368753975],[-10739116.288168566,4507203.5435289685],[-10739116.269834697,4507206.5414010845],[-10739115.209955003,4507459.2628624784],[-10739114.137847438,4507715.2932586288],[-10739110.021733319,4507970.8348134244],[-10739105.89119843,4508227.2858843384],[-10739105.747193636,4508235.703009503],[-10739101.735530073,4508484.6440151334],[-10739097.573250091,4508742.9379150532],[-10739097.395694274,4508754.1344672143],[-10739093.414470565,4509002.1454445776],[-10739092.890918111,4509034.7006240329],[-10739090.868318012,4509262.2868618052],[-10739090.803837622,4509270.6864964962],[-10739088.568577563,4509523.3526823046],[-10739086.251627658,4509785.3259291034],[-10739086.144532524,4510041.6733267363],[-10739086.040264508,4510291.3580474509],[-10739086.045137515,4510297.2367133116],[-10739085.936722923,4510552.027138372],[-10739085.833716478,4510798.2285350421],[-10739085.839512628,4510806.0354577247],[-10739085.733783465,4511059.2806734424],[-10739085.629881112,4511305.9396601655],[-10739085.635053799,4511311.7602053368],[-10739085.533512054,4511563.4781637257],[-10739085.431160776,4511814.4505238431],[-10739085.229331605,4512068.9142122604],[-10739085.028413966,4512324.2931748284],[-10739084.83510136,4512579.3260556385],[-10739084.640287887,4512834.4408883499],[-10739084.433260802,4513089.6302315043],[-10739084.227435924,4513344.8901766958],[-10739084.026918307,4513600.2371406117],[-10739083.827603005,4513855.6636813572],[-10739084.496628365,4514112.2769745057],[-10739085.163749982,4514368.7819212126],[-10739085.184132252,4514373.86963291],[-10739085.830770055,4514625.1839425256],[-10739086.489178594,4514881.4893442374],[-10739086.515086686,4514888.2650017384],[-10739087.150188778,4515137.6907957578],[-10739087.802887635,4515393.7829868793],[-10739087.823269883,4515398.8703129627],[-10739088.467899665,4515649.7748738537],[-10739089.126202364,4515905.6660713954],[-10739089.510460176,4516159.7392589683],[-10739089.892078323,4516410.6294932589],[-10739089.886108723,4516413.9071355583],[-10739090.27066849,4516668.1495026685],[-10739090.648170693,4516918.0993745429],[-10739090.661836578,4516922.4519696776],[-10739091.033901758,4517178.4901059447],[-10739091.396782033,4517428.0615574038],[-10739091.408658266,4517433.5062609399],[-10739091.783510873,4517688.1851167344],[-10739092.155833447,4517940.5121123586],[-10739092.135504168,4518193.8826240553],[-10739092.114098473,4518449.4346881285],[-10739092.108112451,4518705.1214461708],[-10739092.102281123,4518956.8319754694],[-10739092.108643362,4518961.6229487695],[-10739092.093433488,4519216.1864410331],[-10739092.078980453,4519466.8992645675],[-10739092.069209568,4519470.4573970148],[-10739092.060500754,4519724.4537314922],[-10739092.05228943,4519978.1852781232],[-10739091.650615087,4520232.0216542138],[-10739091.248449318,4520486.6566346427],[-10739091.233510487,4520493.5542922905],[-10739090.844190218,4520742.0886356495],[-10739090.443544496,4520998.3153151963],[-10739090.422324382,4521007.4999256525],[-10739090.03660021,4521255.3148761773],[-10739089.635872275,4521513.1010197653],[-10739089.621433832,4521519.9805300385],[-10739089.23034779,4521771.6810061242],[-10739088.828436667,4522031.0551466439],[-10739089.479029501,4522287.2277097246],[-10739090.108504865,4522535.3149161013],[-10739090.127108794,4522542.4946756884],[-10739090.780083295,4522796.8583787428],[-10739091.406006588,4523040.7938397685],[-10739091.436951833,4523050.3195112422],[-10739092.088003406,4523302.916042381],[-10739092.719440036,4523547.4914635746],[-10739092.738744065,4523554.6105058948],[-10739093.37535792,4523805.4349342436],[-10739094.008758001,4524055.4048078982],[-10739094.954989901,4524310.9516415009],[-10739095.899815289,4524566.1015864015],[-10739096.851143597,4524820.864470846],[-10739097.800464714,4525075.2325576823],[-10739098.738968339,4525329.211379447],[-10739099.674964204,4525582.7966103535],[-10739100.607951708,4525835.9875899153],[-10739101.539933136,4526088.7764530852],[-10739103.910240017,4526344.5071969843],[-10739106.175492877,4526588.8651813976],[-10739106.096727289,4526600.0036685802],[-10739104.279403694,4526855.4343652055],[-10739102.461278804,4527110.7982443543],[-10739100.648659375,4527366.0374055812],[-10739098.834137248,4527621.2006352749],[-10739097.013207311,4527876.3034772314],[-10739095.192076895,4528131.3497194573],[-10739098.076785333,4528387.003904447],[-10739100.960290907,4528642.6037902217],[-10739103.837283663,4528897.8243273133],[-10739106.710968556,4529152.769034761],[-10739109.587661933,4529408.2202654127],[-10739112.46645746,4529663.7166878413],[-10739115.343650514,4529919.2337762211],[-10739118.22084317,4530174.7889812766],[-10739116.080349991,4530431.0249677254],[-10739113.984249333,4530681.9878520817],[-10739113.954066979,4530686.6446049623],[-10739111.815462958,4530941.6478488026],[-10739109.735951491,4531189.8696904285],[-10739109.674550185,4531196.0772693446],[-10739107.561364012,4531449.9429403041],[-10739105.493269974,4531698.4339638557],[-10739105.460685719,4531703.1689441912],[-10739103.345584176,4531955.7983600618],[-10739101.236281822,4532207.7171964059],[-10739099.187362079,4532460.6260540383],[-10739097.132543765,4532714.2251376789],[-10739097.090142589,4532718.4831396844],[-10739095.073027914,4532968.4821195612],[-10739093.015823519,4533223.4647144862],[-10739092.966829836,4533229.055899458],[-10739092.418647951,4533295.7707817303],[-10739091.642627092,4533478.9096124396],[-10739090.557177007,4533735.1095516076],[-10739090.531796752,4533739.448794324],[-10739089.456014555,4533991.8209802117],[-10739088.867300276,4534129.9566349825],[-10739088.872973351,4534249.7224226939],[-10739086.344930992,4534505.7712036092],[-10739083.822187336,4534761.1096518142],[-10739081.303950312,4535016.5143103581],[-10739078.786612738,4535271.7264816463],[-10739076.263668517,4535526.8794914074],[-10739073.742423672,4535781.7515610587],[-10739071.231488215,4536036.3358380226],[-10739068.721150929,4536290.6469777022],[-10739067.252350349,4536546.3794104522],[-10739065.822219267,4536795.4472864671],[-10739065.778639851,4536801.7193109915],[-10739064.322445672,4537056.664119238],[-10739062.918809138,4537302.4837642303],[-10739062.866948234,4537311.2249415461],[-10739061.410741845,4537565.0468254518],[-10739059.997301176,4537811.4559628703],[-10739059.961938251,4537818.3268596986],[-10739058.510826305,4538071.0858841818],[-10739057.059708707,4538323.3231017804],[-10739057.563917737,4538578.9072669046],[-10739058.070848666,4538836.147758821],[-10739058.566355951,4539092.5058275824],[-10739059.064065533,4539348.8577972101],[-10739059.572191618,4539605.6053607455],[-10739060.080418741,4539862.4522693343],[-10739060.577934578,4540119.4249826595],[-10739060.744605754,4540204.9341086214],[-10739060.79242003,4540376.4641599571],[-10739061.059013758,4540628.9034109935],[-10739061.328321347,4540882.2908587158],[-10739061.326712925,4540890.4772279281],[-10739061.5820214,4541136.6287248088],[-10739061.84684528,4541391.926571466],[-10739061.851776358,4541402.9044157891],[-10739062.1145839,4541648.2297860915],[-10739062.390943417,4541905.4938846752],[-10739062.408357916,4541913.7423243541],[-10739062.668915894,4542163.7408385696],[-10739062.937588597,4542422.9722404303],[-10739064.107843893,4542676.0379255563],[-10739065.281310424,4542929.7919927966],[-10739066.450164353,4543182.9473403068],[-10739067.617814422,4543435.9203252355],[-10739068.790461941,4543688.1910852185],[-10739069.964912292,4543940.5582266599],[-10739071.032503797,4544172.8677284177],[-10739070.371687738,4544192.6854262892],[-10739061.939197734,4544445.6940518767],[-10739062.022929799,4544701.2877363963],[-10739062.10717044,4544955.7940640505],[-10739062.114945328,4544960.4782930845],[-10739063.080447905,4545210.4118041731],[-10739064.064439954,4545464.7393332412],[-10739065.039121343,4545719.0311582442],[-10739066.012702938,4545973.1132817203],[-10739066.995997224,4546227.0032905629],[-10739067.97809137,4546480.714088453],[-10739068.477937752,4546759.7740099132],[-10739068.95235648,4547024.8576062853],[-10739068.969630811,4547031.1358522763],[-10739069.44893951,4547298.3753498783],[-10739069.920671333,4547561.2352063637],[-10739069.923746265,4547565.1619559405],[-10739070.391975813,4547827.7748553958],[-10739070.861310013,4548089.927258838],[-10739071.329045719,4548351.6184983673],[-10739071.79518296,4548612.8438526867],[-10739071.870264519,4548846.6030892227],[-10739071.885156924,4548891.130369084],[-10739072.151993658,4549093.1714004604],[-10739072.186245911,4549118.890709335],[-10739072.490137162,4549346.7900547413],[-10739072.829672152,4549601.7997301016],[-10739072.867322112,4549628.3770197695],[-10739073.303067597,4549869.9202903723],[-10739073.777498649,4550133.3272470329],[-10739073.799165279,4550141.362706298],[-10739074.253143841,4550394.9908094602],[-10739074.722773638,4550657.8031938402],[-10739074.038523497,4550911.6304128924],[-10739073.354272347,4551165.6115513938],[-10739072.664714154,4551419.724068298],[-10739071.973953739,4551673.9631584734],[-10739071.280788945,4551928.4342508484],[-10739070.588827603,4552182.6386349006],[-10739069.897571051,4552436.3139967099],[-10739069.205111509,4552690.2226175899],[-10739068.991950262,4552952.4288683254],[-10739068.785241205,4553208.5215735845],[-10739068.781798787,4553213.7868624674],[-10739068.566937819,4553475.7017895663],[-10739068.360764153,4553727.0458233431],[-10739068.354788229,4553736.4993591253],[-10739068.143751156,4553995.7690045172],[-10739067.938883949,4554246.4540396491],[-10739067.936328018,4554253.7142737908],[-10739067.718302086,4554510.3571212841],[-10739067.502288127,4554765.6880715052],[-10739064.540978912,4555020.4933027625],[-10739062.233743256,4555218.9250992229],[-10739061.817873241,4555271.7793046851],[-10739061.783805616,4555275.6092162365],[-10739059.766292496,4555531.0005823905],[-10739057.783251956,4555781.9782118173],[-10739057.751680991,4555786.6664298717],[-10739055.742787039,4556040.8692043694],[-10739053.720866922,4556296.6117278105],[-10739051.694831511,4556553.8261689367],[-10739049.654468805,4556812.5274689831],[-10739046.607537018,4557070.7779802671],[-10739043.573328974,4557327.8495879797],[-10739043.526650175,4557331.2010591999],[-10739040.547739817,4557583.7519665668],[-10739037.542783793,4557838.4507993674],[-10739037.421990193,4557845.7112632245],[-10739033.202659255,4558095.0256807469],[-10739028.860833047,4558351.620079875],[-10739028.773691731,4558357.0863935463],[-10739024.511998961,4558608.2361538233],[-10739020.156056901,4558864.873270357],[-10739016.420708343,4559125.587294098],[-10739012.912640784,4559370.3782254206],[-10739012.716309018,4559384.5439829435],[-10739009.030544328,4559641.7771884426],[-10739005.639072133,4559878.4827557756],[-10739005.371523499,4559897.3175956989],[-10739001.728833769,4560151.2500405014],[-10738998.314225951,4560389.2458299566],[-10738998.116291963,4560403.4723231029],[-10738995.141218916,4560610.8658603309],[-10738994.530894149,4560654.0439210329],[-10738991.336930495,4560880.1409772933],[-10738992.148010593,4560902.7120659538],[-10738987.087173173,4561156.384790536],[-10738981.998794034,4561411.4544355096],[-10738981.841051629,4561419.5348901926],[-10738979.213836562,4561551.0637389598],[-10738978.101693617,4561667.7062292341],[-10738976.972017571,4561786.1016275538],[-10738976.006482147,4561925.1949059581],[-10738975.939527288,4561935.772876679],[-10738974.222825512,4562183.7928797388],[-10738972.427847417,4562443.5590934763],[-10738972.375630332,4562451.3033489436],[-10738970.617843842,4562704.4544422179],[-10738968.799922902,4562966.5009543858],[-10738965.63419481,4563220.1198834889],[-10738962.455043711,4563474.801132814],[-10738962.411862258,4563479.0931276698],[-10738959.264071681,4563730.5158587387],[-10738956.049364751,4563987.2793604033],[-10738956.038911823,4563992.8893177696],[-10738956.295674413,4564245.5823048586],[-10738956.559989927,4564505.9673492778],[-10738956.822712965,4564765.0636548763],[-10738957.085437166,4565024.0042910194],[-10738952.921248034,4565277.8216778282],[-10738952.581903175,4565298.4744510846],[-10738949.645839868,4565525.2371937307],[-10738949.566503033,4565531.36663674],[-10738946.297359798,4565784.6611160086],[-10738943.166154819,4566027.2918232372],[-10738943.022111705,4566037.693173198],[-10738939.75056714,4566290.8802285735],[-10738936.599731347,4566534.7013946017],[-10738936.487236399,4566543.5273474278],[-10738933.227113675,4566795.6310646087],[-10738929.975204807,4567047.18918336],[-10738925.549905594,4567302.3174897721],[-10738921.113889625,4567558.0992403133],[-10738921.016432945,4567564.0693594571],[-10738916.665655261,4567814.5202706316],[-10738912.19969603,4568071.5912881931],[-10738912.089519512,4568078.259924286],[-10738907.740746008,4568328.5799648045],[-10738903.270881157,4568585.9271781268],[-10738903.193454906,4568590.9191622101],[-10738898.799512519,4568843.6182328379],[-10738894.313324528,4569101.6663542129],[-10738892.742533842,4569358.7469738079],[-10738891.296036296,4569595.3560052067],[-10738891.184161099,4569615.3696816135],[-10738889.616981601,4569871.5385058662],[-10738888.18752728,4570104.9673721408],[-10738888.050806705,4570127.2601400111],[-10738886.491443066,4570382.5481326114],[-10738884.970872043,4570631.3055355065],[-10738884.931782434,4570637.3985169455],[-10738883.369522272,4570891.7939974032],[-10738881.809167748,4571145.7434263555],[-10738878.052053653,4571400.567037411],[-10738874.391199473,4571648.8149625286],[-10738874.29293431,4571655.8456652947],[-10738870.510885514,4571911.5671569435],[-10738866.723427612,4572167.7312909309],[-10738866.639992287,4572173.0252432022],[-10738862.93156236,4572424.2576097781],[-10738859.12727456,4572681.9598241057],[-10738855.327295912,4572939.144212354],[-10738851.521808477,4573196.7137171095],[-10738848.785769692,4573453.5149573991],[-10738846.103229536,4573705.320618039],[-10738846.062452056,4573709.4775572922],[-10738845.45804156,4573765.8613302419],[-10738844.57827808,4573964.9431182835],[-10738843.508382577,4574207.0138053494],[-10738843.458732456,4574219.7828671345],[-10738842.328274699,4574474.5684365574],[-10738841.241539713,4574719.4298229134],[-10738841.195417264,4574728.9437577203],[-10738840.067869037,4574982.9207371967],[-10738838.943127168,4575236.49007555],[-10738837.3561309,4575492.4890506985],[-10738835.767732522,4575748.5805786774],[-10738834.182642382,4576004.0922002885],[-10738832.60015811,4576259.2373653576],[-10738831.022082688,4576513.8929776307],[-10738829.447414361,4576768.1416843776],[-10738827.865140392,4577021.9754541675],[-10738826.286974408,4577275.3906999296],[-10738822.909112021,4577529.7312873919],[-10738819.523536827,4577784.6542886067],[-10738819.305566341,4577800.8835273227],[-10738816.131950952,4578040.137390187],[-10738812.735755891,4578296.2014662558],[-10738812.496145135,4578314.531795674],[-10738809.335853273,4578552.7639895519],[-10738805.925835321,4578809.874159703],[-10738805.768873323,4578820.9075031783],[-10738802.497492477,4579067.5348125668],[-10738799.0710482,4579325.7490378926],[-10738798.160636166,4579429.4688180303],[-10738796.044295242,4579581.7339217579],[-10738792.471393248,4579838.6968877008],[-10738788.891369564,4580096.5850528423],[-10738785.298817674,4580355.4156386759],[-10738781.707169782,4580614.0809112992],[-10738780.80404667,4580679.0915471623],[-10738777.923490584,4580873.3396615591],[-10738774.077030158,4581133.1888821404],[-10738770.22145061,4581393.6406878168],[-10738768.350015135,4581651.3546948573],[-10738766.504559573,4581905.7679328779],[-10738766.485092627,4581908.7266827002],[-10738764.625081211,4582165.758532105],[-10738762.797073334,4582418.3795113796],[-10738762.776087822,4582422.4596215626],[-10738760.915189045,4582678.6174464077],[-10738759.079368483,4582931.5174343903],[-10738759.061904451,4582934.4373351373],[-10738757.206522362,4583189.9470952488],[-10738755.352446798,4583445.141238885],[-10738753.77736208,4583702.5428126464],[-10738752.196151668,4583961.2019330738],[-10738750.619769841,4584218.3445966756],[-10738749.045800036,4584474.8891421175],[-10738747.483754452,4584730.75709992],[-10738745.923216898,4584986.2224693689],[-10738744.361288238,4585241.003919431],[-10738742.80497513,4585495.1983892815],[-10738745.009705402,4585750.6178593887],[-10738747.180955604,4586002.1066501141],[-10738747.211137533,4586005.6492996961],[-10738749.418482423,4586260.2779348781],[-10738751.582053497,4586509.7619607616],[-10738751.629737731,4586514.5046252375],[-10738753.826281928,4586768.3264175123],[-10738755.989947295,4587018.1815954922],[-10738756.020729616,4587021.7439174661],[-10738758.203769989,4587274.7582399007],[-10738760.384313397,4587527.3682109015],[-10738758.053274089,4587783.4882662268],[-10738755.718421493,4588040.2222995991],[-10738755.64081103,4588048.2659109673],[-10738753.372647552,4588297.558659045],[-10738751.025463166,4588555.505527325],[-10738750.936599828,4588566.2101093205],[-10738748.682575081,4588814.0543034393],[-10738746.324860997,4589073.2144427672],[-10738746.248351859,4589081.2580943275],[-10738743.961832151,4589332.9718760746],[-10738741.597392999,4589593.3310992355],[-10738740.595490934,4589849.8305118214],[-10738739.585552892,4590108.1235740939],[-10738738.587841677,4590365.585123362],[-10738737.590430461,4590623.0824604761],[-10738736.594922516,4590880.5224906206],[-10738735.596912106,4591137.9462906392],[-10738734.599601505,4591395.4505228419],[-10738733.600988962,4591652.9969086023],[-10738482.952669343,4591649.7698479025],[-10738231.886865929,4591646.5313476324],[-10738227.641548812,4591646.4675585553],[-10737980.41168813,4591643.2803901611],[-10737728.517724881,4591640.0276597412],[-10737722.836344251,4591639.9544792455],[-10737476.180748265,4591636.7625998072],[-10737223.435198186,4591633.4847011333],[-10737219.17035844,4591633.4202765031],[-10736970.253642999,4591630.1850607106],[-10736716.640087061,4591626.8821212789],[-10736461.06251453,4591626.4037532639],[-10736206.88286146,4591625.9211678756],[-10735952.464131437,4591625.4340071743],[-10735698.360766821,4591624.9393377453],[-10735444.583980542,4591624.4407208031],[-10735191.114149883,4591623.9370119041],[-10734937.946569555,4591623.417272659],[-10734685.065020576,4591622.8938408708],[-10734430.841148652,4591620.0924318163],[-10734175.97603376,4591617.2776782773],[-10734168.840268342,4591617.1938350331],[-10733920.477785366,4591614.4456372252],[-10733664.356414916,4591611.605466309],[-10733654.80995713,4591611.4946934162],[-10733407.57948501,4591608.7449556598],[-10733150.147295816,4591605.8768243939],[-10733142.952261725,4591605.7909471113],[-10732892.083875231,4591602.9961117413],[-10732633.386820389,4591600.1089229127],[-10732378.211039104,4591597.6201738501],[-10732132.457271606,4591595.2168893041],[-10732123.527027227,4591595.134852956],[-10731869.337187745,4591592.6379516786],[-10731627.523684142,4591590.2585242586],[-10731615.642922189,4591590.1354479734],[-10731362.422705451,4591587.6408243794],[-10731118.621599155,4591585.2325555198],[-10731109.692656266,4591585.149756168],[-10730857.443664299,4591582.645708668],[-10730605.676029749,4591580.1392387263],[-10730353.587232489,4591576.9110952122],[-10730101.191179093,4591573.6724009952],[-10730097.184638139,4591573.6302316366],[-10729848.477457229,4591570.4428707706],[-10729595.449471232,4591567.1938866451],[-10729590.127606856,4591567.1240088381],[-10729342.133951934,4591563.93435157],[-10729088.513479153,4591560.665537714],[-10729084.487315459,4591560.6227327818],[-10728834.577941058,4591557.3949494725],[-10728580.301808299,4591554.1059252899],[-10728447.124523612,4591554.1512227776],[-10728325.284077058,4591553.8425132427],[-10728073.769108569,4591553.2001510961],[-10728070.599436635,4591553.1934558535],[-10727816.234566765,4591552.5301487185],[-10727566.446198583,4591551.8719903883],[-10727562.199278688,4591551.8640388176],[-10727308.505686345,4591551.2011039192],[-10727058.306141714,4591550.5410440397],[-10727055.13636964,4591550.5357478941],[-10726802.085421884,4591549.8549974561],[-10726549.349038543,4591549.1691550519],[-10726546.758533243,4591804.7282903083],[-10726544.1678287,4592060.2359945904],[-10726541.567914462,4592315.6932819039],[-10726538.97020364,4592571.1091798311],[-10726536.373495029,4592826.4689295571],[-10726533.776987761,4593081.7671842566],[-10726531.182283558,4593337.0148796747],[-10726528.587780578,4593592.2115033474],[-10726526.197507292,4593847.9783830568],[-10726523.798714627,4594104.5303140022],[-10726523.728241956,4594111.7979715308],[-10726521.394205868,4594361.8646829929],[-10726518.983880667,4594619.999487685],[-10726518.904379752,4594628.6887708604],[-10726516.567838905,4594878.954508963],[-10726514.143277731,4595138.6982545294],[-10726514.087731898,4595145.2056507813],[-10726511.705591843,4595399.2281120392],[-10726509.25608249,4595660.5652629705],[-10726507.440385807,4595915.6253337879],[-10726505.654574847,4596166.6246349216],[-10726505.63540476,4596170.4487858573],[-10726503.816811137,4596425.0389105789],[-10726502.03632625,4596674.4895722754],[-10726501.993014662,4596679.3968359614],[-10726500.175728042,4596933.5907542007],[-10726498.975534964,4597101.6095310077],[-10726496.652117418,4597183.7457521744],[-10726496.554757856,4597187.4898525635],[-10726489.382780993,4597441.1890677642],[-10726482.216814484,4597694.681469257],[-10726480.29546663,4597952.2700663377],[-10726478.42215623,4598203.340360187],[-10726478.380434735,4598209.1899084719],[-10726476.460606027,4598465.4334367393],[-10726474.605059987,4598713.0465985164],[-10726474.539684815,4598720.9995826343],[-10726472.631186659,4598975.8932597907],[-10726470.771222847,4599224.5603559455],[-10726470.735712318,4599230.1100908527],[-10726468.838044124,4599483.6543538785],[-10726466.946391383,4599736.5407650741],[-10726464.533778036,4599994.081769268],[-10726462.120163485,4600251.6521097776],[-10726462.056291096,4600259.5256995792],[-10726459.720765209,4600509.2621000512],[-10726457.310454182,4600766.9088154482],[-10726457.210906707,4600777.4873648072],[-10726454.903647207,4601024.5811829874],[-10726452.499042636,4601282.2918083863],[-10726452.429059686,4601290.4474119684],[-10726450.094938532,4601540.0375117855],[-10726447.683826165,4601797.8217335287],[-10726445.207769023,4602053.207074156],[-10726442.772510348,4602304.5172809958],[-10726442.736211004,4602309.1057309331],[-10726440.238416599,4602565.5135406889],[-10726437.79605706,4602816.2884511715],[-10726437.728001481,4602822.4384357193],[-10726435.230295282,4603079.8516774364],[-10726432.771384448,4603333.2517473102],[-10726432.738289818,4603337.7610699916],[-10726430.233964277,4603596.1634673988],[-10726427.726829983,4603855.0330563448],[-10726179.405061575,4603855.0532207685],[-10725931.558042061,4603855.0676503526],[-10725685.279836353,4603855.0660201376],[-10725440.199715739,4603855.0582662476],[-10725196.332797686,4603855.045789307],[-10724953.691997137,4603855.0273157749],[-10724712.236667115,4603855.0020819986],[-10724471.975017061,4603854.9733987674],[-10724218.747698218,4603853.2899072925],[-10723964.996974252,4603851.5963614061],[-10723710.695213294,4603849.8866489669],[-10723455.864540838,4603848.1672642035],[-10723200.490239823,4603846.4416454779],[-10722944.57641504,4603844.7064818833],[-10722688.106046747,4603842.9664852126],[-10722431.093351472,4603841.2149062641],[-10722176.780634224,4603843.1582360892],[-10721921.803649267,4603845.1011901023],[-10721918.750219218,4603845.1163724577],[-10721666.165099883,4603847.0296333907],[-10721409.859879909,4603848.9657233907],[-10721405.766847847,4603848.9986159727],[-10721152.867666004,4603850.8969808407],[-10720895.201373082,4603852.8248063736],[-10720892.145840608,4603852.8399887448],[-10720636.866006905,4603854.750473354],[-10720377.86527166,4603856.6828956269],[-10720122.469902435,4603858.802603066],[-10719868.486065397,4603860.9042147407],[-10719613.633924846,4603863.0008682581],[-10719358.687775899,4603865.0912829153],[-10719103.376304882,4603867.1780080944],[-10718847.46994639,4603869.2623193637],[-10718592.429689478,4603871.335543775],[-10718337.769872667,4603873.4003600478],[-10718081.836318146,4603872.2760494743],[-10717825.651773425,4603871.1447378527],[-10717822.498328043,4603871.1363629764],[-10717569.221544562,4603870.0150843449],[-10717523.36733789,4603869.8122787308],[-10717434.323121311,4603867.8310481878],[-10717312.54014666,4603866.878279726],[-10717306.991332496,4603866.8379647164],[-10717055.568601063,4603864.8660301073],[-10716798.343562324,4603862.8434690563],[-10716793.853472058,4603862.8039081674],[-10716540.837598782,4603860.8052485064],[-10716346.576743176,4603859.2666298375],[-10716283.067537598,4603858.0155911781],[-10716037.64204054,4603865.4206246883],[-10716027.389487138,4603865.5292158388],[-10715775.168884652,4603868.1953117587],[-10715771.893998479,4603868.2247583885],[-10715516.495121762,4603870.921700919],[-10715265.038102699,4603873.5726363277],[-10715261.165125079,4603873.6064181738],[-10715005.928236321,4603876.2889698921],[-10714753.628643826,4603878.9332917379],[-10714750.793165544,4603878.9715207908],[-10714531.866757317,4603881.2532429919],[-10714495.732449699,4603881.5218116418],[-10714240.761660621,4603883.4169683019],[-10713997.207852026,4603881.8256511744],[-10713754.013957668,4603880.234585356],[-10713745.091985617,4603880.1754674362],[-10713511.194093864,4603878.6385497004],[-10713268.742554015,4603877.0389450332],[-10713251.259124866,4603876.9320387626],[-10713022.649321252,4603875.4150577923],[-10712776.926114492,4603873.7785603059],[-10712759.521275816,4603873.6708892137],[-10712527.532581866,4603872.1145970635],[-10712270.419761805,4603870.3844998628],[-10712016.54048229,4603866.8190017128],[-10711762.479593385,4603863.2445934415],[-10711508.230988096,4603859.6580916075],[-10711253.802074922,4603856.0625523431],[-10710999.180539696,4603852.4555563033],[-10710744.387506712,4603848.840286795],[-10710489.27340373,4603845.2200563094],[-10710234.274933569,4603841.5937140789],[-10709980.516272794,4603839.8947881553],[-10709726.590919999,4603838.1869507367],[-10709472.497673832,4603836.4667636417],[-10709218.268771354,4603834.7391928248],[-10708963.861763658,4603833.0090776691],[-10708709.307886748,4603831.2714515813],[-10708455.51738866,4603829.5271961568],[-10708199.748813011,4603827.764116196],[-10707942.826716915,4603825.1034268672],[-10707692.884556655,4603822.5087532364],[-10707686.418412134,4603822.4410777101],[-10707430.071778197,4603819.7661223207],[-10707184.864568962,4603817.2010702332],[-10707173.947199646,4603817.092311739],[-10706920.907272236,4603814.4478846872],[-10706675.665823065,4603811.8806703286],[-10706667.503225379,4603811.794930866],[-10706412.97258128,4603809.1184323467],[-10706165.310745103,4603806.5088419486],[-10705911.036698023,4603803.5800823029],[-10705731.738871321,4603801.5115902098],[-10705657.029560933,4603800.2956605153],[-10705402.956354557,4603796.1502957996],[-10705148.897564419,4603791.9971655319],[-10704895.041006651,4603787.8512938088],[-10704640.924849624,4603783.6962587358],[-10704387.312272064,4603779.5329435179],[-10704133.092895538,4603775.3528283574],[-10703876.411364747,4603773.5412579225],[-10703622.118884439,4603771.7423963305],[-10703366.878412582,4603769.9229165493],[-10703111.804532383,4603768.0998700792],[-10702856.947902154,4603766.2747844625],[-10702603.125762856,4603764.4496883163],[-10702347.972090349,4603762.609581097],[-10702093.248813236,4603760.7670504041],[-10701861.167991087,4603760.9884469016],[-10701632.863517171,4603761.2003795803],[-10701629.489432193,4603761.2029627189],[-10701399.374173408,4603761.4047277328],[-10701176.78858448,4603761.5948237255],[-10701170.440775454,4603761.6066073319],[-10700943.232964514,4603761.7897494305],[-10700722.172631936,4603761.9630201561],[-10700717.340768427,4603761.9699485283],[-10700615.912982736,4603762.0549577605],[-10700492.881514553,4603763.2066663904],[-10700269.900456659,4603765.2922122376],[-10700013.670853743,4603762.1657362655],[-10699758.325768892,4603759.0458738497],[-10699502.404920911,4603755.9084462943],[-10699246.395170292,4603752.7635081345],[-10698990.333860023,4603749.6118230447],[-10698734.124278793,4603746.4482984906],[-10698477.863137849,4603743.2878321065],[-10698221.512793923,4603740.1190911476],[-10697969.904904509,4603737.7897185106],[-10697717.067799656,4603735.4412592053],[-10697707.708523788,4603735.3592265472],[-10697463.013993755,4603733.0739677884],[-10697207.733575433,4603730.6812227545],[-10697195.320183191,4603730.5680250917],[-10696951.298727673,4603728.2830155548],[-10696693.651383711,4603725.8635568134],[-10696684.291206772,4603725.7805055808],[-10696434.809364049,4603723.4257751508],[-10696174.779076075,4603720.9645769726],[-10695920.872919824,4603721.5624961378],[-10695668.396309689,4603722.1513587749],[-10695414.950083276,4603722.7259698845],[-10695161.317842772,4603723.29536206],[-10694907.504693994,4603723.8692129776],[-10694653.518546121,4603724.4365714379],[-10694399.352190893,4603724.9900518684],[-10694145.001223207,4603725.5361485975],[-10693889.905209901,4603724.0361770801],[-10693633.268222218,4603722.5218333937],[-10693377.604855454,4603721.002004113],[-10693122.074641891,4603719.4744062303],[-10692866.695502166,4603717.9394215569],[-10692611.459827505,4603716.3978142105],[-10692356.357806593,4603714.8541685035],[-10692101.404957304,4603713.3064468242],[-10691847.010848887,4603712.1747339349],[-10691592.447245235,4603711.036910939],[-10691337.868724277,4603709.9008711567],[-10691083.229833728,4603708.7573193703],[-10690828.522464314,4603707.5950499121],[-10690573.753323702,4603706.4252684927],[-10690318.91119892,4603705.2565068845],[-10690063.997992218,4603704.080615432],[-10689832.452012304,4603698.7462461041],[-10689608.29864309,4603693.5769579243],[-10689602.254584566,4603693.4285470471],[-10689373.407010436,4603688.141652707],[-10689153.977879411,4603683.0657863263],[-10689145.917299131,4603682.8876003521],[-10688919.783548526,4603677.6551842159],[-10688701.034399472,4603672.5895041302],[-10688695.00826153,4603672.4405840924],[-10688471.583829304,4603667.2616272857],[-10688249.507949252,4603662.1081267707],[-10687997.205846,4603661.0021245982],[-10687743.781350333,4603659.8845471302],[-10687740.467835147,4603659.8625535406],[-10687489.212536993,4603658.7571773501],[-10687233.523633851,4603657.6239624461],[-10687228.97279392,4603657.612933265],[-10686976.636751285,4603656.4739522552],[-10686718.616263412,4603655.3026892869],[-10686715.142864054,4603655.2981426716],[-10686700.632361887,4603655.2365398593],[-10686459.437512096,4603653.528296683],[-10686199.077354336,4603651.6774696885],[-10685939.349120848,4603648.5467703277],[-10685684.990296558,4603645.4730741754],[-10685680.520210216,4603645.4214127865],[-10685422.573402898,4603642.2904461864],[-10685171.4838978,4603639.237226204],[-10685165.516007148,4603639.168004903],[-10684909.365342695,4603636.0509053608],[-10684658.575377578,4603632.990554315],[-10684654.105691666,4603632.9392750142],[-10684399.747365816,4603629.8236908233],[-10684146.288162608,4603626.7137030968],[-10683889.455620788,4603623.4919430232],[-10683633.304654066,4603620.2718338687],[-10683376.867361102,4603617.0345378993],[-10683120.464106426,4603613.789602695],[-10682861.177169982,4603610.5110761039],[-10682607.781236311,4603607.3035552017],[-10682603.89090962,4603607.2441216297],[-10682348.56848339,4603604.0012185881],[-10682095.22010294,4603600.7745993193],[-10682086.862017257,4603340.7340740776],[-10682078.626557861,4603084.4884302914],[-10682078.516443929,4603080.89708101]]]},"attributes":{"objectid":22,"field_kid":"1028645832","approxacre":4348016,"field_name":"CHEROKEE BASIN COAL AREA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":48961.900000000001,"maxoilwell":42,"lastoilpro":1863.51,"lastoilwel":10,"lastodate":"2-2009","cumm_gas":139196087,"maxgaswell":5062,"lastgaspro":3525248,"lastgaswel":4779,"lastgdate":"2-2009","avgdepth":839.26315789,"avgdepthsl":-87,"polydate":1193788800000,"field_type":"GAS","field_kidn":1028645832}},{"geometry":{"rings":[[[-10558504.455271475,4521212.4955431651],[-10558757.881653897,4521216.7160119507],[-10558757.138188398,4521473.903066827],[-10558756.393920463,4521730.870933054],[-10558755.646747613,4521987.6092344914],[-10558754.89987365,4522244.1348846238],[-10558754.149293985,4522500.4543116121],[-10558753.39931348,4522756.5506957304],[-10558752.646628268,4523012.4135332303],[-10558751.894742206,4523268.0153875286],[-10558749.982226405,4523524.6635541208],[-10558748.069208939,4523781.1891318923],[-10558746.164399894,4524037.6014631689],[-10558744.260891391,4524293.9133029943],[-10558489.034211025,4524290.7728888094],[-10558233.871204413,4524287.6270415839],[-10557978.526489044,4524284.4771489557],[-10557723.086063907,4524281.3195470516],[-10557467.711815406,4524278.1555011924],[-10557212.222234547,4524274.9833667651],[-10556956.887632545,4524271.7998608341],[-10556701.636126675,4524268.6119330395],[-10556701.705666861,4524261.4513245365],[-10556703.696268385,4524011.8223110111],[-10556705.742392993,4523754.9226173954],[-10556705.784511676,4523749.5726425704],[-10556707.803333687,4523497.9099542042],[-10556709.867376952,4523240.7825605394],[-10556711.634381456,4522984.2775917398],[-10556713.402886206,4522727.5613406561],[-10556713.410876436,4522724.1585811265],[-10556715.158975126,4522470.6242201757],[-10556716.930480383,4522213.489367852],[-10556716.94206843,4522208.953841948],[-10556718.681160048,4521956.1177582107],[-10556720.453162726,4521698.5278544948],[-10556720.462454451,4521695.1268196171],[-10556722.203739218,4521440.71676658],[-10556723.970733017,4521182.6780681517],[-10556978.991445567,4521186.9698010646],[-10557233.803518681,4521191.252562806],[-10557238.712566795,4521191.3386505265],[-10557488.379520802,4521195.5263530696],[-10557742.724958239,4521199.7863712646],[-10557749.25877572,4521199.8930695141],[-10557996.856950644,4521204.0279432693],[-10558250.778801896,4521208.2629443742],[-10558258.459038461,4521208.3931534411],[-10558504.455271475,4521212.4955431651]]]},"attributes":{"objectid":49,"field_kid":"1031510489","approxacre":963,"field_name":"Farlington South","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":43512,"maxgaswell":5,"lastgaspro":730,"lastgaswel":5,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"GAS","field_kidn":1031510489}},{"geometry":{"rings":[[[-10582912.982441816,4475587.003951286],[-10582912.519184774,4475330.0430567861],[-10582660.756169396,4475331.5729561271],[-10582408.51070139,4475333.1013384685],[-10582155.003588501,4475334.6361151971],[-10581900.516753498,4475336.1715050796],[-10581901.533117969,4475079.9106608974],[-10581902.549878463,4474823.457831095],[-10581903.575544294,4474566.793661098],[-10581904.601613682,4474310.2760994574],[-10582157.483589375,4474308.2996416502],[-10582185.271008797,4474308.0821402781],[-10582407.497899078,4474307.1461575059],[-10582410.140425382,4474307.1407926083],[-10582662.084046863,4474306.0865702964],[-10582914.973551448,4474305.0244401926],[-10583166.014492914,4474301.9004545966],[-10583409.653559053,4474298.8630027287],[-10583414.939611427,4474298.7905213404],[-10583643.187054034,4474295.9407152887],[-10583663.337826647,4474295.6908933073],[-10583903.859423321,4474292.6994230924],[-10583910.684237886,4474292.6223134603],[-10584156.904959811,4474289.5523327235],[-10584397.827114712,4474286.5435149567],[-10584402.83735143,4474286.4817193458],[-10584648.064935856,4474283.4141137768],[-10584893.766863182,4474280.333814377],[-10584894.942974066,4474537.9414854245],[-10584896.123722399,4474796.9909019191],[-10584896.999898197,4474992.4121093769],[-10584897.958277838,4475054.1815654421],[-10584901.939774549,4475310.5871404791],[-10584901.996030275,4475314.6676679226],[-10584905.967181081,4475569.5532157021],[-10584910.029968092,4475830.3076580381],[-10584914.031823933,4476088.3204547409],[-10584918.014731348,4476345.1411557933],[-10584671.306098206,4476346.8602236873],[-10584424.121519851,4476348.577145637],[-10584175.415298715,4476350.2984457565],[-10583925.532930456,4476352.0213622721],[-10583674.201102184,4476353.7523060851],[-10583649.197467703,4476353.9241069416],[-10583422.206717871,4476355.6120499494],[-10583168.857381843,4476357.4825901305],[-10582914.376850186,4476359.3551248591],[-10582913.910274062,4476101.6908483468],[-10582913.445103528,4475844.210986685],[-10582912.982441816,4475587.003951286]]]},"attributes":{"objectid":109,"field_kid":"1033397806","approxacre":794,"field_name":"Sherman City","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"OIL","field_kidn":1033397806}},{"geometry":{"rings":[[[-10536317.866939515,4547048.698211967],[-10536315.945274062,4546792.8017214537],[-10536059.899229106,4546792.5562015362],[-10535804.400116783,4546792.3033395587],[-10535549.444032636,4546792.0369300125],[-10535294.922050618,4546791.7636843221],[-10535041.007672213,4546791.382036644],[-10534787.874897841,4546790.9950745162],[-10534535.328701932,4546790.6046964563],[-10534283.529069539,4546790.2077373331],[-10534283.444217769,4546784.3019188661],[-10534100.352355082,4546783.7381900372],[-10533916.387983276,4546783.1671109488],[-10533731.352172283,4546782.5858943351],[-10533545.31930811,4546781.9985931581],[-10533358.406426119,4546781.405461384],[-10533170.557261234,4546780.8062453968],[-10532981.732768299,4546780.2003117772],[-10532791.942858795,4546779.5865207873],[-10532791.632787086,4546521.9954444878],[-10532791.32271296,4546264.7216297146],[-10532791.007530646,4546007.746817762],[-10532790.693247046,4545751.0794705898],[-10532978.5978998,4545750.9291238701],[-10533162.657104496,4545750.7779948246],[-10533165.556458233,4545750.7754792394],[-10533351.552303119,4545750.6168904332],[-10533532.47568064,4545750.4576387322],[-10533536.567313451,4545750.4612083472],[-10533633.202192774,4545750.3873170195],[-10533720.629219282,4545750.5663770223],[-10533903.73351535,4545750.9378414815],[-10534085.909337459,4545751.3058815068],[-10534267.154683298,4545751.6688509006],[-10534520.255335424,4545753.2509221509],[-10534773.976805612,4545754.829958112],[-10535028.445540132,4545756.4040600881],[-10535283.499751842,4545757.9744934179],[-10535538.995774547,4545759.5412572566],[-10535795.406054711,4545761.1079000114],[-10536052.29949367,4545762.6756854281],[-10536310.606968161,4545764.2460119026],[-10536307.698721943,4545500.8126206677],[-10536304.898623036,4545247.0439416897],[-10536304.787268808,4545237.7666472048],[-10536304.642300861,4545225.359242701],[-10536307.682530988,4544974.9342474435],[-10536310.724163754,4544724.4056224087],[-10536310.893458948,4544712.0488447836],[-10536314.113703543,4544448.460407909],[-10536317.171353975,4544198.0894128419],[-10536317.304708244,4544185.6533682281],[-10536317.428633658,4544175.4503608467],[-10536316.99276158,4543923.7291334756],[-10536316.539645845,4543662.8622216647],[-10536059.952998521,4543654.0680193659],[-10535803.247814279,4543645.2624306809],[-10535798.965760328,4543645.1112397546],[-10535546.41278002,4543636.4421638371],[-10535289.441688586,4543627.6151949419],[-10535284.959002659,4543627.5159109551],[-10535032.142124634,4543622.0790587477],[-10534774.344384501,4543616.5289969463],[-10534517.521372132,4543610.9904655796],[-10534261.19163055,4543605.4551059473],[-10534079.323217584,4543595.0483350866],[-10533896.977452535,4543584.6109348023],[-10533715.9500129,4543574.2419197252],[-10533632.802014917,4543569.4784796704],[-10533535.644307062,4543563.2511701286],[-10533353.110522462,4543551.5694188634],[-10533170.223329198,4543539.8610931886],[-10532986.998145092,4543528.1236612173],[-10532803.418050583,4543516.3614274599],[-10532805.487111138,4543261.0314541301],[-10532807.557172643,4543005.6359567754],[-10532809.61121542,4542750.1801303746],[-10532811.666159032,4542494.6572700515],[-10532994.529314185,4542506.2309386767],[-10533177.059884777,4542517.7803140888],[-10533359.22122843,4542529.3085607849],[-10533541.0295639,4542540.8134001242],[-10533722.457159089,4542552.2897682153],[-10533904.009098349,4542563.7728601778],[-10534085.666459763,4542575.2517890492],[-10534267.428242192,4542586.7366821496],[-10534267.588875892,4542562.6401028335],[-10534524.662864357,4542568.0220401371],[-10534781.774496485,4542573.3975250516],[-10535038.768993234,4542578.761872814],[-10535295.681094794,4542584.1171090771],[-10535552.615021724,4542589.4655130338],[-10535809.431412814,4542594.8041722979],[-10536066.126363555,4542600.1396696111],[-10536322.705480425,4542605.4660551781],[-10536322.622721443,4542621.6700998265],[-10536581.947706869,4542623.4206615873],[-10536840.667492231,4542625.1599538317],[-10537098.56132214,4542626.876202249],[-10537355.696374334,4542628.5826993911],[-10537355.841544548,4542888.053650341],[-10537355.983299481,4543142.6470143273],[-10537355.982705779,4543145.657909018],[-10537356.117355075,4543401.3697635178],[-10537356.24989756,4543655.2016084883],[-10537604.753776954,4543656.2277984917],[-10537863.998682011,4543657.2898806287],[-10537871.7405381,4543657.3186651226],[-10538123.904151229,4543658.339306389],[-10538384.172740536,4543659.3879749076],[-10538381.534114528,4543923.3023927603],[-10538378.995056121,4544177.4726371141],[-10538378.895662222,4544187.0596861485],[-10538375.909948573,4544449.4250926767],[-10538372.934955694,4544710.797975475],[-10538372.835670128,4544719.3885353124],[-10538628.609115094,4544723.7102186158],[-10538883.990706667,4544728.0187330609],[-10539138.771803461,4544732.3173694341],[-10539393.044111609,4544736.6005571261],[-10539647.388002429,4544740.8760231957],[-10539901.89998753,4544745.1484530447],[-10540156.602192419,4544749.4272164581],[-10540411.510035031,4544753.7015510816],[-10540409.516558914,4545011.464492118],[-10540407.581414344,4545261.6346397121],[-10540407.540515346,4545267.7749840813],[-10540405.585908968,4545522.6300074952],[-10540403.639924934,4545776.033127781],[-10540408.646171832,4546030.7138456572],[-10540413.660223639,4546285.8628851045],[-10540418.654454809,4546540.7186745079],[-10540423.648786219,4546795.5367559632],[-10540169.830231542,4546793.6509828353],[-10539914.981285112,4546791.7520332616],[-10539659.142994389,4546789.8434534455],[-10539402.302744793,4546787.9222039273],[-10539144.410576398,4546786.2473936062],[-10538885.474600747,4546784.5591534115],[-10538625.54427509,4546782.8520380454],[-10538364.596973222,4546781.1300999233],[-10538364.617259106,4546785.6968035167],[-10538365.527622484,4547039.6457802933],[-10538366.42610454,4547289.6548522227],[-10538366.449403103,4547293.1048700474],[-10538367.346959667,4547546.0832824446],[-10538368.241517046,4547798.5423531318],[-10538111.664664298,4547800.4588131551],[-10537854.971777482,4547802.3702067789],[-10537598.821418293,4547804.2713449262],[-10537343.010852234,4547806.1647595316],[-10537087.476705972,4547808.054883115],[-10536832.59971991,4547809.9344985625],[-10536577.929172723,4547811.8096827026],[-10536323.617841125,4547813.6767634219],[-10536321.703172931,4547559.1429851968],[-10536319.784904268,4547304.1441710358],[-10536317.866939515,4547048.698211967]]]},"attributes":{"objectid":1283,"field_kid":"1000146839","approxacre":3215,"field_name":"GARLAND","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000146839}},{"geometry":{"rings":[[[-10634869.545562172,4538692.5660530133],[-10634869.752919912,4538436.7883434454],[-10634869.959883906,4538182.1044687582],[-10634870.160647621,4537928.5111854495],[-10634870.3619186,4537676.0100587001],[-10635123.159804665,4537672.1010306356],[-10635375.537018824,4537668.1933975406],[-10635627.486753423,4537664.2856410993],[-10635879.005504549,4537660.3801653637],[-10636132.108741682,4537657.8372621508],[-10636385.108162325,4537655.2891722973],[-10636388.560935719,4537655.2527174829],[-10636638.009773187,4537652.7295693839],[-10636854.545888385,4537650.5336371949],[-10636890.826394651,4537651.1377780447],[-10636891.455198785,4537911.9138258453],[-10636892.085509716,4538173.5317727448],[-10636892.10487687,4538180.9418640882],[-10636892.709721114,4538436.3477581237],[-10636893.336441712,4538700.2139468295],[-10636640.276141761,4538700.3896430712],[-10636386.806782857,4538700.5587609401],[-10636133.887140587,4538700.7152224369],[-10635881.190047955,4538700.8662417447],[-10635881.160422428,4538685.8440005826],[-10635628.893121365,4538687.5310907625],[-10635376.207150595,4538689.2146398081],[-10635123.090296395,4538690.8914842568],[-10634869.545562172,4538692.5660530133]]]},"attributes":{"objectid":1297,"field_kid":"1000152624","approxacre":319,"field_name":"ERICKSON","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":88,"maxoilwell":1,"lastoilpro":31,"lastoilwel":1,"lastodate":"9-1988","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000152624}},{"geometry":{"rings":[[[-10559600.769158192,4510976.2654908774],[-10559852.767629126,4510980.0099317934],[-10559851.650516758,4511236.3206461035],[-10559850.532705301,4511492.9255303862],[-10559849.411586786,4511749.0627522226],[-10559848.290566817,4512004.9917887524],[-10559847.277068352,4512260.6607481791],[-10559846.264472453,4512516.593202089],[-10559845.250776798,4512772.7887911722],[-10559844.237783521,4513029.2551089125],[-10559592.207023246,4513025.7164306641],[-10559340.068339538,4513022.1684099184],[-10559087.903125916,4513018.6217777515],[-10558835.660523918,4513015.0655510752],[-10558583.335352559,4513015.566474258],[-10558334.555050621,4513016.0544483177],[-10558331.268978234,4513016.0703048119],[-10558079.477819635,4513016.5472518094],[-10557832.220666014,4513017.0098758312],[-10557827.944557058,4513017.0286209602],[-10557828.624727178,4512761.424270547],[-10557829.30589824,4512505.8089927314],[-10557829.988770928,4512250.1630971907],[-10557830.671042666,4511994.4965575291],[-10557831.356617961,4511738.8137928415],[-10557832.040290803,4511483.109503095],[-10557832.727267183,4511227.3869713731],[-10557833.413842877,4510971.6494802544],[-10558085.917867366,4510971.3501906274],[-10558338.641443679,4510971.0444678832],[-10558343.192065075,4510971.0375983072],[-10558591.619411847,4510970.7393802796],[-10558844.777386479,4510970.4293734524],[-10559096.765132006,4510972.2946872432],[-10559345.291505992,4510974.1288988171],[-10559348.773601344,4510974.1201192094],[-10559448.117188679,4510973.9937132569],[-10559600.769158192,4510976.2654908774]]]},"attributes":{"objectid":1312,"field_kid":"1000147515","approxacre":634,"field_name":"GIRARD","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000147515}},{"geometry":{"rings":[[[-10598974.449139809,4454946.0701247556],[-10598972.95311608,4454912.9788102433],[-10598716.625502415,4454917.2656176332],[-10598456.930613881,4454921.6013282267],[-10598445.473027056,4454921.7885573581],[-10598195.221407557,4454925.9575940585],[-10597931.063583719,4454930.3493465753],[-10597677.865073729,4454934.5522311023],[-10597424.647842767,4454938.7488402268],[-10597170.143130671,4454942.9656404154],[-10596916.654488537,4454947.1578546111],[-10596907.250031654,4454756.7992334329],[-10596906.012523245,4454687.6020850036],[-10596901.769809471,4454450.4338709414],[-10596901.454936581,4454433.9641753528],[-10596896.993835578,4454186.2248927606],[-10596892.637126379,4453944.1485882439],[-10596894.755198637,4453696.3168389639],[-10596896.92475435,4453442.529986403],[-10596897.225570725,4453408.8722943841],[-10596899.158206251,4453182.665202558],[-10596901.429125551,4452916.84920114],[-10596901.73853324,4452881.7310856562],[-10596902.41880689,4452802.6869156538],[-10596905.846260106,4452654.3921638457],[-10596911.966827169,4452389.5624374589],[-10596912.36417344,4452373.0096155563],[-10596918.179371413,4452122.4077380663],[-10596924.433033599,4451852.875530689],[-10596673.85914354,4451851.964812262],[-10596422.130923338,4451851.0437828042],[-10596417.72524742,4451851.0224966705],[-10596169.297729835,4451850.1110626515],[-10595915.343744885,4451849.1726755742],[-10595662.74558886,4451868.5308822328],[-10595410.809898278,4451887.8317824313],[-10595158.303353582,4451907.1737472769],[-10594905.642834594,4451926.5222713863],[-10594908.54698853,4451680.6800077474],[-10594911.528744878,4451428.3131787274],[-10594911.790770911,4451407.7088645799],[-10594914.620042266,4451169.555148216],[-10594917.771022843,4450904.3740080791],[-10594917.956437847,4450889.5355517399],[-10594920.85200564,4450645.3528505731],[-10594923.93897754,4450384.971399935],[-10594924.077888684,4450373.8448275663],[-10594927.052761978,4450123.1874701157],[-10594930.175939094,4449860.017100363],[-10594933.431816792,4449600.3718131734],[-10594936.542982299,4449352.2483470114],[-10594936.665797176,4449342.7814571643],[-10594939.867260871,4449086.7125190003],[-10594942.886409504,4448845.1941431696],[-10594943.027306432,4448832.8259610515],[-10594946.213571096,4448578.0765482262],[-10594949.205719871,4448338.8365700785],[-10594949.337910373,4448326.7352028601],[-10594952.442063652,4448078.1498149987],[-10594955.501714295,4447833.1741469046],[-10595240.521454185,4447820.0378599549],[-10595514.302841775,4447807.4108546386],[-10595520.881725337,4447807.1118915789],[-10595781.928836057,4447795.0640170379],[-10596048.800262403,4447782.7400132064],[-10596098.427969234,4447780.4532653103],[-10596310.926971905,4447774.5288859894],[-10596567.840283422,4447767.3606814845],[-10596571.107150054,4447767.2731734142],[-10596829.358705584,4447760.0608384619],[-10597085.706867589,4447752.8930105465],[-10597304.494700193,4447760.6537948539],[-10597547.286526786,4447769.2600511871],[-10597588.648048436,4447770.7251793882],[-10597802.429201944,4447778.2948248405],[-10598058.990712615,4447787.374291895],[-10598093.204186702,4447788.5866361381],[-10598322.27197475,4447796.6889822502],[-10598584.521144493,4447805.9578722874],[-10598602.19773877,4447806.5805524308],[-10598845.765753647,4447815.1833459642],[-10599105.969660537,4447824.3655279949],[-10599107.569013333,4448048.1183567159],[-10599107.881677344,4448081.4505068688],[-10599110.181210095,4448327.7489047199],[-10599110.261816483,4448337.1217976706],[-10599112.648139341,4448590.8960113376],[-10599114.706562806,4448809.8883778173],[-10599114.534527013,4448823.3227271615],[-10599114.296582699,4448842.3327427553],[-10599111.028514776,4449090.2470865967],[-10599107.948891141,4449323.8343703756],[-10599107.760928648,4449336.5757706733],[-10599104.528163828,4449581.3131640786],[-10599101.314303864,4449824.6166290483],[-10599320.290225839,4449825.4587633163],[-10599561.979029633,4449826.3828541925],[-10599612.516786395,4449826.5765945427],[-10599815.182006033,4449827.3451656867],[-10600068.816379495,4449828.3028421588],[-10600119.865825968,4449828.4918233762],[-10600336.544899443,4449829.2981569543],[-10600605.152031997,4449830.2934871744],[-10600631.541552147,4449830.3967135157],[-10600874.569698716,4449831.2913411483],[-10601144.829836272,4449832.2801756142],[-10601145.047102822,4450086.4036378292],[-10601145.263963275,4450340.045203343],[-10601145.492231527,4450593.2296839645],[-10601145.721895413,4450845.902835777],[-10601145.955358963,4451098.1739253365],[-10601146.188006924,4451349.1775142448],[-10601146.409632251,4451599.3240142064],[-10601146.629443964,4451848.474686753],[-10601104.186535407,4452099.9776514787],[-10601061.578454228,4452352.4506099382],[-10601060.747053569,4452357.4114857949],[-10601018.792586125,4452605.9058059212],[-10600975.844648527,4452860.2791736228],[-10600974.918343786,4452865.6710447827],[-10600965.556925673,4453114.1269166907],[-10600960.356527785,4453252.1608838765],[-10600959.560757998,4453368.9705413096],[-10600959.540982941,4453373.1096367715],[-10600957.830604253,4453623.8695868822],[-10600956.087141879,4453879.3321064394],[-10600956.7146868,4454141.4902025536],[-10600957.304311566,4454388.3531209845],[-10600957.345609006,4454401.3560820548],[-10600957.967094431,4454658.9882000405],[-10600958.543611957,4454897.8851010269],[-10600958.587953094,4454914.3762249928],[-10600959.187564874,4455167.8330901554],[-10600959.754675904,4455407.1333101867],[-10600959.778645525,4455419.4555759653],[-10600960.378315218,4455669.2833497999],[-10600960.97496037,4455917.2975775367],[-10600969.529027816,4456170.9965887871],[-10600971.084649546,4456217.1357042361],[-10600975.017360296,4456424.180208968],[-10600977.513433767,4456554.5084568923],[-10600980.276730847,4456677.575680078],[-10600985.960086884,4456930.8471537428],[-10600991.847481966,4457193.2608472276],[-10600997.298951697,4457436.315882138],[-10600997.612964023,4457449.4407568052],[-10601003.233308936,4457699.6078084148],[-10601008.707710583,4457943.3036112348],[-10600758.613903429,4457964.8961150274],[-10600525.215485476,4457985.0397077594],[-10600509.700856406,4457986.379434905],[-10600261.996401429,4458007.7482966157],[-10600031.928416645,4458027.5917820903],[-10600025.8884758,4458028.1101729628],[-10600015.422336031,4458027.9482552204],[-10599768.384355392,4458024.2003063839],[-10599531.1108067,4458020.5963074099],[-10599520.919883516,4458020.4418033203],[-10599273.021511903,4458016.674252782],[-10599024.686937865,4458012.89489213],[-10599017.30586418,4457750.1800152687],[-10599010.469551725,4457506.919818202],[-10599010.08694982,4457493.5743732797],[-10599003.044010678,4457243.0707407165],[-10598996.172942303,4456998.6834996874],[-10598989.021332957,4456744.6433128323],[-10598983.818604648,4456559.8220838634],[-10598981.835582376,4456490.54105563],[-10598974.599564722,4456235.7765913904],[-10598967.430150297,4455983.3015118595],[-10598969.466004567,4455728.8278958891],[-10598971.538344851,4455469.7218302134],[-10598971.74726579,4455443.3957995465],[-10598973.609666178,4455209.1296934541],[-10598975.51335139,4454969.6808192134],[-10598974.449139809,4454946.0701247556]]]},"attributes":{"objectid":1380,"field_kid":"1000149383","approxacre":6191,"field_name":"BARTLETT","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1478,"maxoilwell":1,"lastoilpro":97,"lastoilwel":1,"lastodate":"6-1980","cumm_gas":36146,"maxgaswell":7,"lastgaspro":1780,"lastgaswel":6,"lastgdate":"4-1992","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149383}},{"geometry":{"rings":[[[-10613018.168081835,4439777.4855202436],[-10613269.714336554,4439779.3509933716],[-10613272.446429502,4440033.4902508585],[-10613275.194853624,4440288.998419201],[-10613277.927354166,4440543.9791915733],[-10613280.66325924,4440799.054985621],[-10613283.415988674,4441054.6950746486],[-10613286.179840256,4441311.3786812089],[-10613288.926155152,4441566.3061971115],[-10613291.663952537,4441820.4296366367],[-10613294.138141932,4442074.3041317957],[-10613296.610125972,4442327.9018383222],[-10613299.082607836,4442581.2275013598],[-10613301.553384982,4442834.2823553532],[-10613304.014748391,4443087.0568506559],[-10613306.473606095,4443339.553600926],[-10613308.933161838,4443591.7767247641],[-10613311.390912699,4443843.7233183496],[-10613058.629517198,4443841.2445481298],[-10612805.555859704,4443838.7554837521],[-10612802.548976574,4443838.7272899086],[-10612552.166035661,4443836.2539932067],[-10612298.462948447,4443833.7403274029],[-10612294.435583165,4443833.6984294178],[-10612045.349343808,4443831.2260545567],[-10611791.31176859,4443828.6978298174],[-10611786.341511048,4443828.6453654729],[-10611536.372849001,4443826.1565318052],[-10611280.505854066,4443823.6005293382],[-10611025.554536453,4443822.8187814178],[-10610776.643415246,4443822.0487779304],[-10610771.76826817,4443822.0287966011],[-10610519.064754045,4443821.2456206093],[-10610271.325990621,4443820.4728980688],[-10610267.473628271,4443820.456839391],[-10610015.487044265,4443819.6561309593],[-10609766.892288998,4443818.8608057853],[-10609764.003242569,4443818.8561920114],[-10609513.033035628,4443818.0488716159],[-10609262.577925216,4443817.2376811681],[-10609010.273165161,4443815.7043470796],[-10608762.29771984,4443814.192103954],[-10608757.640425058,4443814.1684933463],[-10608504.662284615,4443812.6199615868],[-10608257.477955306,4443811.0995937428],[-10608251.386499161,4443811.0601328826],[-10608249.039236411,4443556.6124508968],[-10608246.688665558,4443301.7640882144],[-10608244.343706539,4443047.4749772251],[-10608242.000752021,4442793.4303419944],[-10608239.667105887,4442539.1712391991],[-10608237.339172175,4442285.5194676761],[-10608235.001323247,4442031.5200617816],[-10608232.662272388,4441777.4933940535],[-10608484.599388853,4441778.5756479157],[-10608731.005696695,4441779.6286157444],[-10608736.213430822,4441779.649991014],[-10608987.443427645,4441780.7156688822],[-10609238.309502643,4441781.7736852961],[-10609237.080387577,4441528.4508179529],[-10609235.851975027,4441275.3179320088],[-10609234.629971636,4441022.3773960043],[-10609233.410973433,4440769.6279422473],[-10609232.196994154,4440518.226932019],[-10609230.978903046,4440266.1237126756],[-10609229.75970378,4440013.3395200958],[-10609228.537894417,4439759.8520893669],[-10609482.505361196,4439762.1238122443],[-10609736.271794699,4439764.3873792086],[-10609989.827083264,4439766.6474280776],[-10610239.389843959,4439768.8658356676],[-10610243.163016846,4439768.8499298338],[-10610494.796344738,4439767.7042183513],[-10610747.029467789,4439766.5490025198],[-10610999.894723449,4439765.3812749721],[-10611253.312119031,4439764.2029131204],[-10611507.180767108,4439766.134411932],[-10611760.004503835,4439768.0507035814],[-10612011.782728512,4439769.9502837686],[-10612262.513839317,4439771.8360356428],[-10612514.517324673,4439773.7273500534],[-10612766.418491203,4439775.6100107701],[-10613018.168081835,4439777.4855202436]]]},"attributes":{"objectid":1386,"field_kid":"1000149382","approxacre":2878,"field_name":"BANZET","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1567,"maxoilwell":1,"lastoilpro":114,"lastoilwel":1,"lastodate":"6-1985","cumm_gas":679,"maxgaswell":1,"lastgaspro":5,"lastgaswel":1,"lastgdate":"10-1985","avgdepth":729.20000000000005,"avgdepthsl":-222.40000000000001,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149382}},{"geometry":{"rings":[[[-10586181.716463834,4539615.4316890286],[-10586193.371138334,4539614.6430095779],[-10586430.883291565,4539623.6603078116],[-10586691.163400728,4539633.5351492884],[-10586700.517246293,4539633.8801387027],[-10586952.676126143,4539643.4541652193],[-10587215.472326318,4539653.4248224013],[-10587471.364286654,4539679.4792868663],[-10587721.668624299,4539704.9567177715],[-10587727.007761927,4539705.5005254438],[-10587982.378524398,4539731.4966374477],[-10588230.320948161,4539756.7290433152],[-10588237.479577396,4539757.4555999245],[-10588236.912232425,4540013.2447160156],[-10588236.343983939,4540268.8300161595],[-10588235.770627111,4540524.2124979757],[-10588235.198568834,4540779.3522778014],[-10588234.223333428,4540965.2290479848],[-10588233.035525488,4541191.2375803739],[-10588232.641214002,4541262.8285600133],[-10588231.710522199,4541439.5663121641],[-10588230.377966439,4541692.6856432911],[-10587974.61422307,4541691.9129428752],[-10587719.621765479,4541691.1377101485],[-10587463.639471032,4541690.3546301248],[-10587206.564621745,4541689.5626902292],[-10586947.775571145,4541694.5342728738],[-10586692.952774521,4541699.4220608938],[-10586689.973353423,4541699.4777579298],[-10586433.140548658,4541704.3999806466],[-10586181.960534453,4541709.2090408895],[-10586177.276755497,4541709.2239807649],[-10586176.606593076,4541452.2830217583],[-10586175.935017761,4541194.3789738584],[-10586175.92392865,4541187.8223675471],[-10586175.27604533,4540935.4848225126],[-10586174.610253651,4540675.6157028219],[-10586173.957415268,4540419.0495361788],[-10586173.289493049,4540156.7787703676],[-10586173.221116431,4540131.1892994205],[-10586172.594269408,4539888.4979471723],[-10586171.891789241,4539616.0854627797],[-10586181.716463834,4539615.4316890286]]]},"attributes":{"objectid":1393,"field_kid":"1000150020","approxacre":638,"field_name":"SAVONBURG SOUTHWEST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150020}},{"geometry":{"rings":[[[-10620397.288892675,4463912.9454927612],[-10620394.154490406,4463663.1588368118],[-10620391.010370996,4463412.6658582473],[-10620387.859037986,4463161.5475151623],[-10620384.696886986,4462909.7780977879],[-10620382.360984087,4462657.2508874955],[-10620380.069972459,4462409.7187637631],[-10620380.017274821,4462405.0890022684],[-10620377.675069999,4462153.2983202208],[-10620375.334969275,4461901.7494278084],[-10620386.493361454,4461901.9225264434],[-10620386.624198308,4461648.1915855817],[-10620386.756528791,4461393.4452626612],[-10620386.76480115,4461388.760050687],[-10620386.888750495,4461137.6147971433],[-10620387.015056901,4460880.72224868],[-10620387.15221354,4460628.5819912842],[-10620387.285421027,4460383.425726587],[-10620387.287577685,4460377.6531390306],[-10620387.415149312,4460128.8046127278],[-10620387.542037681,4459882.169772163],[-10620387.276820876,4459628.9839336928],[-10620387.008781938,4459373.4305453161],[-10620387.002936643,4459368.5774385259],[-10620386.735130632,4459117.1462796964],[-10620386.458966235,4458859.5871680221],[-10620385.635500088,4458605.9206197979],[-10620384.811936341,4458352.5843998585],[-10620383.99698483,4458099.5508584762],[-10620383.184438489,4457846.8329073526],[-10620369.861037329,4457846.8171300879],[-10620123.105500935,4457846.5474069575],[-10619882.288028549,4457846.2778317705],[-10619875.557448378,4457846.2740224516],[-10619627.553568786,4457845.9865626404],[-10619378.027729822,4457845.6929118559],[-10619126.410687633,4457847.1279341998],[-10618876.472185723,4457848.547177217],[-10618870.823256139,4457848.575666422],[-10618627.065298351,4457849.9550072514],[-10618378.57897515,4457851.3552011047],[-10618375.56606937,4457594.9556307876],[-10618372.563682068,4457339.3562244307],[-10618369.570311671,4457084.5763858287],[-10618366.587259604,4456830.6075176718],[-10618363.606611464,4456576.8131218115],[-10618360.633076496,4456323.6529578418],[-10618357.662744818,4456070.4802760668],[-10618354.695017569,4455817.514531998],[-10618353.390523739,4455565.8144603614],[-10618352.08793384,4455314.34208625],[-10618350.783643264,4455063.0451697232],[-10618349.47745195,4454811.9441602426],[-10618348.455684839,4454560.2907596501],[-10618347.428300813,4454307.3966025542],[-10618347.391900985,4454300.4306644257],[-10618346.378868317,4454051.7476921175],[-10618345.3425646,4453797.7563335691],[-10618589.767731957,4453792.9397768565],[-10618831.998161554,4453788.1630792394],[-10618835.758209856,4453788.083978802],[-10618898.616202604,4453786.841919193],[-10619083.263480732,4453788.1918683788],[-10619332.950488951,4453790.0115620047],[-10619587.3056085,4453793.3481927086],[-10619839.16353916,4453796.6458424544],[-10620088.939260952,4453799.91067327],[-10620336.506027278,4453803.1415519789],[-10620342.799306845,4453803.222060089],[-10620347.382508384,4453803.2878348408],[-10620586.292292485,4453810.4218361881],[-10620586.67163145,4453810.449210505],[-10620837.150378752,4453828.1218835153],[-10620845.062434325,4453828.6772874761],[-10621087.508847153,4453840.9012071379],[-10621338.137325618,4453853.5319305845],[-10621339.818804314,4454089.1256083315],[-10621341.586176172,4454336.7964672241],[-10621341.742729818,4454358.9696970135],[-10621343.398054913,4454591.6107154628],[-10621345.227371473,4454848.7195984032],[-10621345.316880571,4454862.2871195534],[-10621347.056692373,4455106.4129602062],[-10621348.536216944,4455313.7774820533],[-10621349.127269521,4455361.2112431061],[-10621349.162530836,4455363.8503570966],[-10621352.253554519,4455614.3830020232],[-10621355.316328481,4455862.7620588448],[-10621609.165424429,4455859.8158730473],[-10621671.393671673,4455859.0914724721],[-10621863.26732561,4455858.5169896288],[-10622117.324078765,4455857.7479112083],[-10622371.50547605,4455856.9723079838],[-10622625.212925358,4455856.1925495956],[-10622878.997263605,4455855.4075206136],[-10623132.780300381,4455854.6188510908],[-10623386.900927503,4455853.8206492541],[-10623637.101718483,4455852.5082332585],[-10623887.397919837,4455851.187659882],[-10623890.999584233,4455851.1711824089],[-10624138.154153217,4455849.8657181924],[-10624389.252382061,4455848.5318592303],[-10624394.448690232,4455848.5056310678],[-10624640.810642865,4455847.1874671075],[-10624893.016452452,4455845.8325467668],[-10625145.770596135,4455844.470108714],[-10625399.377525911,4455843.0975244865],[-10625650.379439224,4455841.0921213543],[-10625897.373919178,4455839.111723138],[-10625900.503137264,4455839.0892071212],[-10626150.123353258,4455837.079877886],[-10626391.51225215,4455835.1290887846],[-10626399.109436175,4455835.0675199451],[-10626400.006120939,4456087.2675418388],[-10626400.906921238,4456341.0395886665],[-10626400.938808993,4456348.3821081724],[-10626401.808633525,4456596.4064991102],[-10626402.70925523,4456853.3312237309],[-10626403.588304525,4457103.4230217896],[-10626404.466148457,4457352.9584643776],[-10626405.351997683,4457601.9390192078],[-10626406.233137522,4457850.3680371977],[-10626399.916435692,4457850.3505511265],[-10626402.828754378,4458103.233746618],[-10626405.746882467,4458356.5459333472],[-10626408.672321649,4458610.2819935819],[-10626411.603269886,4458864.4479858521],[-10626414.121533871,4459117.6012138166],[-10626416.641800553,4459370.8475404205],[-10626419.169182835,4459625.1959687229],[-10626421.704279123,4459880.3170203334],[-10626423.007328074,4460132.0625108508],[-10626424.322006531,4460386.1490278477],[-10626425.637282893,4460639.8566850051],[-10626426.95416468,4460894.1008705283],[-10626428.274960449,4461149.7356381537],[-10626429.602573182,4461406.704814882],[-10626430.931196023,4461664.9887765599],[-10626432.266635874,4461924.615255909],[-10626445.386896022,4461925.0397594199],[-10626444.017206324,4462184.1133056777],[-10626442.683210311,4462436.3047312712],[-10626442.65350938,4462441.1285752123],[-10626441.303517124,4462696.5223496892],[-10626439.959224198,4462950.8577120649],[-10626438.570842089,4463214.1054790737],[-10626437.214955088,4463471.2099033119],[-10626437.19134655,4463473.9172443645],[-10626435.846465958,4463730.1006518872],[-10626434.518081548,4463982.9680359671],[-10626428.103271937,4463982.8084620191],[-10626408.465588743,4463982.3012111299],[-10626185.261699148,4463966.4982756181],[-10625934.204526439,4463948.7185518686],[-10625927.660965992,4463948.2595701059],[-10625681.364692496,4463930.8085240945],[-10625426.678924128,4463912.7580145132],[-10625175.787360702,4463912.1628934164],[-10624938.152808186,4463911.5944334399],[-10624927.184440451,4463911.5710865781],[-10624680.715985293,4463910.9810830709],[-10624448.800337603,4463910.4204062233],[-10624436.434656054,4463910.3935122201],[-10624192.251439987,4463909.7930021398],[-10623961.22001332,4463909.220156162],[-10623949.405568367,4463909.1881223209],[-10623707.885728199,4463908.5894264616],[-10623467.693220921,4463907.9879940012],[-10623211.957977312,4463909.3052929109],[-10622956.085975835,4463910.6166844061],[-10622947.49935936,4463910.665631352],[-10622700.079819579,4463911.9344814774],[-10622443.946316285,4463913.2424764168],[-10622435.674263032,4463913.2806247491],[-10622187.514568526,4463914.5332527878],[-10621968.679140056,4463915.6324555939],[-10621931.028751411,4463914.908599698],[-10621924.631662363,4463914.7870959537],[-10621849.468443923,4463913.341648642],[-10621674.263472117,4463910.1744507682],[-10621417.033456288,4463905.5179394474],[-10621160.986857807,4463907.3937123073],[-10620906.728524644,4463909.2516822629],[-10620651.89893182,4463911.1013488676],[-10620397.288892675,4463912.9454927612]]]},"attributes":{"objectid":1498,"field_kid":"1000149381","approxacre":9131,"field_name":"ANGOLA","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149381}},{"geometry":{"rings":[[[-10565890.438109269,4548098.8141961778],[-10565886.246648533,4547847.0805296134],[-10565871.07919571,4547846.93944191],[-10565619.822024031,4547844.5476617664],[-10565379.906778056,4547842.2585944813],[-10565369.702268722,4547842.1606942266],[-10565120.702409582,4547839.7700534882],[-10564872.814237036,4547837.3838454159],[-10564867.276976088,4547579.6855877414],[-10564861.823578004,4547325.9201585082],[-10564861.744114596,4547322.6460677497],[-10564856.223461455,4547066.282586812],[-10564850.8136926,4546814.9806819195],[-10564850.736541606,4546810.59053584],[-10565100.963525794,4546811.8202413367],[-10565352.345046161,4546813.052099729],[-10565604.795203315,4546814.2819318688],[-10565858.323308036,4546815.5104975877],[-10565855.150966423,4546559.2809138717],[-10565851.98522746,4546303.6352160452],[-10565848.827093467,4546048.4391311593],[-10565845.678662311,4545794.2181357071],[-10565594.467131961,4545794.3583272463],[-10565338.261722175,4545794.4953508414],[-10565335.045299783,4545794.4954760186],[-10565083.073289476,4545794.6174327107],[-10564828.860185584,4545794.7335634986],[-10564831.08544529,4545544.3523908257],[-10564833.291464489,4545296.0649941191],[-10564835.524119444,4545047.21575284],[-10564837.754268644,4544798.6976086209],[-10565094.065414906,4544796.3433796046],[-10565351.400846688,4544793.9719325425],[-10565609.725223042,4544791.58883854],[-10565869.057966487,4544789.1889063613],[-10566125.671356717,4544787.492328044],[-10566380.864803625,4544785.7981548654],[-10566634.656027636,4544784.1157564679],[-10566887.031112738,4544782.4348768899],[-10567134.319615975,4544780.201945981],[-10567382.118910398,4544777.9605330825],[-10567630.405869229,4544775.7116511147],[-10567879.191304993,4544773.4537806911],[-10568126.293290352,4544771.4443309456],[-10568372.354471145,4544769.4389328137],[-10568617.3411084,4544767.4294828167],[-10568861.267218282,4544765.4220585516],[-10568861.211517874,4544781.1514725173],[-10568860.53686095,4545021.3780493522],[-10568859.815706631,4545278.2244074391],[-10568859.789275242,4545289.8878582288],[-10568859.089237979,4545536.0224855291],[-10568858.353351379,4545794.6414203271],[-10569116.232633598,4545790.4216364427],[-10569373.723866673,4545786.2027412774],[-10569630.798317403,4545781.9792898111],[-10569887.464695802,4545777.7574868333],[-10569888.751089565,4546032.3792500002],[-10569890.038982851,4546287.2650660975],[-10569891.326874038,4546542.4020375675],[-10569892.616765393,4546797.7961350838],[-10569893.905352887,4547053.4705535192],[-10569895.196240665,4547309.4284797953],[-10569896.487827368,4547565.6134489393],[-10569897.7799126,4547822.044095845],[-10569892.693925869,4547822.0983049637],[-10569639.515483998,4547825.1031036703],[-10569380.842382362,4547828.1647728179],[-10569377.029068671,4547828.2059363117],[-10569121.783133829,4547831.2218840457],[-10568862.315312374,4547834.2816565977],[-10568614.923469195,4547837.089766385],[-10568367.677595003,4547839.889264958],[-10568363.306035068,4547839.9484135071],[-10568120.562472092,4547842.6900312854],[-10567873.5937187,4547845.4745871658],[-10567867.791703166,4547845.5403221967],[-10567871.600332374,4548097.1189934183],[-10567875.425170746,4548349.8165761828],[-10567879.248296926,4548603.7038299637],[-10567883.088733228,4548858.7465153998],[-10567638.524676323,4548859.3947046138],[-10567394.790680183,4548860.0339001194],[-10567151.956725786,4548860.6647352185],[-10566909.990475703,4548861.2880965723],[-10566910.143093957,4548868.0149545139],[-10566659.550992198,4548864.9909706628],[-10566408.208622266,4548861.9525477039],[-10566156.028482895,4548858.8966457164],[-10565903.057728657,4548855.8257979946],[-10565898.843449058,4548603.1916215448],[-10565894.633872433,4548350.8517260887],[-10565890.438109269,4548098.8141961778]]]},"attributes":{"objectid":2301,"field_kid":"1000146849","approxacre":2346,"field_name":"PETERSBURG","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":91250,"maxgaswell":2,"lastgaspro":35,"lastgaswel":2,"lastgdate":"1-1997","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000146849}},{"geometry":{"rings":[[[-10635849.264361216,4512095.6792829558],[-10635848.550284326,4511839.8999584727],[-10635847.836308258,4511584.2426178912],[-10635847.109919881,4511328.8552959608],[-10635846.381426636,4511073.0690789251],[-10635845.939474372,4510820.4410345983],[-10635845.682879055,4510673.1544511467],[-10635845.018840391,4510576.8246164853],[-10635844.950011482,4510568.438098927],[-10635843.205300966,4510316.4346680958],[-10635841.53574203,4510075.3536103051],[-10635841.45708802,4510064.6833784953],[-10635839.701365221,4509812.708975832],[-10635838.004058616,4509568.9604070857],[-10635837.949547123,4509560.7947684415],[-10635836.201233232,4509308.9322974859],[-10635834.45632349,4509057.1305180648],[-10635835.238191802,4509039.4155720258],[-10635835.427668348,4508804.8088255562],[-10635835.631765988,4508552.0951918857],[-10635835.631727334,4508544.7666895632],[-10635835.828352733,4508298.9155090684],[-10635836.029642511,4508045.3143491335],[-10636087.70943922,4508046.5047584623],[-10636340.162403634,4508047.6917567849],[-10636343.267989473,4508047.7052397784],[-10636593.104116568,4508048.8845561892],[-10636846.628283165,4508050.0760905594],[-10637097.226465372,4508051.2449303651],[-10637347.57736991,4508052.4065797227],[-10637597.586190356,4508053.5604083007],[-10637847.577591129,4508054.7071713097],[-10637847.606985748,4508046.9814563999],[-10637848.737403983,4507795.2143593514],[-10637849.839521646,4507549.7165265931],[-10637849.873030551,4507543.9376588473],[-10637851.007157894,4507293.1424881918],[-10637852.140186429,4507042.8264156887],[-10637857.877960123,4506787.6331769666],[-10637863.603122832,4506532.9958008919],[-10637869.316775132,4506278.7834294345],[-10637874.283253921,4506057.7990507074],[-10637874.595341707,4506025.044347845],[-10637877.006493738,4505772.213224642],[-10637879.410841703,4505520.071377906],[-10637881.809687125,4505268.6313715428],[-10637884.202028919,4505017.9017321179],[-10637886.516631585,4504756.6966787456],[-10637888.78000677,4504501.5162258893],[-10637888.824832773,4504496.6129822079],[-10637891.129536055,4504237.7124864645],[-10637893.354595114,4503987.8952759132],[-10637893.429940434,4503979.9765637936],[-10637895.716034865,4503723.4452341339],[-10637897.938393133,4503474.0229120199],[-10637897.995427746,4503468.0894022407],[-10637900.252701724,4503213.9016676359],[-10637902.500771346,4502960.8905207105],[-10637905.851873752,4502706.6096502328],[-10637909.189566661,4502453.4041797323],[-10637912.531560775,4502199.4228713289],[-10637915.876357505,4501945.2889562966],[-10637919.198338186,4501693.0420273701],[-10637922.540434279,4501439.3023129888],[-10637922.579965504,4501436.6435445398],[-10637925.898142891,4501184.5029095924],[-10637929.279967533,4500927.4276734637],[-10637677.250613818,4500927.0357116451],[-10637423.420236604,4500926.6359381489],[-10637170.510493603,4500926.2204010114],[-10636917.599549193,4500925.7986856261],[-10636917.125404287,4500669.0176848872],[-10636916.652464185,4500412.9259405574],[-10636916.175420705,4500157.0888171112],[-10636915.698979856,4499901.6469935104],[-10636914.326932469,4499646.1869331114],[-10636912.949273212,4499389.6640427867],[-10636912.907492477,4499383.0547267664],[-10636911.563799219,4499132.0049050665],[-10636910.18292645,4498873.5995097691],[-10636951.899703369,4498872.7791294046],[-10637161.030830642,4498874.0953221191],[-10637406.10475128,4498875.633419808],[-10637411.537256513,4498875.6752586886],[-10637661.732532578,4498877.2519184062],[-10637911.555389946,4498878.8176117176],[-10637912.513214082,4498626.4430881636],[-10637913.45884189,4498377.5635796376],[-10637913.481049825,4498374.1328708539],[-10637914.440376407,4498121.8942660727],[-10637915.357609725,4497880.5393594885],[-10637915.399803499,4497869.7273945995],[-10637916.360041793,4497619.6252866071],[-10637917.286586704,4497378.481580968],[-10637917.308771377,4497370.3673221981],[-10637918.253701011,4497121.9715908589],[-10637919.195030954,4496874.444459145],[-10637920.995097339,4496621.0867886003],[-10637922.796663422,4496367.3068540394],[-10637924.602431946,4496113.0455790004],[-10637926.41280351,4495858.3312278641],[-10637668.720386721,4495856.9888029937],[-10637411.852596907,4495855.6451166514],[-10637155.815140443,4495854.2899608174],[-10636900.611120841,4495852.9325352926],[-10636900.816241359,4495596.8135965969],[-10636901.021561356,4495340.551825203],[-10636901.235490277,4495084.1448371606],[-10636901.450019065,4494827.5836961316],[-10636913.00160813,4494827.6693720762],[-10637158.270797832,4494829.3396533504],[-10637415.91450173,4494831.0881749447],[-10637424.583349293,4494831.1471393751],[-10637674.384734849,4494832.8374516973],[-10637933.678193448,4494834.5838292725],[-10637932.447642837,4494579.1877839258],[-10637931.212782755,4494322.8850343041],[-10637931.172290865,4494313.5418051993],[-10637929.97871902,4494065.6913970606],[-10637928.736441486,4493807.602905537],[-10637928.667802583,4493795.1651997101],[-10637927.484246908,4493548.3532681242],[-10637926.237955332,4493288.3972822493],[-10637926.190760219,4493279.9264715714],[-10637924.978245152,4493027.7589384532],[-10637923.722135518,4492766.4415630968],[-10637935.747260608,4492766.5014026789],[-10638177.344392948,4492767.5681747692],[-10638431.305731595,4492768.6815575585],[-10638685.600144807,4492769.8037592731],[-10638933.361009406,4492770.8891750015],[-10638940.232037453,4492770.9148738813],[-10639195.360989058,4492772.0258622468],[-10639435.139875859,4492773.0654213624],[-10639450.675950207,4492773.2266795738],[-10639706.271333361,4492775.8544317493],[-10639962.178867377,4492778.47890832],[-10640172.499024294,4492780.1625269717],[-10640195.163816433,4492780.3431846034],[-10640428.387333611,4492782.1925942907],[-10640661.853723833,4492784.0445236741],[-10640895.561385268,4492785.893303304],[-10640911.217093939,4492786.0176471444],[-10641129.508515883,4492787.7359094815],[-10641363.447637338,4492789.5742321154],[-10641597.695405776,4492791.4066332281],[-10641649.838353148,4492791.8143094014],[-10641831.315067612,4492793.2307194304],[-10642084.179581258,4492796.6950321384],[-10642338.047623353,4492800.1667782776],[-10642388.265807061,4492800.8637231318],[-10642387.999722304,4492548.0193136195],[-10642387.734435616,4492294.5261366665],[-10642387.728874614,4492281.7755392389],[-10642387.472049408,4492040.3964590328],[-10642387.20075034,4491785.6174773136],[-10642387.183528202,4491761.6829019003],[-10642386.940963525,4491530.6868300354],[-10642386.924379565,4491515.477675464],[-10642386.786292996,4491275.3088778546],[-10642386.767469563,4491251.4943797495],[-10642386.633222258,4491019.4726941921],[-10642386.484154049,4490763.185870219],[-10642018.219079044,4490746.5646565137],[-10641648.123742711,4490729.8471026924],[-10641279.193815816,4490713.172776862],[-10640910.435480095,4490696.4929310074],[-10640911.623664862,4490441.3840194931],[-10640912.811350498,4490186.5771726314],[-10640914.002341226,4489932.0615363484],[-10640915.191030737,4489677.8357039252],[-10640915.487017104,4489423.8919707667],[-10640915.781202922,4489170.2754048891],[-10640916.067080818,4488916.9775444428],[-10640916.353160432,4488664.0100785494],[-10640915.984502031,4488410.7791980831],[-10640915.617744563,4488157.2941156486],[-10640915.244678801,4487903.555982884],[-10640914.872512799,4487649.5524772471],[-10640915.028439995,4487395.3014997076],[-10640915.183364816,4487140.7782611959],[-10640915.337387308,4486885.9672936015],[-10640915.490107067,4486630.8780612545],[-10640915.642036179,4486378.0621672394],[-10640915.795466335,4486125.1056684963],[-10640915.945692265,4485872.0152480192],[-10640916.096217878,4485618.7848720979],[-10641282.417790256,4485635.1861029146],[-10641648.478667228,4485651.5616706582],[-10642014.280550711,4485667.9105679961],[-10642379.822039146,4485684.2340538418],[-10642632.716652825,4485686.8874600111],[-10642885.516759878,4485689.5329343323],[-10643138.183917014,4485692.1673291754],[-10643390.740549486,4485694.7929108161],[-10643643.33943261,4485698.2173446277],[-10643896.055347193,4485701.6353581734],[-10644148.937148232,4485705.0450630076],[-10644401.964512872,4485708.4498584466],[-10644654.050412543,4485710.6337740179],[-10644906.226113129,4485712.8131573526],[-10645158.001262581,4485714.9822159326],[-10645409.541046871,4485717.1434681499],[-10645661.083235733,4485719.8379186075],[-10645912.234684465,4485722.5202818383],[-10646163.020321125,4485725.1898024604],[-10646413.429834114,4485727.8483690098],[-10646412.077172291,4485473.4785130797],[-10646410.722605933,4485218.4966558684],[-10646409.36934237,4484963.907599166],[-10646408.243393155,4484752.2543788198],[-10646408.268262822,4484709.3749351855],[-10646660.577453367,4484712.1869224291],[-10646912.797142906,4484714.9929928714],[-10647165.066688346,4484717.7930209413],[-10647417.348146964,4484720.586880656],[-10647669.671552585,4484723.3773416858],[-10647922.016181866,4484726.1605013637],[-10648174.370521853,4484728.9372408949],[-10648426.744583815,4484731.7089450937],[-10648679.279725162,4484733.954048573],[-10648931.798447821,4484736.1905915355],[-10649184.309862075,4484738.422350714],[-10649436.814668693,4484740.6470600842],[-10649689.449421436,4484742.8688743543],[-10649941.988366123,4484745.0831350293],[-10650194.423693974,4484747.2955071814],[-10650446.707450969,4484749.4991925936],[-10650698.297726832,4484751.6496245777],[-10650950.187940232,4484753.7976654135],[-10651202.389504012,4484755.941930321],[-10651454.89110544,4484758.0826710584],[-10651707.49772495,4484760.2266852772],[-10651960.324892601,4484762.364783206],[-10652213.385623017,4484764.4879007088],[-10652466.667402148,4484766.6076197401],[-10652717.776137542,4484769.8506598175],[-10652969.019424176,4484773.0911828391],[-10653220.326482333,4484776.3165995209],[-10653471.728346977,4484779.5389954634],[-10653722.967127729,4484782.7511942796],[-10653974.456890821,4484785.9610021878],[-10654226.197235812,4484789.1759726452],[-10654478.191866864,4484792.387293281],[-10654478.140837062,4485045.4301719964],[-10654478.091109108,4485298.6318519348],[-10654478.034373565,4485551.9587292541],[-10654477.977738498,4485805.4381341627],[-10654477.917599881,4486059.0781357968],[-10654477.868055472,4486265.2603917057],[-10654477.884792425,4486312.8830268709],[-10654477.91296429,4486409.7147885868],[-10654478.841198836,4486566.839600266],[-10654480.34161786,4486820.940311172],[-10654732.11041457,4486822.8746637283],[-10654984.149315152,4486824.8041060437],[-10655236.469932662,4486826.7215868635],[-10655489.063357091,4486828.6340315323],[-10655741.759697221,4486830.5494983671],[-10655994.726641789,4486832.4609363591],[-10656247.950375244,4486834.367464087],[-10656501.436303668,4486836.2700888803],[-10656501.196386673,4487090.4118865449],[-10656500.955968617,4487344.3271236494],[-10656500.718553459,4487598.0149024194],[-10656500.480937585,4487851.4778509671],[-10656500.237014104,4488104.7052490152],[-10656499.992289267,4488357.7215108145],[-10656499.917672828,4488434.7088278458],[-10656500.009658901,4488610.5162946926],[-10656500.140455738,4488863.1171653932],[-10656500.369065421,4489117.0073393835],[-10656500.598779431,4489372.330866416],[-10656500.828291036,4489626.6664795782],[-10656501.056801083,4489880.8179337196],[-10656501.285711212,4490134.8154448485],[-10656501.515021333,4490388.6154203638],[-10656501.735721337,4490642.2299383273],[-10656501.956120487,4490895.6253529554],[-10656250.323031392,4490893.9080154356],[-10655999.200516555,4490892.1880327808],[-10655780.510988956,4490890.6793007934],[-10655747.55120887,4490890.4358031265],[-10655495.698972492,4490888.5659227977],[-10655243.862253446,4490886.7048599729],[-10654992.101119282,4490884.8385066958],[-10654739.751923364,4490882.9537624847],[-10654486.965134989,4490881.0600747196],[-10654482.577423993,4491133.3095771391],[-10654478.182406327,4491386.0545304194],[-10654477.940069331,4491400.4219525112],[-10654479.584705569,4491515.8681915058],[-10654480.608963011,4491639.0326940855],[-10654482.715760143,4491892.1409092378],[-10654482.591947902,4492145.1714458177],[-10654482.466133991,4492398.4362307498],[-10654482.340320168,4492651.7415154744],[-10654482.213306433,4492905.628297572],[-10654491.886586165,4492905.7411791794],[-10654744.016862184,4492908.8017115006],[-10654987.680615498,4492911.7528897244],[-10654995.814263543,4492911.8410782553],[-10655247.279591158,4492914.8655788638],[-10655493.427537976,4492917.8191505009],[-10655498.402933894,4492917.8787409887],[-10655749.196305282,4492920.8930375045],[-10655999.666813303,4492923.8953655856],[-10656254.444561848,4492925.2942345915],[-10656502.187298002,4492926.648758539],[-10656509.58922304,4492926.7365694586],[-10656765.134937828,4492929.4154828405],[-10657009.572158573,4492931.9713102505],[-10657021.121348053,4492932.0949001927],[-10657277.435726957,4492934.7836408],[-10657515.85207559,4492937.2776107639],[-10657534.151957599,4492937.4687277684],[-10657791.253721625,4492940.1472633816],[-10658021.36322709,4492942.5365406759],[-10658048.744022414,4492942.8196255816],[-10658301.482575154,4492943.5888034534],[-10658469.276191063,4492944.095457511],[-10658525.957633775,4492940.8641993925],[-10658554.585131144,4492941.1016757647],[-10658808.057011116,4492943.2162869684],[-10658869.887451828,4492943.7321840804],[-10659034.516230147,4492945.2362143872],[-10659061.995857226,4492945.4980956474],[-10659316.329173792,4492947.8371156733],[-10659542.929274349,4492949.9145204499],[-10659571.04252122,4492950.1734678736],[-10659826.189460373,4492952.4970700918],[-10660051.068603547,4492954.5405548476],[-10660081.668275673,4492954.825818521],[-10660335.154724887,4492955.3991524456],[-10660558.881856915,4492955.9003477655],[-10660588.023672204,4492956.064870975],[-10660840.186917454,4492957.4167638561],[-10661065.945557401,4492958.6219940707],[-10661091.672191733,4492958.7501745299],[-10661164.784672702,4492959.1438922035],[-10661342.479594942,4492961.1533933394],[-10661572.924958859,4492963.7538072895],[-10661592.606323499,4492963.9741769582],[-10661842.080309171,4492966.7941153394],[-10662079.927682044,4492969.4757485231],[-10662090.882730564,4492969.596201065],[-10662091.368672989,4493225.4493819643],[-10662091.853413824,4493481.3386555444],[-10662092.339456424,4493736.6363027198],[-10662092.824498007,4493991.5414881296],[-10662093.311241331,4494246.4401335409],[-10662093.796182599,4494501.1144985147],[-10662094.284828067,4494755.5503273699],[-10662094.773073087,4495009.7410504343],[-10662092.857589914,4495265.2286001146],[-10662090.968640691,4495516.9924457818],[-10662090.936201105,4495520.4040424209],[-10662089.026326427,4495775.2579019982],[-10662087.543483295,4495973.0829933062],[-10662087.118158443,4496025.2602985483],[-10662087.074405126,4496029.8017530553],[-10662084.994539861,4496284.0412495686],[-10662082.944612455,4496534.5162907364],[-10662082.910170613,4496537.9671619348],[-10662080.835513499,4496791.5706442278],[-10662078.76245934,4497044.8490268784],[-10661824.613109209,4497044.0274467738],[-10661570.301675098,4497043.1983138863],[-10661315.832762208,4497042.3557041669],[-10661061.209373945,4497041.505919301],[-10660807.151325844,4497040.6538314139],[-10660553.224726325,4497039.7969458681],[-10660299.441889305,4497038.9307245808],[-10660045.792903572,4497038.0580670005],[-10659793.550508816,4497034.9887382481],[-10659545.432585904,4497031.9649123922],[-10659541.878659224,4497031.9255505912],[-10659290.796977013,4497028.8551428504],[-10659044.836596139,4497025.8402609993],[-10659040.29464997,4497025.7941526519],[-10658870.341386823,4497023.7072461769],[-10658789.930091985,4497021.6708949516],[-10658544.122975199,4497015.4415532369],[-10658540.372659378,4497015.3382092053],[-10658291.529529279,4497009.0367822219],[-10658043.512827715,4497002.7514892574],[-10658043.57189359,4497259.8643226027],[-10658043.629557617,4497516.8426628513],[-10658043.696228836,4497772.3202795526],[-10658043.761896875,4498026.7531113792],[-10658043.819156397,4498281.672876643],[-10658043.876614816,4498535.9154845327],[-10658043.938078122,4498790.3714924864],[-10658044.001243174,4499044.7454267507],[-10658044.544547426,4499298.9496649913],[-10658045.087751351,4499553.0724438457],[-10658045.626750337,4499807.1116142906],[-10658046.165648991,4500061.0676746508],[-10658046.699441666,4500314.9234725032],[-10658047.234735802,4500568.6900957115],[-10658047.784245683,4500822.3695552228],[-10658048.333655234,4501075.9610883296],[-10657796.459679611,4501073.9177820571],[-10657544.3415295,4501071.8650201233],[-10657291.644328646,4501069.7944819191],[-10657038.475697979,4501067.7112105461],[-10657038.375219166,4501322.9225821765],[-10657038.275741167,4501577.9907431817],[-10657038.174560931,4501832.9019388277],[-10657038.074081153,4502087.660571211],[-10657037.97780594,4502342.3498564241],[-10657037.881430574,4502597.0169527158],[-10657037.776345814,4502851.8744763797],[-10657037.672060996,4503106.2795281196],[-10657026.565486426,4503106.2295053527],[-10656781.589736635,4503104.9568657642],[-10656613.522067752,4503104.0807975242],[-10656524.985725854,4503103.461307385],[-10656516.605913857,4503103.4062295742],[-10656267.829293853,4503101.6702733738],[-10656184.137693394,4503101.0841837535],[-10656010.093709003,4503098.8876320953],[-10656009.820066366,4503350.265474909],[-10656009.554317031,4503594.708629624],[-10656009.558032127,4503599.5727032516],[-10656009.273467897,4503846.7898733532],[-10656008.997699061,4504087.5556388404],[-10656008.996207193,4504091.9227651265],[-10656008.727856981,4504337.2663420513],[-10656008.464502389,4504578.1635708334],[-10656008.453197047,4504581.4379965803],[-10656008.187044069,4504824.4464760851],[-10656007.922390169,4505066.2919520754],[-10655753.436239941,4505067.9474936007],[-10655498.742156349,4505069.5976128383],[-10655243.756945955,4505071.2351204818],[-10654988.51334554,4505072.8680890147],[-10654733.212981511,4505074.5009322027],[-10654477.514770873,4505076.1294891685],[-10654221.68561331,4505077.7557768421],[-10653964.93091662,4505079.3811863279],[-10653963.433766341,4505208.9696737388],[-10653963.767267225,4505336.8401173111],[-10653964.441284118,4505595.4352071714],[-10653965.130915416,4505852.8318741042],[-10653965.818743531,4506109.8012936162],[-10653966.502165636,4506366.3846855331],[-10653967.184285033,4506622.5041850125],[-10653967.861297689,4506878.2567724111],[-10653968.535906496,4507133.5850184383],[-10653717.059015159,4507135.8037222372],[-10653465.466093719,4507138.0157410381],[-10653214.581968052,4507140.2084545437],[-10652964.137135657,4507142.3915784322],[-10652714.394792013,4507144.5744471261],[-10652465.140296131,4507146.7478520889],[-10652216.671982892,4507148.899428105],[-10651968.874422731,4507151.0383854033],[-10651715.725749791,4507151.0913197352],[-10651624.437073365,4507151.109841994],[-10651462.563459132,4507150.3119780999],[-10651208.091496766,4507149.0379708419],[-10650952.704006545,4507147.7529924344],[-10650696.777010558,4507146.4571670722],[-10650440.216503296,4507145.1515045296],[-10650182.532334544,4507143.838909056],[-10649923.872270154,4507142.5139549961],[-10649670.329248654,4507140.8241199525],[-10649422.558606954,4507139.1669298373],[-10649417.318224236,4507139.1371837649],[-10649164.837995496,4507137.4393950161],[-10648920.413009264,4507135.7911445815],[-10648912.899374599,4507135.7350430973],[-10648661.473729415,4507134.0311930981],[-10648415.836281797,4507132.3604925955],[-10648410.576977819,4507132.328349581],[-10648160.204814972,4507130.6239893623],[-10647910.351434354,4507128.9177340036],[-10647910.26842292,4507383.7937634476],[-10647910.187013783,4507638.8196945181],[-10647910.111709738,4507893.3403432844],[-10647910.037205521,4508147.5541415149],[-10647655.19086202,4508146.7730536722],[-10647400.115861798,4508145.9851537524],[-10647145.969003288,4508145.2026739409],[-10646892.368758211,4508144.4146394199],[-10646639.397319719,4508143.8631736729],[-10646387.159804935,4508143.3085494507],[-10646134.878641052,4508142.7367660189],[-10645882.821528591,4508142.1622054698],[-10645629.703619093,4508139.9176389426],[-10645376.126493964,4508137.6644953983],[-10645122.648780243,4508135.4109728755],[-10644869.076460147,4508133.1517732404],[-10644615.214518188,4508131.7492823536],[-10644360.492911186,4508130.3368286686],[-10644106.430644134,4508128.9267684938],[-10643852.522149559,4508127.5122913755],[-10643852.520567328,4508132.3184310775],[-10643852.396357259,4508385.3962425655],[-10643852.271133866,4508635.4811680429],[-10643852.260834824,4508638.5587756438],[-10643852.137125934,4508891.7959419461],[-10643852.064748168,4509039.8718531672],[-10643855.179880777,4509145.0358008444],[-10643855.318882195,4509400.3440109128],[-10643855.456776533,4509654.6948609259],[-10643855.612084506,4509908.0756619237],[-10643855.765984993,4510160.486848494],[-10643601.339354174,4510160.6542847855],[-10643346.910620958,4510160.8140231669],[-10643092.502610957,4510160.9674516525],[-10642838.093399575,4510161.1148227584],[-10642583.661862083,4510161.0889276536],[-10642329.306309817,4510161.0541984262],[-10642074.755037835,4510161.008743736],[-10641820.08473222,4510160.9558442151],[-10641819.994842527,4510409.5037255529],[-10641819.901784923,4510663.9205718609],[-10641819.90292304,4510669.9798858194],[-10641819.802629067,4510919.7565842485],[-10641819.69737599,4511177.1804802855],[-10641572.127403729,4511170.8089343542],[-10641328.020017788,4511164.5191548811],[-10641324.778879987,4511164.4439539928],[-10641077.64940198,4511158.0714039579],[-10640849.74790537,4511152.1883048816],[-10640835.525243847,4511152.1481271815],[-10640834.679259203,4511408.9691380216],[-10640833.830376463,4511666.6424562205],[-10640833.807684762,4511672.1842431333],[-10640832.980798276,4511925.1952813575],[-10640832.133027382,4512184.6189695159],[-10640584.803051485,4512182.142568049],[-10640337.03728646,4512179.6570819197],[-10640089.059983976,4512177.1628885018],[-10639840.813479297,4512174.6578424061],[-10639840.85828324,4512167.0691388985],[-10639589.931234606,4512158.7152242484],[-10639338.885352494,4512150.3510934096],[-10639088.634963157,4512142.0047618514],[-10638838.889740735,4512133.667900716],[-10638589.03559809,4512125.6677995985],[-10638339.666499773,4512117.6767897997],[-10638089.905761724,4512109.6580204163],[-10637840.050617622,4512101.6306750737],[-10637839.284735287,4512358.8039873345],[-10637838.517953528,4512616.2401048709],[-10637837.758481508,4512873.9333668547],[-10637836.996007698,4513131.8889679257],[-10637587.756099613,4513130.7330971463],[-10637351.487448394,4513129.6306747915],[-10637339.200659553,4513129.5632109605],[-10637091.321578508,4513128.3947096523],[-10636856.481330199,4513127.2829383826],[-10636844.115953265,4513127.2321375329],[-10636596.196727024,4513126.0420512455],[-10636348.655524978,4513124.8470399706],[-10636104.268863127,4513123.6737226816],[-10635862.099189231,4513122.5048110383],[-10635858.883897364,4512865.3818403222],[-10635855.672812762,4512608.6815994186],[-10635852.467635298,4512352.0747444481],[-10635849.264361216,4512095.6792829558]]]},"attributes":{"objectid":2322,"field_kid":"1000149910","approxacre":68080,"field_name":"NEODESHA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":2632231.7200000002,"maxoilwell":368,"lastoilpro":3159.9899999999998,"lastoilwel":263,"lastodate":"2-2009","cumm_gas":12759529,"maxgaswell":183,"lastgaspro":47133,"lastgaswel":182,"lastgdate":"2-2009","avgdepth":896.21113075999995,"avgdepthsl":25.030377649999998,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149910}},{"geometry":{"rings":[[[-10593760.567418842,4709283.1485798294],[-10594021.047131525,4709283.8019485464],[-10594019.927087141,4709542.572327774],[-10594018.802238163,4709802.7600034066],[-10594017.675987449,4710062.3607925223],[-10594016.54723407,4710322.027409506],[-10594015.419982091,4710580.7705943696],[-10594014.288325638,4710840.2672317186],[-10594013.170085,4711100.5140335094],[-10594012.04794048,4711361.5331917638],[-10593751.1130565,4711357.8678848883],[-10593490.034708597,4711354.1935723415],[-10593485.275087748,4711354.1119023459],[-10593228.793674864,4711350.500860204],[-10592975.927478945,4711346.9345670287],[-10592967.410879245,4711346.9280860247],[-10592961.276793033,4711346.9197804686],[-10592705.908049252,4711346.6191828735],[-10592444.361469373,4711346.3057761099],[-10592439.59974617,4711346.3046637801],[-10592250.558343647,4711346.0754919006],[-10592182.757223206,4711345.4293675181],[-10591921.081693964,4711342.9340867484],[-10591922.644993,4711083.8841543365],[-10591924.207591476,4710824.858075738],[-10591925.794716997,4710564.8081658147],[-10591927.386146924,4710304.0944018839],[-10591928.952250808,4710045.7677240595],[-10591930.52205856,4709786.9203436971],[-10591932.084257308,4709527.5642663324],[-10591933.649559265,4709267.707636321],[-10592194.870220417,4709271.064272183],[-10592456.023904763,4709274.4128038771],[-10592717.122926345,4709277.7717583338],[-10592978.155772036,4709281.1236379053],[-10593239.061870879,4709281.80942507],[-10593499.903295932,4709282.4863352627],[-10593760.567418842,4709283.1485798294]]]},"attributes":{"objectid":2348,"field_kid":"1000147614","approxacre":639,"field_name":"WAKARUSA","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":116518.64999999999,"maxoilwell":24,"lastoilpro":76.609999999999999,"lastoilwel":3,"lastodate":"1-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":640,"avgdepthsl":-172,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147614}},{"geometry":{"rings":[[[-10617124.710097089,4476352.7797566494],[-10617196.785198959,4476351.904247568],[-10617200.748449374,4476605.324430583],[-10617204.709392268,4476858.5015060799],[-10617208.671131225,4477111.4358340809],[-10617212.627759282,4477364.1160748145],[-10617216.575972613,4477616.5407003434],[-10617220.519875862,4477868.7028987613],[-10617224.465376144,4478120.6252976479],[-10617228.404964495,4478372.2846039208],[-10617124.36208427,4478373.969468182],[-10616983.24085205,4478376.1720533529],[-10616737.612906283,4478380.0031324616],[-10616730.490813758,4478380.1137515428],[-10616491.516522655,4478383.8290481074],[-10616244.948797939,4478387.6576008359],[-10616235.379090037,4478387.8078180458],[-10615996.854718579,4478391.5051320801],[-10615748.988001825,4478395.3424768848],[-10615743.206151119,4478395.4343681438],[-10615501.344543131,4478399.1815876905],[-10615253.912028119,4478403.0088762194],[-10615250.576213839,4478150.4448543526],[-10615247.238695439,4477897.815807363],[-10615243.90447286,4477644.7523707943],[-10615240.56754115,4477391.3797506448],[-10615240.379114227,4477378.0464317994],[-10615239.894874042,4477137.9043196244],[-10615239.384688767,4476884.1145841628],[-10615238.864786938,4476630.0006266981],[-10615238.342677342,4476375.5715276822],[-10615485.856809106,4476372.5982460026],[-10615720.483700955,4476369.7733453671],[-10615732.16144882,4476369.6309863552],[-10615977.320670485,4476366.6842156611],[-10616213.373005535,4476363.8395873467],[-10616221.322960516,4476363.7366749663],[-10616465.898511574,4476360.7808409212],[-10616704.19192896,4476357.8952375809],[-10616709.991407588,4476357.8232399579],[-10616953.618568029,4476354.8627401907],[-10617124.710097089,4476352.7797566494]]]},"attributes":{"objectid":2374,"field_kid":"1000149407","approxacre":616,"field_name":"TACKETT","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1119.1600000000001,"maxoilwell":1,"lastoilpro":72.159999999999997,"lastoilwel":1,"lastodate":"1-2006","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149407}},{"geometry":{"rings":[[[-10627488.599330192,4515128.9131657388],[-10627751.407989206,4515131.3228396215],[-10627751.992954433,4515390.1771562193],[-10627752.574107563,4515647.9313176982],[-10627752.586446028,4515651.4499777956],[-10627753.147944769,4515904.6019098014],[-10627753.715567313,4516160.1917570811],[-10627753.725739894,4516168.9580305228],[-10627754.287817338,4516418.9915925814],[-10627754.869278461,4516677.9057928668],[-10627754.886839718,4516683.8497676011],[-10627755.451642772,4516937.1484062932],[-10627756.030300787,4517196.103335646],[-10627498.530682141,4517196.4030149914],[-10627255.812162921,4517196.6793503044],[-10627242.369475663,4517196.7027074499],[-10626987.509639375,4517196.9858699152],[-10626978.205727976,4517196.9962605126],[-10626751.661971731,4517195.7182422392],[-10626733.908313021,4517195.6092155529],[-10626481.546286274,4517194.1787777971],[-10626243.669425128,4517192.8236179752],[-10626230.486931162,4517192.7555506686],[-10625980.637843153,4517191.3214751836],[-10625731.936852103,4517189.8882948104],[-10625726.18663675,4516931.5750351883],[-10625720.470670715,4516674.7883655122],[-10625714.748294339,4516417.6800701926],[-10625709.030925103,4516160.8674967559],[-10625703.267087679,4515902.0437648138],[-10625697.614712283,4515648.1652864246],[-10625697.551617768,4515645.0438437937],[-10625691.866294639,4515389.8497966044],[-10625686.224734752,4515136.6032762062],[-10625940.093744509,4515132.8244441655],[-10626195.068604421,4515129.021510873],[-10626201.959392034,4515128.9166644653],[-10626451.203375608,4515125.1959919836],[-10626692.704909394,4515121.5841990169],[-10626708.494556909,4515121.7332187863],[-10626718.347594036,4515121.818670176],[-10626967.12959929,4515124.1127999518],[-10627227.170630613,4515126.5057789823],[-10627234.690030018,4515126.5789592769],[-10627488.599330192,4515128.9131657388]]]},"attributes":{"objectid":2376,"field_kid":"1000150024","approxacre":649,"field_name":"THAYER NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":164.49000000000001,"maxoilwell":2,"lastoilpro":164.49000000000001,"lastoilwel":2,"lastodate":"5-2008","cumm_gas":31413,"maxgaswell":1,"lastgaspro":172,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000150024}},{"geometry":{"rings":[[[-10580337.37587348,4683256.3714979403],[-10580597.174185809,4683257.0198771134],[-10580596.287084131,4683516.9734477466],[-10580595.399081035,4683777.4844717896],[-10580594.51988806,4684037.9600581834],[-10580593.64149588,4684298.6219826788],[-10580334.539083701,4684297.2978384672],[-10580076.054479489,4684295.9688142622],[-10579817.143686889,4684294.6251610098],[-10579558.105348136,4684293.2749629263],[-10579301.457748672,4684292.3873046041],[-10579044.953913955,4684291.4932284085],[-10578788.568615064,4684290.6006917804],[-10578532.285933761,4684289.7023791997],[-10578532.426875846,4684029.9293746371],[-10578532.56691695,4683770.0847046487],[-10578532.692041019,4683510.1522045955],[-10578532.819067344,4683250.1294427337],[-10578789.289265582,4683251.21698556],[-10579045.903729135,4683252.3002928337],[-10579302.638130143,4683253.3638366396],[-10579559.473847248,4683254.421605112],[-10579818.495970124,4683255.0725545799],[-10580077.821140271,4683255.7158027682],[-10580337.37587348,4683256.3714979403]]]},"attributes":{"objectid":2378,"field_kid":"1000149899","approxacre":319,"field_name":"THORN","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":226,"maxoilwell":2,"lastoilpro":20,"lastoilwel":2,"lastodate":"9-1990","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149899}},{"geometry":{"rings":[[[-10547679.933163704,4641009.6157495715],[-10547681.073988829,4640747.0826324271],[-10547547.954854628,4640750.9090571394],[-10547424.258025641,4640751.2573216725],[-10547166.962462276,4640751.9763903348],[-10547163.675409313,4640751.9697181433],[-10546909.101052808,4640752.6921316013],[-10546650.659380786,4640753.4179640785],[-10546646.168653576,4640753.4441260369],[-10546391.614019465,4640754.1491590813],[-10546131.988395557,4640754.8602851192],[-10546128.580104209,4640754.8885006262],[-10545871.771997094,4640755.5746012153],[-10545610.952409878,4640756.265397626],[-10545353.529199049,4640755.3723008214],[-10545095.291758638,4640754.4715297613],[-10544837.579117462,4640753.5500600254],[-10544579.951673623,4640752.6227125274],[-10544584.012416707,4640489.3154844726],[-10544588.060145153,4640226.7219504779],[-10544592.116183136,4639964.6142107388],[-10544596.162009561,4639703.0609756755],[-10544599.725185281,4639442.2658820702],[-10544603.279751355,4639182.0851257835],[-10544606.833116271,4638922.5566090941],[-10544610.378472254,4638663.6701884568],[-10544604.283815578,4638663.7152459808],[-10544347.465672975,4638665.3462357353],[-10544095.86718818,4638666.9371444834],[-10544091.258127203,4638666.9587032367],[-10543835.682402503,4638668.5621037269],[-10543580.75661956,4638670.1557984799],[-10543573.016181299,4638665.1435273802],[-10543324.750800924,4638666.7853137385],[-10543067.757758312,4638668.4778875709],[-10543060.301847817,4638668.5077300835],[-10542809.824942887,4638670.1792705869],[-10542550.994002182,4638671.9000681285],[-10542541.052654687,4638671.9527630443],[-10542291.230697095,4638673.600415268],[-10542030.58037941,4638675.3137884429],[-10542023.164114157,4638675.3443978829],[-10541769.017820328,4638677.0079890881],[-10541546.971066231,4638678.455121126],[-10541506.566146195,4638678.5584402848],[-10541508.958598951,4638419.8462921372],[-10541511.354555415,4638160.7585192565],[-10541511.403609775,4638155.3679911811],[-10541513.758520709,4637901.236124116],[-10541516.16799199,4637641.2968979795],[-10541516.217846937,4637634.8599182228],[-10541518.565449493,4637381.7347432403],[-10541520.974119581,4637122.0618742276],[-10541521.003852034,4637117.1935025109],[-10541523.376782602,4636862.2749776645],[-10541525.796965402,4636602.3712518625],[-10541527.702160927,4636344.3045205669],[-10541529.60935853,4636086.0461515412],[-10541529.634285526,4636081.3000062909],[-10541531.506144047,4635827.5612871842],[-10541533.41554375,4635568.8631011164],[-10541533.462195039,4635562.5094247339],[-10541535.335555354,4635309.9290012261],[-10541537.255466627,4635050.7817404708],[-10541537.281895317,4635045.9960953658],[-10541539.168970384,4634791.4081793623],[-10541541.093486493,4634531.801821365],[-10541796.788599944,4634532.0007509254],[-10542053.053763762,4634532.1943198582],[-10542309.901992787,4634532.3857212504],[-10542567.337792169,4634532.5711235134],[-10542825.509531159,4634532.7390328106],[-10543084.14700149,4634532.9010699466],[-10543343.437516874,4634533.0719238687],[-10543602.796810733,4634533.23485961],[-10543861.445793947,4634532.939404279],[-10544113.829829691,4634532.6427601678],[-10544119.760495763,4634532.6329629067],[-10544377.136626765,4634532.3139990643],[-10544625.265107442,4634531.9994474212],[-10544633.799343821,4634531.970125326],[-10544889.444600072,4634531.6327588912],[-10545136.981105316,4634531.3003226751],[-10545144.232978715,4634531.3017730368],[-10545398.182900779,4634530.9718036465],[-10545651.300573329,4634530.6359538948],[-10545908.750490198,4634532.3045679349],[-10546166.584044861,4634533.9680761015],[-10546424.797933534,4634535.609747055],[-10546683.393257489,4634537.2498882795],[-10546941.250339314,4634538.8729108963],[-10547199.961996211,4634540.4959393786],[-10547459.576283012,4634542.1239551222],[-10547548.306617264,4634542.6784318741],[-10547720.08470083,4634545.1403909875],[-10547975.44545527,4634546.028532641],[-10548231.187550647,4634546.9113098467],[-10548237.440783137,4634546.8313532826],[-10548486.737619752,4634543.2611708911],[-10548626.590774065,4634541.256775761],[-10548742.093164869,4634540.2012280952],[-10548752.113354281,4634540.1059429469],[-10548999.267514598,4634537.8434901722],[-10549257.12915959,4634535.4761735117],[-10549264.141870562,4634535.4241872868],[-10549515.624537904,4634533.102215712],[-10549774.76906736,4634530.7029696712],[-10550033.661205936,4634529.7901290869],[-10550286.484625457,4634528.894278991],[-10550291.894782925,4634528.8609408718],[-10550427.287880745,4634528.3484481256],[-10550549.477907768,4634528.0498941084],[-10550798.587131701,4634527.4356688662],[-10550806.400068277,4634527.4136964036],[-10551062.726339696,4634526.9508150117],[-10551312.190774659,4634526.493046537],[-10551318.280017588,4634526.4838470928],[-10551573.27334743,4634526.0116430372],[-10551827.155992709,4634525.5353526557],[-10551826.393102968,4634784.1645694198],[-10551826.27886975,4634823.1099656429],[-10551824.565281786,4635042.4148219293],[-10551822.553648315,4635300.3367898092],[-10551820.545018604,4635557.9379845196],[-10551818.568225997,4635815.4216098338],[-10551816.593536111,4636072.6862321608],[-10551814.596120235,4636329.6890414897],[-10551812.600907197,4636586.4519904675],[-10551810.795513833,4636844.4868391659],[-10551808.988018287,4637102.8746363372],[-10551808.938661106,4637108.3847062094],[-10551807.19163584,4637361.6266511651],[-10551805.402662205,4637620.7323073447],[-10551805.364618063,4637628.054270003],[-10551803.593565544,4637880.813830792],[-10551801.772054797,4638140.8272014149],[-10551801.747326115,4638145.6954264473],[-10551799.960555868,4638401.6296101855],[-10551798.153462322,4638660.6273593586],[-10551796.445683785,4638919.7081809444],[-10551794.727293199,4639180.6219981173],[-10551792.993485058,4639440.7687343294],[-10551791.286107775,4639696.8594206283],[-10551791.249064906,4639701.0030802581],[-10551789.539285017,4639961.3267038688],[-10551787.867349194,4640215.6598410495],[-10551787.840918578,4640220.5687932791],[-10551786.136545459,4640478.7157204608],[-10551784.438379774,4640735.8131542411],[-10551528.298362078,4640738.6624673763],[-10551270.341246206,4640741.5258415025],[-10551013.443454158,4640744.3811639957],[-10550863.32107755,4640746.0451508109],[-10550756.625154441,4640747.7085706266],[-10550752.333197674,4640747.7853823584],[-10550497.109239964,4640751.7549699964],[-10550363.533273535,4640753.8295498546],[-10550236.260385355,4640752.6440102253],[-10550233.656578202,4640752.6243327968],[-10549975.617767464,4640750.2279544845],[-10549714.503504517,4640747.7980976691],[-10549718.484847168,4641009.6099876584],[-10549719.769377211,4641094.0968779828],[-10549721.028129095,4641272.2701484822],[-10549721.065373886,4641275.4910619492],[-10549722.919057509,4641535.1442097547],[-10549724.799874237,4641798.5149038341],[-10549471.447249303,4641797.8160103811],[-10549217.731505003,4641797.1082985327],[-10548962.657191958,4641796.3780939756],[-10548706.494321939,4641795.6372827049],[-10548450.222326467,4641795.6152772782],[-10548193.158316512,4641795.5873936862],[-10547935.253535785,4641795.5500533078],[-10547676.535015479,4641795.5047898255],[-10547676.571149167,4641788.3020365033],[-10547677.65972247,4641533.8265305059],[-10547678.782827444,4641271.8635524679],[-10547678.819963422,4641265.6657046676],[-10547679.933163704,4641009.6157495715]]]},"attributes":{"objectid":2404,"field_kid":"1000149891","approxacre":8941,"field_name":"BLACK","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":276433.02000000002,"maxoilwell":45,"lastoilpro":47.329999999999998,"lastoilwel":43,"lastodate":"11-2008","cumm_gas":1880,"maxgaswell":1,"lastgaspro":149,"lastgaswel":1,"lastgdate":"12-1990","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149891}},{"geometry":{"rings":[[[-10617562.306528283,4508797.1576623684],[-10617561.273731356,4508543.0565580977],[-10617560.24802299,4508287.6208864087],[-10617559.219405126,4508031.7794918502],[-10617558.188879475,4507775.5729040597],[-10617557.157245774,4507518.9193947054],[-10617556.121802038,4507261.8946937192],[-10617555.085651446,4507004.47548893],[-10617807.909273781,4507004.4496425334],[-10618060.933323106,4507004.4179953458],[-10618314.146586671,4507004.3771409243],[-10618562.905704096,4507004.3306796625],[-10618567.553069182,4507004.3388121016],[-10618820.287189813,4507004.2871020101],[-10619073.360194303,4507004.2298451671],[-10619326.153281594,4507004.164510645],[-10619580.395610651,4507004.0925078737],[-10619580.909822674,4506753.2420565384],[-10619581.418564249,4506505.1278105583],[-10619581.432140537,4506502.1292816689],[-10619581.951251499,4506250.7591217328],[-10619582.462300096,4506002.9703708971],[-10619582.462550415,4505999.1377762677],[-10619582.9757913,4505750.5605191849],[-10619583.139443733,4505671.3225397803],[-10619584.95155778,4505499.4734215029],[-10619587.613876222,4505246.3066574791],[-10619590.313790869,4504989.5195077406],[-10619843.172739809,4504995.1678624526],[-10620095.368935071,4505000.79464263],[-10620099.854723828,4505000.8966162484],[-10620295.941566441,4505005.2637381339],[-10620347.902001865,4505005.7232732493],[-10620600.39488806,4505007.9526177384],[-10620606.740185155,4505008.0127381105],[-10620736.195617588,4505009.1451730104],[-10620853.68643342,4505006.4356391439],[-10621107.157330237,4505000.586813475],[-10621111.411854146,4505000.4819230326],[-10621360.7526698,4504994.7197032459],[-10621464.862515496,4504992.3126014583],[-10621614.431820162,4504990.0330921523],[-10621875.251323184,4504989.9089908404],[-10622126.310156319,4504989.7832526164],[-10622134.812198656,4504989.7725124275],[-10622393.119252089,4504989.6290807845],[-10622638.761441929,4504989.4878857126],[-10622650.169980736,4504989.4866423495],[-10622904.803968351,4504989.3286588257],[-10623151.944957916,4504989.1684363605],[-10623158.924073163,4504989.1675154483],[-10623411.316118143,4504989.0033230167],[-10623665.404286731,4504988.8312055245],[-10623921.558409017,4504989.6791653242],[-10624175.003057977,4504990.5119547788],[-10624429.189147493,4504991.3373117037],[-10624682.96226833,4504992.1566089792],[-10624938.15129469,4504992.9702481274],[-10625193.65047249,4504993.7789719841],[-10625449.48142636,4504994.5919886576],[-10625705.624333706,4504995.3973150952],[-10625957.53493432,4504995.4918187819],[-10626209.948705528,4504995.5814095819],[-10626462.857738264,4504995.6551136523],[-10626716.270942707,4504995.7221389562],[-10626970.686583987,4504995.7837531203],[-10627225.222061103,4504995.8388097873],[-10627266.427693849,4504995.8569891602],[-10627479.622074958,4504994.719045829],[-10627734.291993296,4504993.3531965949],[-10627734.811291231,4505243.7620995706],[-10627735.263959881,4505462.5681804912],[-10627735.415794108,4505495.2361887256],[-10627736.603158463,4505746.8279550066],[-10627737.748801814,4505989.279741466],[-10627737.657173907,4505998.749829174],[-10627735.376215342,4506251.4320919923],[-10627733.093857527,4506504.3217862723],[-10627731.173985489,4506716.6339315325],[-10627731.613606863,4506756.9215043485],[-10627734.36564881,4507009.2045226535],[-10627480.57503118,4507009.1893553054],[-10627225.19331095,4507009.1681123795],[-10626973.538512876,4507009.1419959879],[-10626723.832122087,4507009.1106053451],[-10626719.797751524,4507009.1041206447],[-10626472.338406295,4507009.0627916194],[-10626221.443468845,4507009.0156162046],[-10626216.913837247,4507009.0135408603],[-10625970.943478731,4507008.9589838143],[-10625939.240262328,4507008.952152187],[-10625720.639656048,4507002.985877974],[-10625721.436524767,4507258.4914444573],[-10625721.445459722,4507261.1728916802],[-10625726.093359271,4507513.3877292303],[-10625730.773717066,4507768.0864525661],[-10625735.439549712,4508022.0094833588],[-10625981.877988495,4508022.455170338],[-10626225.216517113,4508022.890220237],[-10626227.946708469,4508022.8947965028],[-10626474.650747597,4508023.3272388531],[-10626721.65943148,4508023.7536288016],[-10626971.985170744,4508024.1461201422],[-10627223.305836366,4508024.5333247259],[-10627475.546443431,4508024.9124658424],[-10627728.709494784,4508025.286445478],[-10627728.684699057,4508029.317363495],[-10627727.287322473,4508279.2347871792],[-10627725.865653945,4508533.5336214611],[-10627724.459794957,4508786.7428774564],[-10627723.057034925,4509039.3439913653],[-10627724.78905208,4509291.0952351857],[-10627726.475671301,4509536.2084767949],[-10627726.515261296,4509542.6849505054],[-10627728.239066508,4509794.1249877913],[-10627729.884602569,4510034.0487865591],[-10627729.95315944,4510045.4139481243],[-10627484.730811914,4510045.5216502119],[-10627237.673388135,4510045.6252918839],[-10626988.771777738,4510045.7167965928],[-10626738.035591666,4510045.8048718628],[-10626486.59971394,4510045.8899100032],[-10626235.588616794,4510045.9712936748],[-10625983.419309195,4510046.0452178838],[-10625730.609176515,4510046.1133294068],[-10625730.673795601,4510038.8445471972],[-10625732.845036229,4509794.4934866223],[-10625735.082096891,4509542.7900941316],[-10625735.118500305,4509537.7063546199],[-10625737.296732148,4509291.0546410652],[-10625739.520677816,4509039.2733761845],[-10625484.391763235,4509039.3361943625],[-10625228.202148274,4509039.392059328],[-10624972.408781638,4509039.4359419346],[-10624716.506992254,4509039.4721260937],[-10624710.593500253,4509039.4676361214],[-10624460.509694729,4509039.4997286871],[-10624202.202683421,4509039.5254098047],[-10624196.703960892,4509039.5336693963],[-10623941.600374728,4509039.5612831218],[-10623678.699164404,4509039.5829954362],[-10623670.848261379,4509290.3676336948],[-10623663.289316112,4509531.8568260176],[-10623663.024083899,4509540.4501086837],[-10623655.220826482,4509789.9698113734],[-10623647.975359675,4510021.6126267072],[-10623647.930851242,4510026.9159297263],[-10623647.821621396,4510038.773001763],[-10623645.543805806,4510286.8899728842],[-10623643.356814511,4510525.057022077],[-10623643.271690754,4510534.2331569456],[-10623641.002072722,4510780.8156243144],[-10623638.738855673,4511026.5788879814],[-10623387.149767462,4511027.5101000182],[-10623133.791778393,4511028.4411652265],[-10622880.689578731,4511029.3657971872],[-10622627.183021737,4511030.2865122193],[-10622373.384134097,4511031.1990206381],[-10622119.287009155,4511032.1063513234],[-10621864.395685874,4511033.0061005102],[-10621608.878855079,4511033.9004156869],[-10621351.200007385,4511038.1949559748],[-10621107.089606704,4511042.2576912837],[-10621095.21257326,4511042.4611222558],[-10620840.926964367,4511046.6860415349],[-10620604.585651705,4511050.6073955316],[-10620588.335572103,4511050.871606756],[-10620337.339484747,4511055.0392718138],[-10620100.181749552,4511058.972357844],[-10620088.008280784,4511059.1644271854],[-10619840.32874538,4511063.2607029919],[-10619594.311090028,4511067.3230510149],[-10619340.434742283,4511071.0219593616],[-10619085.620333912,4511074.7266641054],[-10618831.087544411,4511078.4191320306],[-10618576.434719535,4511082.1089501204],[-10618321.540722214,4511085.7910686694],[-10618066.238163145,4511089.4716698471],[-10617811.394223213,4511093.1453369437],[-10617556.714669595,4511096.8111830438],[-10617557.25563848,4510844.5570923295],[-10617557.798200706,4510591.3915946661],[-10617557.803446485,4510584.9153346466],[-10617558.325436784,4510337.2772750044],[-10617558.86137397,4510082.2219004855],[-10617558.882115504,4510073.4011284085],[-10617559.402508151,4509826.2087561646],[-10617559.945736052,4509569.2645379575],[-10617559.958488479,4509562.5901626991],[-10617560.486452281,4509311.3695030669],[-10617561.031765012,4509052.5370970201],[-10617563.291197998,4509039.2008980624],[-10617562.306528283,4508797.1576623684]]]},"attributes":{"objectid":2438,"field_kid":"1024022820","approxacre":7583,"field_name":"URBANA SOUTHWEST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":653,"avgdepthsl":-388,"polydate":1193788800000,"field_type":"GAS","field_kidn":1024022820}},{"geometry":{"rings":[[[-10604076.208686981,4680158.0079618441],[-10604332.636905869,4680159.5649196897],[-10604334.815735072,4680417.7561506853],[-10604336.998868525,4680676.4804531205],[-10604337.058028689,4680683.8362908615],[-10604339.192012751,4680935.7487732414],[-10604341.391163202,4681195.5244575609],[-10604083.401488911,4681192.844438741],[-10603824.367618132,4681190.1462096851],[-10603565.234233208,4681187.4216797128],[-10603305.678364074,4681184.6858630339],[-10603304.898906358,4680926.021012295],[-10603304.120549347,4680667.9174823267],[-10603303.337386327,4680410.3183959564],[-10603302.555324052,4680153.2338498132],[-10603561.16664464,4680154.841849599],[-10603819.054636322,4680156.4412598396],[-10604076.208686981,4680158.0079618441]]]},"attributes":{"objectid":2454,"field_kid":"1000148263","approxacre":159,"field_name":"NORWOOD WEST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000148263}},{"geometry":{"rings":[[[-10576828.720057542,4584740.1302191392],[-10577083.117141796,4584739.7774532083],[-10577085.625986772,4584992.9786613723],[-10577088.139533488,4585246.6765840659],[-10577090.673499923,4585500.8777406309],[-10577093.212268436,4585755.5437789718],[-10577095.074557308,4586010.6929157292],[-10577096.941848053,4586266.3709471477],[-10577098.827255782,4586522.5688864924],[-10577100.717965797,4586779.2858826388],[-10576845.414299576,4586777.6025690865],[-10576590.128754131,4586775.9116277769],[-10576334.857425014,4586774.2070836686],[-10576079.622437559,4586772.4964372506],[-10576080.720865427,4587028.5348155899],[-10576081.824892199,4587285.6228066869],[-10576082.949855769,4587540.9252875978],[-10576084.070019944,4587795.3731885199],[-10575828.1281558,4587791.920062447],[-10575572.198505564,4587788.4607072175],[-10575317.282983081,4587785.0091350609],[-10575063.035746278,4587781.5595820565],[-10574807.99589112,4587778.1034264378],[-10574551.956678109,4587774.6252858471],[-10574297.050778767,4587771.1462471997],[-10574042.515008612,4587767.664664316],[-10574041.369543443,4587510.8111975528],[-10574040.230376637,4587255.2060936633],[-10574039.09001323,4586998.9565136787],[-10574037.949549908,4586742.6949730692],[-10574036.626046753,4586490.2712329738],[-10574035.335537696,4586243.9503432233],[-10574035.311153008,4586237.9439075636],[-10574034.004969191,4585985.6545145372],[-10574032.749371566,4585743.367486543],[-10574032.706594162,4585733.4184321733],[-10574031.407903029,4585483.3686245661],[-10574030.149603322,4585240.9687866811],[-10574030.122823551,4585233.9023217419],[-10574028.828729531,4584985.0166852735],[-10574027.538135475,4584736.7116730558],[-10574282.811589491,4584737.7146641547],[-10574534.933492273,4584738.7002734952],[-10574537.882809335,4584738.7055826224],[-10574792.749392178,4584739.6912921201],[-10575043.206466377,4584740.6534041893],[-10575047.43146139,4584740.6655643163],[-10575301.868146338,4584741.6422542185],[-10575380.406126205,4584741.9422094123],[-10575553.579317205,4584741.7581924396],[-10575556.130544424,4584741.7481366377],[-10575810.142886695,4584741.462483977],[-10576063.769786799,4584741.1685717376],[-10576319.0548898,4584740.826223217],[-10576574.041550444,4584740.4780296246],[-10576828.720057542,4584740.1302191392]]]},"attributes":{"objectid":2488,"field_kid":"1000149635","approxacre":1254,"field_name":"BLUE MOUND SOUTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":145317.85000000001,"maxoilwell":21,"lastoilpro":230.50999999999999,"lastoilwel":12,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149635}},{"geometry":{"rings":[[[-10585040.340899777,4757597.8509341711],[-10585040.435274849,4757550.3674377659],[-10585016.637456771,4757550.2686473653],[-10585017.23783448,4757337.8259956511],[-10585017.986272352,4757078.0138789061],[-10585018.735413868,4756817.8311254876],[-10585278.875711245,4756820.5575152226],[-10585534.533501556,4756823.2299163146],[-10585537.774994848,4756823.2618132951],[-10585794.718550203,4756825.9548852444],[-10586056.410816316,4756828.6912156036],[-10586315.722670414,4756831.3977095066],[-10586575.247867761,4756834.1012289235],[-10586834.810908511,4756836.786004914],[-10587094.816353507,4756839.4683211995],[-10587096.49043061,4757098.8999213073],[-10587098.164307047,4757358.4082645765],[-10587099.37318863,4757549.0923396712],[-10587100.033866122,4757617.9589418294],[-10587102.521617001,4757877.5686224969],[-10587105.022482973,4758137.2427798593],[-10587107.496721819,4758394.1723979888],[-10587107.52264829,4758396.9825827107],[-10587110.040333755,4758656.7533862041],[-10587112.559521122,4758916.543944397],[-10586853.173591057,4758913.6921498692],[-10586593.503637524,4758910.8306625253],[-10586333.933097541,4758907.9636162985],[-10586074.369665911,4758905.088167564],[-10585817.258629581,4758902.2362295203],[-10585558.761113284,4758899.3609036403],[-10585555.841986265,4758899.3402433395],[-10585298.920966977,4758896.4862381434],[-10585037.679423725,4758893.5779708158],[-10585038.221510161,4758634.4370541917],[-10585038.762093818,4758376.0180140929],[-10585039.2966715,4758116.9594406225],[-10585039.830348399,4757857.7098555434],[-10585040.340899777,4757597.8509341711]]]},"attributes":{"objectid":2522,"field_kid":"1000149632","approxacre":629,"field_name":"TULLIS","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":6288.71,"maxoilwell":1,"lastoilpro":35.479999999999997,"lastoilwel":1,"lastodate":"11-2001","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149632}},{"geometry":{"rings":[[[-10584940.041338971,4774554.7281769551],[-10584942.864037624,4774293.8205501987],[-10584945.688939041,4774032.5808220478],[-10584948.512037279,4773771.9657798065],[-10584950.686908983,4773571.3121361732],[-10584951.456173103,4773511.6462334115],[-10584689.673099197,4773512.2321356153],[-10584425.605416071,4773512.8145439439],[-10584163.087502824,4773513.40769755],[-10583900.848508079,4773513.993729271],[-10583903.594862882,4773252.6586552244],[-10583906.34652452,4772990.7099293321],[-10583909.138933599,4772728.0524381772],[-10583911.938351538,4772464.7248185985],[-10584174.125241086,4772465.4050181443],[-10584435.578593072,4772466.076803688],[-10584696.025195539,4772466.732019187],[-10584956.295797095,4772467.3794671278],[-10585215.47645553,4772466.9979069168],[-10585474.404425403,4772466.6097441493],[-10585733.911756847,4772466.195039467],[-10585993.731545059,4772465.7723071855],[-10586253.198730595,4772465.3591559771],[-10586512.774840478,4772464.9401784446],[-10586772.483601801,4772464.5227542082],[-10587032.343235377,4772464.0989857074],[-10587030.407838153,4772724.2899572942],[-10587028.500377011,4772980.5603073919],[-10587028.457824461,4772984.1459759111],[-10587026.538045485,4773243.6837182827],[-10587024.619568238,4773502.8771341732],[-10586764.860706054,4773503.99235518],[-10586504.989515502,4773505.1034326926],[-10586245.697286068,4773506.2116608471],[-10585986.779884635,4773507.3112131935],[-10585983.639367037,4773767.8750057872],[-10585980.50095202,4774028.1052544862],[-10585977.343113765,4774288.9654782712],[-10585974.179768562,4774550.1466224575],[-10585715.405487536,4774551.2976768715],[-10585456.807307571,4774552.4397958796],[-10585198.329364846,4774553.5882598776],[-10584940.041338971,4774554.7281769551]]]},"attributes":{"objectid":2531,"field_kid":"1000149601","approxacre":633,"field_name":"EASTON NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":417231.44,"maxoilwell":36,"lastoilpro":868.69000000000005,"lastoilwel":24,"lastodate":"2-2009","cumm_gas":100347,"maxgaswell":7,"lastgaspro":58,"lastgaswel":1,"lastgdate":"4-1990","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149601}},{"geometry":{"rings":[[[-10582659.632429095,4766193.1072053742],[-10582920.198108893,4766192.9634300619],[-10582920.133023113,4766199.5201155115],[-10582920.068037508,4766206.0376009298],[-10582917.455919109,4766455.23288514],[-10582914.704417722,4766717.9377239747],[-10582914.654552152,4766722.8672365528],[-10582911.930289567,4766981.0570184616],[-10582909.150053389,4767244.6485137092],[-10582649.255697502,4767243.9796429155],[-10582390.565015152,4767243.3066261588],[-10582130.84365684,4767242.6066989778],[-10581870.846784219,4767241.8978446675],[-10581867.704595331,4767503.3822087925],[-10581864.56681178,4767764.5772814788],[-10581861.404300269,4768025.509828357],[-10581858.244291868,4768286.1815113565],[-10581854.334927293,4768547.217915494],[-10581850.409041524,4768809.3066772977],[-10581846.454223631,4769070.7648511538],[-10581842.501407888,4769332.1297696726],[-10581582.804091597,4769331.0356772961],[-10581323.148222717,4769329.9343372965],[-10581064.337618742,4769328.8165576886],[-10580805.50128551,4769327.6916601276],[-10580809.888739413,4769066.8049683115],[-10580811.064527709,4768996.9055210557],[-10580813.300576834,4768807.1862434288],[-10580816.364719452,4768546.4743005941],[-10580819.433367509,4768285.5078240959],[-10580822.498011285,4768024.2868336607],[-10580825.5648579,4767762.7963378085],[-10580828.627500059,4767501.0254875552],[-10580831.691644201,4767239.0111837415],[-10580834.109650584,4766977.1208059695],[-10580836.48539917,4766719.7282313127],[-10580836.506331561,4766715.6542759286],[-10580838.897104817,4766454.5708025284],[-10580841.233603505,4766199.4518453795],[-10580841.266252412,4766193.8703559861],[-10581100.919290943,4766193.7791165821],[-10581360.299318003,4766193.6805034848],[-10581619.376199206,4766193.5737405289],[-10581878.156041523,4766193.4616741845],[-10582138.19482014,4766193.3559413822],[-10582399.095281849,4766193.2442523902],[-10582659.632429095,4766193.1072053742]]]},"attributes":{"objectid":1883,"field_kid":"1000149613","approxacre":635,"field_name":"LAKE STELLAMARIS","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":231352.01999999999,"maxoilwell":14,"lastoilpro":923.74000000000001,"lastoilwel":14,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149613}},{"geometry":{"rings":[[[-10591948.545918085,4705363.447835804],[-10591948.656864397,4705103.9505740814],[-10591687.282531442,4705103.3759956695],[-10591424.814751161,4705102.7928098673],[-10591163.088316379,4705102.1922557577],[-10590901.496635215,4705101.5848843064],[-10590640.507541288,4705100.9799512327],[-10590378.704919325,4705100.3678230671],[-10590117.554541228,4705099.7421855778],[-10589856.598084221,4705099.1071580881],[-10589858.300495476,4704838.9688883601],[-10589860.007411452,4704578.4375880985],[-10589860.049051048,4704573.6603342043],[-10589861.745662633,4704317.4389579585],[-10589863.478707349,4704055.9730341872],[-10590124.478490071,4704057.4706529519],[-10590385.150999175,4704058.9615876367],[-10590645.496835308,4704060.4238486616],[-10590905.53251737,4704061.87942544],[-10591166.997229638,4704063.3425774574],[-10591427.972182915,4704064.7994325068],[-10591688.468489861,4704066.2381598642],[-10591948.477140211,4704067.6668610005],[-10591948.457112856,4704063.4948843885],[-10592210.337298809,4704065.1569678001],[-10592472.293270983,4704066.8141641235],[-10592734.362672318,4704068.4491128493],[-10592996.493343309,4704070.0778886573],[-10592996.389531005,4704330.4686847683],[-10592996.283716906,4704591.4758494608],[-10592996.165387845,4704851.5933491569],[-10592996.04725871,4705111.3181825625],[-10593257.967013922,4705113.155165243],[-10593519.883465102,4705114.9871324329],[-10593781.844166476,4705116.7927349033],[-10594043.842910971,4705118.5903635453],[-10594043.689366663,4705378.4993282733],[-10594043.536823552,4705638.4966119519],[-10594043.379475016,4705898.5683308542],[-10594043.222727224,4706158.7123041777],[-10593781.372326802,4706156.7807733389],[-10593519.742777945,4706154.8433242179],[-10593257.722082747,4706152.8850421822],[-10592995.540303573,4706150.9200734794],[-10592733.583780896,4706148.8504060023],[-10592471.424827069,4706146.7713512331],[-10592209.709879272,4706144.7024538377],[-10591948.235605624,4706142.6276380448],[-10591948.333837027,4705882.7724682745],[-10591948.433770524,4705623.0530732423],[-10591948.545918085,4705363.447835804]]]},"attributes":{"objectid":1899,"field_kid":"1000147602","approxacre":805,"field_name":"JAYHAWK","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":49858.980000000003,"maxoilwell":18,"lastoilpro":138,"lastoilwel":10,"lastodate":"1-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147602}},{"geometry":{"rings":[[[-10573366.630349429,4754740.5731433593],[-10573626.746845625,4754740.1865863772],[-10573624.083391353,4755001.4519987786],[-10573621.421742162,4755262.3975711931],[-10573618.759595312,4755523.035557746],[-10573616.0994536,4755783.3740776628],[-10573613.438613925,4756043.4156930139],[-10573610.78027996,4756303.1570201181],[-10573608.142072024,4756562.570631722],[-10573605.507471213,4756821.6638709623],[-10573347.221896909,4756823.4667967176],[-10573093.466689773,4756825.2324703541],[-10573089.411164541,4756825.2499422655],[-10572832.089089749,4756827.0275269728],[-10572575.261979748,4756828.796836176],[-10572315.048328403,4756827.9103591628],[-10572054.005030861,4756827.0121232094],[-10571794.438116888,4756826.1186627373],[-10571535.464279206,4756825.2189945364],[-10571474.736924788,4756825.0092458669],[-10571276.444474265,4756826.2901401231],[-10571017.975793593,4756827.9563016575],[-10570759.77832252,4756829.6134132054],[-10570502.2493141,4756831.2583703063],[-10570502.950800667,4756571.3255805848],[-10570503.654193446,4756310.856466746],[-10570503.729240643,4756288.5924539678],[-10570504.759847637,4756050.0530978069],[-10570505.888431154,4755788.8405340901],[-10570507.012401855,4755528.6978257941],[-10570508.134569177,4755268.7650056761],[-10570509.26524519,4755009.0010869401],[-10570510.395719919,4754749.4096752228],[-10570769.693685325,4754748.469196233],[-10571029.126805123,4754747.5218667518],[-10571288.67886089,4754746.5576060647],[-10571548.346448675,4754745.5852025822],[-10571808.302565731,4754744.6221028902],[-10572068.455207204,4754743.652540084],[-10572328.767130669,4754742.668630694],[-10572589.254554564,4754741.6781290695],[-10572847.89346447,4754741.3182038274],[-10573107.007416504,4754740.950909242],[-10573110.290963067,4754740.9470141027],[-10573366.630349429,4754740.5731433593]]]},"attributes":{"objectid":1936,"field_kid":"1000149592","approxacre":948,"field_name":"AUFDEMBERGE","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":274935,"maxgaswell":3,"lastgaspro":236,"lastgaswel":2,"lastgdate":"10-1991","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149592}},{"geometry":{"rings":[[[-10573783.320477206,4586742.5964905992],[-10574037.949549908,4586742.6949730692],[-10574039.089913096,4586998.959056329],[-10574040.230376637,4587255.2060936633],[-10574041.372542638,4587511.4017564692],[-10574042.515008612,4587767.664664316],[-10574043.639655834,4588023.6815373478],[-10574044.128214804,4588135.0265086014],[-10574046.612846134,4588279.6313659018],[-10574050.968439866,4588535.4515911806],[-10574055.3197311,4588790.9695400698],[-10573801.152932359,4588791.1292114472],[-10573544.009483475,4588791.2853473937],[-10573288.232418364,4588791.4365128484],[-10573032.379365204,4588791.5827199081],[-10572776.482461296,4588791.7169747921],[-10572520.511071093,4588791.8452540226],[-10572264.452680059,4588791.9708637241],[-10572008.28235933,4588792.0894808499],[-10572007.229954215,4588536.2466790555],[-10572006.179148657,4588280.7255316162],[-10572005.123340962,4588024.7295793323],[-10572004.067434831,4587768.524710576],[-10572003.011927292,4587512.5831333464],[-10572001.958817184,4587257.371923482],[-10572000.888602747,4587000.1054318333],[-10571999.812790312,4586741.7188458303],[-10572255.433211429,4586741.8642296987],[-10572507.134691203,4586742.0011318158],[-10572510.882033791,4586741.996647995],[-10572766.033311378,4586742.1267807167],[-10573015.850407586,4586742.2484446522],[-10573020.955323312,4586742.2531017009],[-10573274.829621162,4586742.3751099082],[-10573526.162073491,4586742.4891322684],[-10573528.952607259,4586742.4898694921],[-10573783.320477206,4586742.5964905992]]]},"attributes":{"objectid":1681,"field_kid":"1000149636","approxacre":633,"field_name":"BLUE MOUND SOUTHEAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":6470.21,"maxoilwell":7,"lastoilpro":59.770000000000003,"lastoilwel":1,"lastodate":"9-2000","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149636}},{"geometry":{"rings":[[[-10573792.768815646,4564225.4257974215],[-10574051.365382336,4564226.2036692714],[-10574048.625917811,4564483.5975949448],[-10574045.886755081,4564740.82499192],[-10574045.854491023,4564743.9593067849],[-10574043.138783323,4564997.9174367348],[-10574040.392515255,4565254.8117403248],[-10574040.326203786,4565258.8845091686],[-10574036.44726612,4565510.8871273575],[-10574032.511130963,4565766.5605572304],[-10574032.475261878,4565769.7957912367],[-10574028.601830347,4566021.8287014756],[-10574024.685724908,4566276.7392366929],[-10574023.192626363,4566531.4514820063],[-10574021.698325651,4566786.2596847173],[-10574020.196715105,4567041.2330056978],[-10574018.693902042,4567296.3426530305],[-10573764.166519549,4567296.8169695958],[-10573510.391508171,4567297.2845554519],[-10573257.349445457,4567297.7395737646],[-10573005.035025235,4567298.1867195163],[-10572752.70568781,4567298.6257444741],[-10572499.559104264,4567299.0586848892],[-10572493.509600459,4567299.059745254],[-10572245.954991002,4567299.4928977368],[-10571990.938242214,4567299.9320699871],[-10571993.21005227,4567045.2746194629],[-10571995.451899434,4566793.9153090455],[-10571995.49317595,4566790.5594668854],[-10571997.777501043,4566535.8439668519],[-10571998.374061054,4566469.3344740663],[-10571997.502062218,4566281.180665087],[-10571997.892912848,4566024.4127836199],[-10571998.283366622,4565767.2292762976],[-10571998.300475715,4565756.8002765048],[-10571998.665113984,4565509.6231961558],[-10571999.046564598,4565251.602820782],[-10571999.075008521,4565238.6391845057],[-10571999.452844054,4564993.5779467737],[-10571999.850519652,4564734.8456467483],[-10571999.853618674,4564723.6991531681],[-10572000.235782063,4564475.9812664231],[-10572000.637779808,4564215.2579648998],[-10572202.790263869,4564220.4884840362],[-10572254.18085658,4564220.6514180824],[-10572508.61150014,4564221.4590005055],[-10572516.845732631,4564221.4765808713],[-10572763.830656653,4564222.2555416245],[-10573019.773250666,4564223.0546151241],[-10573030.553530576,4564223.0848646425],[-10573276.955980424,4564223.8482259819],[-10573534.63508486,4564224.63802802],[-10573542.072294552,4564224.6677913172],[-10573792.768815646,4564225.4257974215]]]},"attributes":{"objectid":1689,"field_kid":"1000146843","approxacre":951,"field_name":"IRISH VALLEY SOUTH","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146843}},{"geometry":{"rings":[[[-10580815.671322571,4504988.9183234954],[-10581066.57325986,4504991.0475492291],[-10581068.574700182,4505246.0168485809],[-10581070.538394062,4505496.3311886303],[-10581070.584743541,4505500.6820424655],[-10581072.587872203,4505755.0457576048],[-10581074.5528554,4506004.8192241648],[-10581074.601605883,4506009.0911948765],[-10581076.599103689,4506262.3611627398],[-10581078.577122048,4506513.0559041435],[-10581078.60401006,4506515.6386381928],[-10581080.587892432,4506768.9246306783],[-10581082.56997261,4507022.2095531095],[-10580831.34575722,4507020.704271391],[-10580583.957340779,4507019.2154533761],[-10580580.161087211,4507019.1993690087],[-10580329.069923909,4507017.6692365343],[-10580077.991675315,4507016.133048852],[-10580004.585189482,4507015.6950840186],[-10579852.612838123,4507016.4771802174],[-10579826.347317925,4507016.42338489],[-10579574.693231476,4507015.9027694445],[-10579322.518347463,4507015.3657447938],[-10579069.999669107,4507014.8229112253],[-10579068.438281499,4506760.9852320952],[-10579066.872772802,4506506.4100280106],[-10579065.293346051,4506251.7446280699],[-10579063.710608615,4505996.7710570227],[-10579062.153193489,4505741.4974109204],[-10579060.594269564,4505485.9076912552],[-10579059.01912,4505230.0038128765],[-10579057.442962505,4504973.7971510356],[-10579308.823649511,4504975.9762047147],[-10579560.140162805,4504978.1471851682],[-10579567.059798526,4504978.2154111452],[-10579811.392102208,4504980.3227058677],[-10580062.560545569,4504982.482711087],[-10580066.988423496,4504982.5194887584],[-10580313.665516045,4504984.6355260247],[-10580564.704310561,4504986.7825381244],[-10580568.381027073,4504986.8140058666],[-10580815.671322571,4504988.9183234954]]]},"attributes":{"objectid":1712,"field_kid":"1000147516","approxacre":629,"field_name":"GREEN ELM","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147516}},{"geometry":{"rings":[[[-10608932.280360365,4477392.9517503493],[-10609196.71574368,4477392.0205788948],[-10609197.31167046,4477399.2477737078],[-10609198.85069833,4477417.5366953621],[-10609199.89102684,4477650.1588534247],[-10609201.051817153,4477909.6628058078],[-10609201.072735755,4477914.5164355207],[-10609202.209778545,4478167.8746351516],[-10609203.368032651,4478425.7201285148],[-10609210.295171665,4478680.9567350475],[-10609217.098676007,4478931.5610860772],[-10609217.204276556,4478935.6242685728],[-10609224.113768596,4479189.7260854514],[-10609230.895920167,4479439.111441208],[-10609230.800190954,4479443.2678040126],[-10609224.688691564,4479696.5240262859],[-10609218.580495793,4479949.6787529346],[-10609212.463790532,4480202.7562632198],[-10609206.348987775,4480455.7581877485],[-10609205.67432816,4480708.2530784085],[-10609205.007627707,4480958.1755560776],[-10609204.994168146,4480961.0471228035],[-10609204.314915389,4481214.1553187715],[-10609203.645604922,4481463.708098853],[-10609203.63797137,4481467.5715223271],[-10609202.955626836,4481721.2749895426],[-10609202.280239714,4481972.3752707308],[-10609202.265078997,4481975.2875148142],[-10609201.579642858,4482229.5945208482],[-10609200.894212607,4482484.1985463332],[-10608945.131612377,4482484.9396656426],[-10608694.027559988,4482485.6612138124],[-10608689.784489345,4482485.6807907075],[-10608434.861152824,4482486.410467932],[-10608185.937403595,4482487.1182009196],[-10608180.353093134,4482487.1329766121],[-10607926.243390968,4482487.8551132111],[-10607676.879036246,4482488.5569246542],[-10607672.558476618,4482488.5738573335],[-10607419.282731803,4482489.2727204664],[-10607166.421863332,4482489.9639115762],[-10606912.404345378,4482494.3970507244],[-10606658.166676018,4482498.827168067],[-10606404.19901762,4482503.2385371886],[-10606150.346092086,4482507.6393371643],[-10605896.456425942,4482512.0486974157],[-10605642.641346646,4482516.450886324],[-10605388.802841499,4482520.8373436993],[-10605134.976251263,4482525.2175099142],[-10605134.32083972,4482272.2508996055],[-10605133.662404245,4482018.3687029304],[-10605133.018459192,4481763.3090795493],[-10605132.372788057,4481507.1678889534],[-10605131.695858466,4481250.0164407399],[-10605131.016805971,4480991.9502012646],[-10605130.362461181,4480732.9589188565],[-10605129.703490658,4480473.0542386463],[-10605129.730109463,4480217.7744801082],[-10605129.756615721,4479961.9356629131],[-10605129.737347247,4479955.2796403319],[-10605129.751272839,4479705.5329198334],[-10605129.764939219,4479448.5633986164],[-10605129.771655766,4479439.8675187454],[-10605129.796542995,4479192.3625261961],[-10605129.822412312,4478934.900101616],[-10605129.809020089,4478926.8577891979],[-10605129.809209224,4478676.1945864623],[-10605129.810993383,4478416.131328648],[-10605382.905350124,4478419.343778858],[-10605632.715726618,4478422.5090033608],[-10605635.632983718,4478422.5455305129],[-10605887.967163177,4478425.7253855718],[-10606116.103695685,4478428.5962786861],[-10606135.668404618,4478428.585352188],[-10606139.889060467,4478428.584907419],[-10606391.388609085,4478428.5268688863],[-10606642.392687544,4478428.4624068597],[-10606892.922420096,4478428.3881245833],[-10607142.885000011,4478428.3070403663],[-10607133.845655579,4478170.7427933486],[-10607124.970394846,4477917.8935463615],[-10607124.822642485,4477913.9273777846],[-10607115.827974718,4477657.867784177],[-10607106.860450976,4477402.5660959166],[-10607368.4844791,4477400.8425704082],[-10607630.58075122,4477399.1104971236],[-10607639.890867339,4477399.0584179312],[-10607893.143561168,4477397.389123993],[-10608156.173008453,4477395.6487612743],[-10608411.679113029,4477394.7661514664],[-10608670.330638355,4477393.8662245562],[-10608690.072662773,4477393.7976843463],[-10608932.280360365,4477392.9517503493]]]},"attributes":{"objectid":1768,"field_kid":"1000149394","approxacre":2898,"field_name":"IDENBRO","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149394}},{"geometry":{"rings":[[[-10604550.05499584,4576835.4293860542],[-10604549.198722105,4576575.7286382513],[-10604292.46040619,4576575.0409216452],[-10604035.475709869,4576574.3468555985],[-10604028.287923221,4576574.3293506568],[-10603778.255045058,4576573.6407249002],[-10603520.737842755,4576572.9244347941],[-10603519.565393688,4576317.8615657697],[-10603518.392740898,4576063.225462026],[-10603517.214490505,4575807.6486161798],[-10603516.034042262,4575551.591441053],[-10603514.853299154,4575294.9621597091],[-10603513.671361031,4575037.6635440532],[-10603512.487920186,4574780.5170891881],[-10603511.30418032,4574523.2606997099],[-10603767.706958251,4574524.7688792394],[-10604017.743291793,4574526.2325069616],[-10604023.855146844,4574526.2746470142],[-10604279.798502715,4574527.7778759059],[-10604535.528916687,4574529.2724709501],[-10604537.241786104,4574786.1802849676],[-10604538.928759273,4575039.228026106],[-10604538.955260083,4575042.6877322691],[-10604540.669038158,4575298.8077360298],[-10604542.353322472,4575550.2892352184],[-10604795.702943044,4575552.5569495913],[-10605049.170298243,4575554.8195843361],[-10605302.769303886,4575557.0803141966],[-10605556.466121448,4575559.3388852756],[-10605810.298388483,4575562.2670817636],[-10606064.333186839,4575565.1904526418],[-10606318.415439935,4575568.112935096],[-10606572.599209337,4575571.0314811757],[-10606573.786228731,4575827.8515202403],[-10606574.971046489,4576084.6004537195],[-10606576.151860485,4576341.2874205019],[-10606577.3321747,4576597.9143211367],[-10606579.990074148,4576854.3086710256],[-10606582.569241827,4577103.0887473281],[-10606582.647179633,4577109.8709686883],[-10606585.289174875,4577364.5975963548],[-10606587.829829829,4577609.4096078593],[-10606587.931577502,4577618.4933190625],[-10606334.885344816,4577617.389701141],[-10606081.594733974,4577616.2790981289],[-10605827.662992908,4577615.1611302104],[-10605573.227478143,4577614.0341457473],[-10605318.56420411,4577612.9086862449],[-10605063.36501978,4577611.7721780483],[-10604808.090750223,4577610.6285572089],[-10604552.58882162,4577609.4749028478],[-10604552.56946142,4577602.175777087],[-10604551.751747549,4577352.3012476563],[-10604550.90777299,4577094.2888486916],[-10604550.89309882,4577089.2694086507],[-10604550.05499584,4576835.4293860542]]]},"attributes":{"objectid":1771,"field_kid":"1000146308","approxacre":951,"field_name":"IOLA NORTHEAST","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146308}},{"geometry":{"rings":[[[-10569943.66575676,4570632.423532539],[-10569945.477759074,4570376.0759158358],[-10569692.60930332,4570373.9868206671],[-10569441.020729419,4570371.9012685008],[-10569187.612649005,4570369.8034199709],[-10568939.94671659,4570367.7449967749],[-10568933.419860227,4570367.6876813387],[-10568934.509644797,4570109.8185906829],[-10568935.597724983,4569852.2341225185],[-10568936.702421175,4569595.0304599581],[-10568937.806814108,4569338.1689923052],[-10568938.895887626,4569081.5066636158],[-10568939.98646256,4568824.8871063432],[-10568941.072631929,4568568.3263074663],[-10568942.158700662,4568311.8307345528],[-10568951.03167313,4568311.8748272201],[-10568952.743759058,4568056.258915144],[-10568954.456546651,4567800.5481619984],[-10568956.175141785,4567544.7462545587],[-10568957.893237203,4567288.8496465869],[-10569209.33883471,4567290.3547218228],[-10569460.091530105,4567291.8518080674],[-10569710.154126672,4567293.3340531765],[-10569959.544044547,4567294.8071671296],[-10570216.193669839,4567295.9904082362],[-10570472.309377065,4567297.1656591222],[-10570727.968756076,4567298.3308889586],[-10570983.165399447,4567299.4871129273],[-10571237.867670545,4567300.6348388158],[-10571484.551859111,4567301.7392279394],[-10571490.72020028,4567301.7639255151],[-10571741.768240968,4567302.8836356923],[-10571990.991469117,4567303.9886400998],[-10571990.938242214,4567299.9320699871],[-10572241.130205054,4567299.5009279298],[-10572493.509600459,4567299.059745254],[-10572499.559104264,4567299.0586848892],[-10572748.154018076,4567298.6319961501],[-10573005.035025235,4567298.1867195163],[-10573005.018526772,4567553.4068194879],[-10573005.001420692,4567809.4430513615],[-10573004.988884168,4567812.0207087332],[-10573004.959879126,4568066.3279622346],[-10573004.930645462,4568323.9628842473],[-10573016.076850846,4568323.8860202543],[-10573014.999813881,4568580.383663604],[-10573013.938429253,4568832.8794657346],[-10573013.937199334,4568836.2171841674],[-10573012.842054226,4569091.2235775376],[-10573011.750319898,4569345.4348922214],[-10573010.015420603,4569602.0297569409],[-10573008.274806855,4569859.5478520887],[-10573006.52849257,4570116.3594008703],[-10573004.782780424,4570373.0063345255],[-10572751.510140123,4570372.8449050542],[-10572497.923936844,4570372.6754817674],[-10572244.007951831,4570372.4966685986],[-10571989.711626504,4570372.3112583943],[-10571988.828506203,4570629.1444745408],[-10571987.940768281,4570887.4182834271],[-10571987.085676128,4571144.7651491472],[-10571986.229584036,4571401.9747024458],[-10571985.350968845,4571658.8417918095],[-10571984.470651856,4571915.6942963116],[-10571983.594041599,4572172.2665078668],[-10571982.715024302,4572429.341074002],[-10571727.478007948,4572428.1253470927],[-10571477.021126147,4572426.9264601292],[-10571472.801040024,4572426.9131695498],[-10571469.258238232,4572426.8840034511],[-10571218.691820618,4572426.735530464],[-10570972.964105513,4572426.5856156349],[-10570965.200216103,4572426.582514544],[-10570768.194814058,4572426.4546139427],[-10570710.09364034,4572426.5878247404],[-10570465.647603206,4572427.139696897],[-10570457.04594353,4572427.1658029603],[-10570363.591635566,4572427.3620600989],[-10570205.975532223,4572428.1983834403],[-10570202.185944257,4572428.2191123795],[-10570100.270845018,4572427.8243531408],[-10569956.688315507,4572425.7493733689],[-10569952.430593543,4572168.9457911523],[-10569948.20298985,4571914.0846386943],[-10569943.957276087,4571657.9670344898],[-10569939.70715891,4571401.6657227082],[-10569938.699218828,4571340.3826088449],[-10569940.061772827,4571145.4205884077],[-10569941.854954764,4570888.8999760691],[-10569943.66575676,4570632.423532539]]]},"attributes":{"objectid":1773,"field_kid":"1000146842","approxacre":2536,"field_name":"IRISH VALLEY","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1156,"maxoilwell":4,"lastoilpro":17,"lastoilwel":4,"lastodate":"2-1984","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":690.21500000000003,"avgdepthsl":-301.28500000000003,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146842}},{"geometry":{"rings":[[[-10583639.598787609,4616554.3988892771],[-10583638.398814652,4616296.7339064237],[-10583637.197641389,4616038.9091217723],[-10583753.841780066,4616039.8087926237],[-10583893.466228336,4616040.7501761308],[-10584149.801192053,4616042.4718992701],[-10584259.453226641,4616043.2029712154],[-10584406.057365688,4616044.1779424073],[-10584648.577914236,4616045.7859568652],[-10584662.54280439,4616045.4718066519],[-10584768.115668627,4616046.2341553587],[-10584919.922263116,4616047.3421748308],[-10585177.178080315,4616049.2142022494],[-10585277.91460773,4616049.9435801543],[-10585434.218450889,4616051.0858499808],[-10585494.496960254,4616051.5247024139],[-10585690.945164718,4616052.5794914952],[-10585789.929787695,4616053.1023525223],[-10585792.810356855,4615731.5365805486],[-10585795.640033156,4615415.6135469843],[-10585795.700534161,4615410.436087043],[-10585798.59181018,4615089.7485620808],[-10585801.138957165,4614807.4025235036],[-10585801.375773342,4614776.2985210652],[-10585801.410667362,4614769.4944341229],[-10586056.083514987,4614771.0553810652],[-10586310.524897618,4614772.6081721522],[-10586564.709185876,4614774.1573967459],[-10586818.638181852,4614775.7005053274],[-10586821.02649194,4614454.989175926],[-10586823.4123965,4614134.6483055335],[-10586825.795895807,4613814.6444641519],[-10586828.178892016,4613494.980934103],[-10587082.271708315,4613495.8121702932],[-10587336.076194514,4613496.636654105],[-10587589.631595679,4613497.4369232971],[-10587842.897965953,4613498.2294204459],[-10587845.568410182,4613241.1824184796],[-10587848.220820744,4612985.759455503],[-10587850.886954676,4612729.413335301],[-10587853.553389709,4612472.9949572645],[-10587856.207311682,4612216.4404779011],[-10587858.860232782,4611959.8728865581],[-10587861.510650812,4611703.3508050041],[-10587864.163171178,4611446.857663339],[-10587867.792815128,4611189.8131321361],[-10587871.424662609,4610932.671157605],[-10587875.047598245,4610675.7551489742],[-10587878.669031458,4610418.9523218144],[-10588129.536901014,4610422.0641684132],[-10588380.701009732,4610425.1720627733],[-10588632.176675187,4610428.2710353313],[-10588883.972306954,4610431.3691135142],[-10589136.149575593,4610434.4719032319],[-10589388.801387545,4610437.5758358017],[-10589642.157505997,4610440.6724991966],[-10589895.510420719,4610443.7607535282],[-10589899.9658542,4610186.7418166744],[-10589904.421187125,4609929.8044620492],[-10589908.889834758,4609672.962443755],[-10589913.358682068,4609416.2163917543],[-10590156.495297631,4609421.7249820866],[-10590399.470628327,4609427.224657896],[-10590642.297288645,4609432.7108323351],[-10590884.987092067,4609438.1889838511],[-10591127.050477924,4609443.6569511704],[-10591368.787089424,4609449.1119284285],[-10591610.171897979,4609454.5438505439],[-10591851.189986426,4609459.9626555089],[-10592108.859301381,4609458.734256099],[-10592366.651457142,4609457.4980838224],[-10592624.57005783,4609456.2551579122],[-10592882.631922709,4609455.0047137626],[-10593140.823035734,4609453.747133743],[-10593399.131283017,4609452.4824179588],[-10593657.546953471,4609451.2086553844],[-10593916.071548792,4609449.9275023276],[-10594172.565394139,4609451.4496143414],[-10594428.824871078,4609452.9626826877],[-10594684.854384614,4609454.4710392151],[-10594696.328425068,4609454.5384557657],[-10594874.486853722,4609456.0800485797],[-10594940.647223525,4609456.3818822596],[-10595196.232431088,4609457.5452204403],[-10595451.58577311,4609458.7011711719],[-10595706.714057341,4609459.855850013],[-10595961.60516995,4609461.0040333224],[-10596215.753355063,4609459.4971528146],[-10596470.364870956,4609457.9821140403],[-10596725.398570489,4609456.4607011275],[-10596980.882285533,4609454.9335508589],[-10597236.790987622,4609453.3791314047],[-10597493.1179689,4609451.8156622909],[-10597749.886756187,4609450.2585597346],[-10598007.112266691,4609448.6926619643],[-10598262.445776662,4609450.878200491],[-10598514.782054132,4609453.0329351686],[-10598517.817930887,4609453.054183282],[-10598773.231632615,4609455.2286370648],[-10599024.61021327,4609457.3607027447],[-10599028.682777183,4609457.3974847831],[-10599024.02351067,4609714.8151474772],[-10599019.361339666,4609972.3906065645],[-10599014.699069155,4610229.9268854102],[-10599010.035096897,4610487.4701077184],[-10599266.698806558,4610489.805659079],[-10599524.378179234,4610492.1440041307],[-10599529.012586242,4610492.1782352831],[-10599783.308584481,4610494.4828470126],[-10600042.796728317,4610496.8261445444],[-10600296.626804763,4610497.8235443849],[-10600544.920641353,4610498.7913090438],[-10600550.075644735,4610498.8038734728],[-10600802.418818437,4610499.7867617998],[-10601053.917925565,4610500.7599743418],[-10601310.489436682,4610502.2598979613],[-10601567.315339129,4610503.7526835883],[-10601824.384520117,4610505.2458491968],[-10602081.672251392,4610506.731494898],[-10602081.581510905,4610510.6610500282],[-10602357.769200964,4610510.5632982589],[-10602634.486097133,4610510.4587879945],[-10602910.960415682,4610510.3361862423],[-10603187.429027762,4610510.2074683141],[-10603464.294184159,4610510.0793163087],[-10603740.894522902,4610509.9449724685],[-10604017.219845673,4610509.8028579922],[-10604293.26034118,4610509.6555213863],[-10604299.400147453,4610251.1342702396],[-10604305.543958979,4609992.4496574719],[-10604311.695379885,4609733.6034790128],[-10604317.848703491,4609474.6093797078],[-10604574.366465608,4609477.281669084],[-10604830.615519503,4609479.9442778714],[-10605086.60898017,4609482.6057423744],[-10605342.344244679,4609485.2594373459],[-10605597.803292349,4609487.9015406435],[-10605852.995033404,4609490.5337085193],[-10606107.905251529,4609493.1532654706],[-10606362.507716561,4609495.7646710156],[-10606618.473464249,4609496.463530384],[-10606874.384048721,4609497.1553826621],[-10607130.248580474,4609497.837297379],[-10607386.058749933,4609498.5124598145],[-10607381.182213362,4609757.8984538885],[-10607376.311786337,4610016.8980247732],[-10607371.448770309,4610275.5152208293],[-10607366.592464203,4610533.7858189037],[-10607362.464497777,4610791.6486236108],[-10607358.346546505,4611049.0029415581],[-10607354.223090626,4611306.0830811253],[-10607350.102639966,4611562.8818855006],[-10607093.717849161,4611563.7033815673],[-10606836.806152649,4611564.5215684948],[-10606579.714649476,4611565.3243373334],[-10606392.816326926,4611565.9027932836],[-10606322.324100517,4611566.3568731435],[-10606066.725445468,4611563.3781372588],[-10605811.211187903,4611560.3925199183],[-10605555.083625937,4611557.3969680537],[-10605298.581634138,4611554.3908426603],[-10605291.972668074,4611811.9105936941],[-10605285.364302803,4612069.3167300886],[-10605278.761243496,4612326.6366438549],[-10605272.159986323,4612583.8473881474],[-10605264.984168753,4612840.9334104815],[-10605257.810353344,4613097.9246487133],[-10605250.630030258,4613354.8274687575],[-10605243.452810679,4613611.625166771],[-10604984.886293925,4613608.9557878142],[-10604725.800780833,4613606.2750695525],[-10604467.482650524,4613603.6012285519],[-10604209.506513925,4613600.9227967812],[-10604216.899859156,4613343.8472178932],[-10604224.29871187,4613086.5347440857],[-10604231.692055285,4612829.4364394788],[-10604239.082393566,4612572.4117138181],[-10603962.155120321,4612572.3604731774],[-10603685.498958854,4612572.3006914705],[-10603409.126523668,4612572.2319862442],[-10603133.013342388,4612572.1558073917],[-10602857.157371903,4612573.0744239641],[-10602581.603647633,4612573.9837339995],[-10602306.30661739,4612574.8852673443],[-10602031.293512378,4612575.7781315688],[-10601775.06323741,4612574.170166159],[-10601519.338240959,4612572.5590095958],[-10601264.088889126,4612570.9407113222],[-10601009.320888411,4612569.3193495898],[-10600755.029933842,4612567.6996399807],[-10600501.183287986,4612566.0755928205],[-10600247.770939339,4612564.4519237485],[-10599994.802599061,4612562.8248092551],[-10599738.94996937,4612559.7439360684],[-10599483.722555442,4612556.6621651258],[-10599228.625590855,4612553.568923316],[-10598973.842385415,4612550.4745320063],[-10598977.490500038,4612292.0897445306],[-10598981.134407043,4612034.0383199062],[-10598984.780814096,4611776.3218895849],[-10598988.422713246,4611518.9325275226],[-10598733.288978869,4611516.4489456061],[-10598478.553500455,4611513.9626840288],[-10598224.228191655,4611511.4733603625],[-10597970.322263001,4611508.9825037289],[-10597714.809760014,4611510.3521499299],[-10597464.711056791,4611511.6886098729],[-10597459.713934237,4611511.7206453783],[-10597205.067423197,4611513.0704038572],[-10596957.501420582,4611514.3765099291],[-10596950.865321184,4611514.4123847345],[-10596697.114536108,4611515.7460781876],[-10596448.690551192,4611517.0446747048],[-10596443.774721723,4611517.0773466006],[-10596190.87140739,4611518.3910250477],[-10595938.361643845,4611519.695779467],[-10595682.202916628,4611519.3202227792],[-10595425.350194748,4611518.9377915049],[-10595168.741452321,4611518.5458002388],[-10594912.058324762,4611518.1464184988],[-10594655.319833882,4611517.7363328207],[-10594398.527681598,4611517.3188564796],[-10594141.638718441,4611516.901381081],[-10593884.67547027,4611516.4760054732],[-10593626.626360592,4611518.149099905],[-10593368.842855215,4611519.8130168421],[-10593111.024209762,4611521.4662300516],[-10592853.291262565,4611523.1130710961],[-10592595.641510807,4611524.7483151844],[-10592338.058435535,4611526.3766775513],[-10592080.609614043,4611528.0069504799],[-10591823.26331008,4611529.6303413305],[-10591818.80312708,4611787.0827125665],[-10591814.343546106,4612044.4066825863],[-10591809.872052701,4612301.6162608182],[-10591805.400860883,4612558.7077427283],[-10591560.60592209,4612551.8601842113],[-10591316.631021844,4612545.0289346706],[-10591073.444023445,4612538.2034163065],[-10590831.058041805,4612531.3957364252],[-10590828.178592198,4612788.6599335438],[-10590825.299444061,4613045.8111296287],[-10590822.42680436,4613302.8662679633],[-10590819.55596781,4613559.811958245],[-10590812.446829811,4613559.6267048754],[-10590810.836531045,4613877.0368213812],[-10590809.234356014,4614192.7410051851],[-10590807.657423835,4614506.7963340608],[-10590806.089747729,4614819.212399289],[-10590570.168773174,4614816.3558376618],[-10590336.846874045,4614813.5251276325],[-10590104.357428001,4614810.6916055931],[-10589873.321345799,4614807.8723467989],[-10589621.184096485,4614806.6781112654],[-10589367.424391475,4614805.4726776872],[-10589113.676000534,4614804.2565378472],[-10588859.371072454,4614803.0328828394],[-10588604.544747408,4614801.8091058461],[-10588349.277117155,4614800.5775575312],[-10588092.826232372,4614799.3263904862],[-10587835.387116253,4614798.0649083238],[-10587835.326184932,4614805.6501790565],[-10587833.134713605,4615047.1099855024],[-10587832.447884876,4615103.6917979755],[-10587831.653479312,4615169.1426926563],[-10587830.015950842,4615425.8876784639],[-10587829.951602602,4615438.21045224],[-10587827.979167491,4615748.3670917964],[-10587825.926163929,4616071.1193598127],[-10587996.374507468,4616071.2228216464],[-10588253.831065333,4616071.375255391],[-10588255.053140646,4616323.8849356584],[-10588256.270418011,4616575.1545207603],[-10588257.108533151,4616831.0935678389],[-10588257.952648243,4617088.1882930668],[-10588001.579721818,4617087.8898955202],[-10587745.919411326,4617087.5853708768],[-10587744.292498456,4616831.5868268339],[-10587742.696190458,4616580.5814476283],[-10587486.319270259,4616579.3333741883],[-10587230.633541455,4616578.082489267],[-10587233.703211546,4616832.3490896374],[-10587236.773481447,4617086.7763748262],[-10586982.472828338,4617086.3644790361],[-10586727.106855588,4617085.9429034926],[-10586727.133856151,4617090.923830607],[-10586729.138190251,4617347.0670889365],[-10586731.108210394,4617599.0662707807],[-10586731.140624996,4617602.760870574],[-10586733.13665518,4617858.012665431],[-10586735.130686119,4618112.7770449016],[-10586477.380172528,4618112.4354561381],[-10586218.728727443,4618112.0875001941],[-10586221.167442707,4618370.0954602323],[-10586223.606458271,4618628.1239133207],[-10586225.943757417,4618886.1594718136],[-10586228.282558223,4619144.2192242667],[-10585970.516216377,4619143.8541885158],[-10585712.9888482,4619143.4836668866],[-10585715.753030874,4619401.5673002489],[-10585718.517313717,4619659.6574040353],[-10585721.282497555,4619917.7686457774],[-10585724.046179671,4620175.8952877885],[-10585466.64304352,4620175.5178930778],[-10585209.25963,4620175.1324631423],[-10584951.876516866,4620174.7428243812],[-10584694.512725906,4620174.3451503972],[-10584437.642920693,4620170.6957966173],[-10584179.792693047,4620167.0255365744],[-10584169.877941113,4620166.8790797731],[-10583920.946425052,4620163.3412577137],[-10583661.154474372,4620159.6423218651],[-10583647.840029888,4620159.4558475278],[-10583400.342556003,4620155.9201844586],[-10583138.517377647,4620152.1715293899],[-10583128.443043031,4620152.0180595238],[-10582875.706370693,4620148.3991623558],[-10582611.924652377,4620144.6158373784],[-10582613.086493332,4619886.9459925825],[-10582614.21916089,4619635.6760513727],[-10582614.228609247,4619629.671196104],[-10582615.392447596,4619372.7888672175],[-10582616.519290945,4619124.330600352],[-10582616.558085572,4619116.2994867442],[-10582617.706801875,4618860.1785405232],[-10582618.826344769,4618610.4609912084],[-10582618.837695416,4618604.4387532026],[-10582619.990812078,4618349.0732098762],[-10582621.142424649,4618094.0888961982],[-10582881.023667136,4618096.1095918603],[-10583133.95615395,4618098.0702942777],[-10583139.91357469,4618098.1194587843],[-10583397.80063417,4618100.1104635634],[-10583646.77118507,4618102.0254267436],[-10583645.559901625,4617843.9029673757],[-10583644.351020781,4617585.8149028551],[-10583643.157757619,4617327.7702833135],[-10583641.96549537,4617069.7728031278],[-10583640.782442667,4616811.9465161171],[-10583639.598787609,4616554.3988892771]]]},"attributes":{"objectid":1785,"field_kid":"1000146318","approxacre":10494,"field_name":"BUSH CITY SHOESTRING","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":2981890.25,"maxoilwell":612,"lastoilpro":4345.6000000000004,"lastoilwel":495,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":704.36666666999997,"avgdepthsl":-332,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146318}},{"geometry":{"rings":[[[-10585765.87186916,4724851.8949885964],[-10585766.274001466,4724591.7387084523],[-10585766.676636264,4724331.3334651664],[-10585767.092687773,4724070.739708107],[-10585767.509541735,4723809.9464999475],[-10585768.413447231,4723549.4051868329],[-10585769.318557478,4723288.4184753885],[-10585769.314187026,4723283.8740497241],[-10585770.182023667,4723027.0045663128],[-10585771.066717176,4722765.1696758559],[-10586028.819259068,4722766.770571243],[-10586286.463978585,4722768.3651553486],[-10586543.974545863,4722769.945440812],[-10586801.377290774,4722771.518255488],[-10587058.696440874,4722773.0783169298],[-10587315.887645725,4722774.6327114683],[-10587572.953508215,4722776.190715027],[-10587829.912449352,4722777.7421496119],[-10587829.65613438,4723037.8620552933],[-10587829.398921693,4723297.5411786297],[-10587829.151823537,4723556.8135002293],[-10587828.904227978,4723815.663398684],[-10588094.397997346,4723816.6040474772],[-10588359.511334561,4723817.5350372484],[-10588624.225218019,4723818.4539201148],[-10588888.502505492,4723819.3636599788],[-10588889.470507858,4724079.5572081152],[-10588890.439609252,4724340.0700358646],[-10588891.403711632,4724599.6811266905],[-10588892.364313921,4724858.7729951451],[-10589157.426120395,4724859.5440503545],[-10589421.904864399,4724860.3059632201],[-10589685.833383188,4724861.0651763445],[-10589949.221888416,4724861.8158909371],[-10589951.024271546,4725121.2152328091],[-10589952.784751639,4725374.4324239353],[-10589952.812646866,4725379.5063968459],[-10589954.617140396,4725637.8309520148],[-10589956.396329733,4725892.7576666083],[-10589691.466514947,4725896.4083976485],[-10589425.772831824,4725900.063004721],[-10589294.229221268,4725901.8939668816],[-10589160.20661537,4725900.6907769991],[-10588894.246773534,4725898.3009987585],[-10588855.093178557,4725897.9617321929],[-10588628.404761937,4725896.4304478439],[-10588362.219960367,4725894.626528359],[-10588096.168610752,4725892.7958022188],[-10587830.030462645,4725890.9573450796],[-10587572.619719749,4725890.9303519391],[-10587315.986060051,4725890.8960042829],[-10587058.36187475,4725890.8463319661],[-10586800.324820284,4725890.790220689],[-10586541.903629346,4725890.7221285887],[-10586283.087689841,4725890.6460508453],[-10586023.871094964,4725890.5760346418],[-10585764.272666181,4725890.5002234802],[-10585764.664781174,4725631.1089120246],[-10585765.055494955,4725371.671279219],[-10585765.463831335,4725111.8982893033],[-10585765.87186916,4724851.8949885964]]]},"attributes":{"objectid":1830,"field_kid":"1000149608","approxacre":1435,"field_name":"IRICK","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":518520,"maxgaswell":7,"lastgaspro":122,"lastgaswel":2,"lastgdate":"12-2008","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149608}},{"geometry":{"rings":[[[-10596733.083515687,4639848.9295227285],[-10596993.155100826,4639850.0633896133],[-10596987.15766971,4640106.7960925037],[-10596981.157034164,4640363.646780883],[-10596975.151292117,4640620.597700052],[-10596969.141844904,4640877.6965267863],[-10596968.391308788,4641137.3934875568],[-10596967.636966338,4641397.4417138919],[-10596966.884624349,4641657.8166932324],[-10596966.1300781,4641918.5001734253],[-10596708.191220518,4641916.5854980219],[-10596450.242251411,4641914.6658386122],[-10596192.445957415,4641912.7243235186],[-10595934.754984181,4641910.7776962984],[-10595934.192652026,4642170.7299048938],[-10595933.630118813,4642430.8305794382],[-10595933.058274131,4642691.0758967055],[-10595932.485727813,4642951.4721312011],[-10595674.905771025,4642949.6047382755],[-10595417.381277861,4642947.7328719571],[-10595159.882514371,4642945.8348020352],[-10594902.399468958,4642943.9313640585],[-10594902.909051862,4642683.815965795],[-10594903.417732902,4642423.8485305458],[-10594903.915400458,4642164.0363324629],[-10594904.414869126,4641904.3944414491],[-10594904.935362116,4641644.7169443816],[-10594905.455255559,4641384.8462595996],[-10594905.964131624,4641125.8058431204],[-10594906.471803496,4640867.2579865521],[-10594911.434268815,4640610.625135229],[-10594916.390625514,4640354.2620823849],[-10594921.337169537,4640098.1385215987],[-10594926.276704066,4639842.2581406245],[-10595183.878160583,4639843.0759982383],[-10595441.255960885,4639843.8882341832],[-10595698.40700151,4639844.678364031],[-10595955.352907142,4639845.4628721308],[-10596213.851890137,4639846.6266454747],[-10596473.431811716,4639847.7890098169],[-10596733.083515687,4639848.9295227285]]]},"attributes":{"objectid":1862,"field_kid":"1000148260","approxacre":799,"field_name":"MOEWS","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":28178.529999999999,"maxoilwell":19,"lastoilpro":156.11000000000001,"lastoilwel":14,"lastodate":"9-2008","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000148260}},{"geometry":{"rings":[[[-10616256.310244419,4613731.1226563891],[-10616502.4681115,4613733.2928918768],[-10616498.141635843,4614033.5311532747],[-10616493.884466177,4614329.0094353817],[-10616493.830279764,4614333.262808146],[-10616489.523431113,4614632.4778696885],[-10616487.017262172,4614806.5404132865],[-10616485.325127332,4614925.9289934607],[-10616485.258820748,4614931.1857828386],[-10616237.06483284,4614929.9302269043],[-10615987.889115699,4614928.6656281864],[-10615737.659586446,4614927.3847210584],[-10615486.405779021,4614926.0932417633],[-10615492.763549391,4614626.4527829541],[-10615499.133260183,4614326.2760895062],[-10615505.512984188,4614025.6399633754],[-10615511.903522432,4613724.5296591101],[-10615761.044418804,4613726.7429517806],[-10616001.520351341,4613728.8734639576],[-10616009.172450816,4613728.9373885849],[-10616256.310244419,4613731.1226563891]]]},"attributes":{"objectid":1864,"field_kid":"1000146332","approxacre":180,"field_name":"MONT IDA","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146332}},{"geometry":{"rings":[[[-10617420.485540055,4597236.8716062661],[-10617676.227655491,4597236.7310475158],[-10617675.657520538,4597495.491651224],[-10617675.098227015,4597748.8106966726],[-10617675.089491751,4597753.5389319714],[-10617674.528581867,4598009.5652943868],[-10617673.971184244,4598264.0414880691],[-10617418.331399595,4598266.4897591705],[-10617163.139527814,4598268.9255559146],[-10616907.300614413,4598271.3589390516],[-10616651.190690205,4598273.7887609601],[-10616651.201636685,4598267.7581846295],[-10616651.79212923,4598016.169683272],[-10616652.400685336,4597756.9557949966],[-10616652.419745969,4597750.0633074474],[-10616653.024164893,4597496.6034458876],[-10616653.650661547,4597233.8185128039],[-10616909.147285169,4597235.5583129823],[-10617124.928422356,4597237.0221921168],[-10617164.775361212,4597237.0051656691],[-10617420.485540055,4597236.8716062661]]]},"attributes":{"objectid":1526,"field_kid":"1003203294","approxacre":160,"field_name":"COLONY-WELDA WEST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1003203294}},{"geometry":{"rings":[[[-10575793.663545175,4544758.0237502577],[-10576050.010187438,4544756.8908882616],[-10576043.046197621,4545002.213621214],[-10576036.205987254,4545243.177734809],[-10576036.099429891,4545247.2814179529],[-10576029.161074692,4545492.0270228749],[-10576022.228728501,4545736.5400657607],[-10576015.278445341,4545736.5883260155],[-10575764.810357384,4545738.0946001783],[-10575506.875493161,4545739.6377395252],[-10575501.31390506,4545739.6772594554],[-10575380.807391228,4545740.392208254],[-10575247.62666369,4545741.2173817698],[-10574986.509657441,4545742.8275843542],[-10574995.857761817,4545497.9165110132],[-10575004.748033896,4545265.029768372],[-10575005.22809477,4545252.6652670596],[-10575014.551258493,4545009.1280139824],[-10575014.626061674,4545007.1768175717],[-10575022.101575535,4544811.9641870335],[-10575023.548219416,4544780.2965723649],[-10575024.422592517,4544761.3684993898],[-10575279.987263571,4544760.2643684978],[-10575536.801711261,4544759.1480036173],[-10575541.329011338,4544759.1310276184],[-10575793.663545175,4544758.0237502577]]]},"attributes":{"objectid":1535,"field_kid":"1000146853","approxacre":154,"field_name":"SAVONBURG SOUTHEAST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146853}},{"geometry":{"rings":[[[-10535257.955305928,4572611.6260428075],[-10535258.658473495,4572352.0936932107],[-10535003.398912182,4572355.4017733186],[-10534748.727930507,4572358.6953841066],[-10534495.082833249,4572361.9724959675],[-10534242.304336563,4572365.2322195992],[-10534242.114713239,4572110.3155958252],[-10534241.923890673,4571855.1301414659],[-10534241.717552476,4571599.6596272979],[-10534241.510715894,4571343.9135949416],[-10533987.970316034,4571347.1756414771],[-10533735.09698648,4571350.422585696],[-10533483.181362744,4571353.6518899081],[-10533232.146856407,4571356.8641884942],[-10533230.234429479,4571100.8217477864],[-10533228.325901164,4570845.533783691],[-10533226.424084773,4570589.700961858],[-10533224.546871059,4570337.1885685679],[-10533226.633642036,4570083.5851878934],[-10533228.749374218,4569826.4104295215],[-10533230.86590538,4569569.5066732587],[-10533232.991254609,4569311.6024482232],[-10533235.11990436,4569054.1436269488],[-10533237.249357071,4568796.4397840491],[-10533239.379314158,4568538.2670734674],[-10533241.507567791,4568280.3051009653],[-10533496.82468703,4568277.5000521243],[-10533633.042780565,4568276.000608691],[-10533752.049996031,4568275.2546501048],[-10534007.208623279,4568273.6327272765],[-10534262.322699208,4568272.0050939107],[-10534517.380710566,4568270.3661661847],[-10534772.394370837,4568268.7216548352],[-10535027.373691536,4568267.0771436635],[-10535282.307359641,4568265.4270488704],[-10535280.535075318,4568522.5250102291],[-10535278.799976459,4568774.2734832522],[-10535278.766098699,4568779.1487326883],[-10535276.993621891,4569035.304526804],[-10535275.267952183,4569284.7815821012],[-10535275.221449234,4569290.9966732059],[-10535273.47471532,4569545.5236539738],[-10535271.749330545,4569796.9768491928],[-10535271.736389004,4569800.3336967258],[-10535269.971129382,4570055.4386263825],[-10535268.204766318,4570310.834022373],[-10535522.147813911,4570312.8196878154],[-10535771.523889437,4570314.7623065896],[-10535775.743160127,4570314.7905015126],[-10536029.008425251,4570316.7533176709],[-10536276.31501174,4570318.6638158197],[-10536281.926990112,4570318.7077554557],[-10536534.506463487,4570320.6530532921],[-10536782.53968871,4570322.557716147],[-10536786.758859286,4570322.5852764416],[-10537038.65274119,4570324.5075979996],[-10537290.198521199,4570326.4228104288],[-10537290.511914004,4570581.5194468005],[-10537290.820245314,4570831.1527183503],[-10537290.813895823,4570836.3508414319],[-10537291.124790046,4571090.9256067788],[-10537291.426632358,4571338.2873347048],[-10537291.431681763,4571345.2444856372],[-10537291.748487193,4571599.2884176495],[-10537292.057628132,4571847.8667477407],[-10537292.052580155,4571853.0641108621],[-10537292.364484267,4572106.58068622],[-10537292.675589664,4572359.8307614448],[-10537039.617703585,4572358.8870393988],[-10536786.232339518,4572357.9370954139],[-10536783.126855025,4572357.9328941228],[-10536532.507483544,4572356.9881658163],[-10536278.434525844,4572356.0242543919],[-10536274.25259888,4572356.0175099289],[-10536273.283914216,4572613.8442688836],[-10536272.317939401,4572870.8453409588],[-10536271.355575597,4573127.004032678],[-10536270.396021549,4573382.3617997225],[-10536270.0204443,4573637.3811351415],[-10536269.645867884,4573892.4500402585],[-10536269.267086338,4574147.5606463244],[-10536268.889305601,4574402.7234957851],[-10536015.146664431,4574403.3313075779],[-10535761.262960535,4574403.9337858055],[-10535507.251409173,4574404.5288988445],[-10535253.079372689,4574405.1174084516],[-10535253.77709789,4574150.0673625609],[-10535254.475823941,4573895.066761137],[-10535255.150722232,4573640.1083630789],[-10535255.825219745,4573385.2009259555],[-10535256.539179606,4573128.1823878502],[-10535257.254047252,4572870.3237763941],[-10535257.955305928,4572611.6260428075]]]},"attributes":{"objectid":41,"field_kid":"1031373818","approxacre":2053,"field_name":"Osage","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"GAS","field_kidn":1031373818}},{"geometry":{"rings":[[[-10592880.01480978,4624564.6241249377],[-10592878.937481379,4624307.3486323459],[-10592617.79611872,4624307.6970744347],[-10592366.585128488,4624308.026300435],[-10592357.901283674,4624308.0298128333],[-10592099.240361683,4624308.3673901735],[-10591853.754027434,4624308.680877707],[-10591841.827268763,4624308.694367541],[-10591586.667956993,4624309.0024435939],[-10591340.440874562,4624309.2932252176],[-10591332.39766339,4624309.2992845085],[-10591079.041116176,4624309.6028807433],[-10590826.566979533,4624309.8991972813],[-10590826.508145984,4624051.2734242603],[-10590826.449913653,4623792.5635662489],[-10590826.428119795,4623787.3203882268],[-10590826.379267566,4623533.7839189498],[-10590826.332349967,4623291.6486789063],[-10590826.22192267,4623274.9300228003],[-10590826.157285962,4623268.6396745732],[-10590824.243092094,4623016.0492285695],[-10590822.282783249,4622757.0940659856],[-10590822.235756099,4622752.5921098934],[-10590820.288936041,4622498.14440028],[-10590818.307703553,4622239.1618327387],[-10591074.740850026,4622239.4599873694],[-10591333.034827426,4622239.7536616754],[-10591348.517056474,4622239.7625898095],[-10591593.147687783,4622240.0292062573],[-10591855.084336588,4622240.3094556723],[-10591874.447209397,4622240.3295773799],[-10591872.413908543,4621981.049818377],[-10591870.384108875,4621722.2622174295],[-10591868.355807867,4621464.006790542],[-10591866.331108,4621206.270742056],[-10591864.308908071,4620949.0438287333],[-10591862.29081,4620692.3126197131],[-10591860.295635287,4620436.0858782502],[-10591858.303561289,4620180.3519604318],[-10592115.575060993,4620178.3265926829],[-10592368.240986893,4620176.3304732554],[-10592371.762619441,4620176.3108003493],[-10592626.95313625,4620174.2843035003],[-10592880.980320929,4620172.2604955183],[-10593133.661744064,4620173.754435637],[-10593387.119456114,4620175.2470938256],[-10593391.279219108,4620175.2689939346],[-10593641.457876619,4620176.7445911979],[-10593896.576890972,4620178.2419544896],[-10593902.135956192,4620178.270984482],[-10594152.54187407,4620179.7316581346],[-10594409.394473534,4620181.2263284456],[-10594413.553735968,4620181.2465705331],[-10594667.055198435,4620182.7092580926],[-10594925.532157976,4620184.1953694457],[-10594925.385278584,4619926.3762137312],[-10594925.24049562,4619669.5997436754],[-10594925.06768279,4619412.4438922033],[-10594924.895870563,4619155.3883257182],[-10595181.625318104,4619157.019486024],[-10595437.69000457,4619158.6414708225],[-10595693.020150138,4619160.240890149],[-10595947.607245009,4619161.8302419567],[-10596201.994505236,4619164.4422561387],[-10596456.576688727,4619167.0499335593],[-10596711.402951766,4619169.6541664675],[-10596966.465785749,4619172.2549549164],[-10596965.383318048,4618913.8878960907],[-10596964.302051431,4618655.5812632106],[-10596963.214677395,4618397.3604282271],[-10596962.128904823,4618139.2151831444],[-10596962.013441855,4617881.3177840123],[-10596961.899273995,4617624.5462591136],[-10596961.782806514,4617367.2533834139],[-10596961.666739393,4617109.9841488786],[-10596961.553971488,4616853.5229399856],[-10596961.440706296,4616596.491954349],[-10596961.329143589,4616339.3738018451],[-10596961.218385004,4616081.7007226394],[-10597218.181465348,4616084.08604901],[-10597379.474018764,4616085.5795169389],[-10597475.083776137,4616086.4753291346],[-10597731.908298004,4616088.8494394338],[-10597886.18501954,4616090.2723488221],[-10597988.660141883,4616090.3099463023],[-10598245.241298011,4616090.4175139191],[-10598386.048806548,4616090.4735939614],[-10598501.75768007,4616090.5097832074],[-10598758.072030811,4616090.6043493934],[-10598893.068486406,4616090.6496512108],[-10599014.215986568,4616090.6817059452],[-10599268.811766781,4616091.3048700057],[-10599399.462845879,4616091.6229203772],[-10599523.600568091,4616091.9106933754],[-10599778.58689555,4616092.5180447847],[-10599907.366732378,4616092.8215800859],[-10599916.248439357,4615781.4934276901],[-10599925.105413379,4615470.9672513986],[-10599933.997333189,4615159.3765404392],[-10599942.898865961,4614847.4075964913],[-10600197.901302941,4614847.4143712111],[-10600443.505280225,4614847.414870101],[-10600450.22036791,4614847.4178595245],[-10600701.322439615,4614847.4219979066],[-10600952.663685178,4614847.4189951234],[-10601204.878926964,4614848.2030223282],[-10601457.494427036,4614848.9809266748],[-10601709.59403651,4614849.7588365637],[-10601962.743047418,4614850.5324014863],[-10602241.464040468,4614850.1604516357],[-10602519.81871416,4614849.7839164129],[-10602797.850117845,4614849.3910675244],[-10603075.275427677,4614848.9914686559],[-10603352.049664818,4614849.2620965652],[-10603628.570443083,4614849.5243707169],[-10603904.811299434,4614849.771604931],[-10604180.788552614,4614850.0095355036],[-10604438.956310851,4614851.8545788964],[-10604696.920935458,4614853.6905734623],[-10604954.688032866,4614855.5186664267],[-10605212.253498359,4614857.3392402483],[-10605476.549205346,4614859.2006798992],[-10605736.998788331,4614861.0293895612],[-10605996.099720074,4614862.8349097511],[-10606255.830576412,4614864.6380031174],[-10606255.997393342,4614860.1081196731],[-10606257.902083702,4614805.977219631],[-10606261.795946078,4614550.2980764778],[-10606266.454216085,4614244.3791654408],[-10606266.514717178,4614240.6884657089],[-10606271.229581036,4613931.314534503],[-10606275.941538656,4613622.1934685502],[-10606529.570384948,4613624.1859490015],[-10606785.263705507,4613626.1877178783],[-10606792.635882717,4613626.2490950851],[-10607042.631852277,4613628.1978860851],[-10607301.818290267,4613630.212501199],[-10607308.152473949,4613630.2598660579],[-10607559.231489582,4613632.203295623],[-10607817.313258003,4613634.1959968684],[-10607821.990836792,4613634.2280796813],[-10608075.442381231,4613636.1813053116],[-10608333.789455401,4613638.1641905149],[-10608467.882559033,4613638.0054572755],[-10608590.912829373,4613639.2939946726],[-10608847.592080634,4613641.9789442802],[-10609103.11069773,4613644.6460591909],[-10609357.727978835,4613647.2952098744],[-10609614.570118731,4613649.9587463932],[-10609870.441642938,4613652.6077606529],[-10610125.50073339,4613655.2386824898],[-10610379.278951412,4613657.8489664271],[-10610635.968995806,4613663.5389264859],[-10610893.595818186,4613669.2427750519],[-10610932.680358132,4613670.107666445],[-10611137.27640661,4613674.5231857356],[-10611151.689581012,4613674.5771144703],[-10611203.182895672,4613674.7701903852],[-10611296.209959347,4613676.8965133112],[-10611410.442622431,4613677.1402023192],[-10611668.598892225,4613677.6683866829],[-10611926.810225463,4613678.1907074023],[-10612185.061604915,4613678.701046491],[-10612443.338113403,4613679.2010610718],[-10612699.877697306,4613683.7483469406],[-10612956.827053091,4613688.2952488773],[-10612960.682586437,4613688.360733035],[-10613214.1641555,4613692.8325898563],[-10613471.898415262,4613697.3745179502],[-10613476.730971992,4613697.4698202219],[-10613730.666964903,4613701.9461378995],[-10613989.125258557,4613706.4959662054],[-10614247.393734744,4613711.021835045],[-10614505.075537018,4613715.5307579227],[-10614498.11062935,4614020.444265685],[-10614491.287622411,4614319.14951899],[-10614491.173360644,4614324.023023786],[-10614484.268736897,4614626.2317319829],[-10614480.142165432,4614806.8802025821],[-10614476.420833014,4614920.8452711804],[-10614476.220666759,4614927.1413824558],[-10614466.396147359,4615227.6135231312],[-10614456.832073158,4615520.1411563056],[-10614456.640618414,4615526.177564648],[-10614446.925846586,4615822.9844153961],[-10614437.272856876,4616117.8889648393],[-10614398.660240579,4616118.1765163988],[-10614177.25345508,4616119.845263971],[-10613917.968498165,4616121.7932705302],[-10613885.876282349,4616122.0279877763],[-10613661.225865791,4616123.7100213114],[-10613408.762155509,4616125.5946098333],[-10613373.630343249,4616125.8489855053],[-10613152.347812448,4616125.4629399143],[-10612896.295187287,4616125.0094765676],[-10612865.251679424,4616124.9528655596],[-10612640.579850083,4616124.5570304645],[-10612385.199498218,4616124.099864467],[-10612355.454283834,4616124.0251390878],[-10612127.090308648,4616123.4354181122],[-10611869.136297593,4616122.7649784209],[-10611844.231050374,4616122.7029632106],[-10611611.342971398,4616122.0881628739],[-10611353.714034338,4616121.4035690231],[-10611331.606405053,4616121.3500732277],[-10611096.806229239,4616120.2773363711],[-10610839.642630218,4616119.0957743134],[-10610823.052247344,4616119.0201778486],[-10610582.239455653,4616117.905544864],[-10610324.492085207,4616116.7057564352],[-10610313.001669064,4616116.554515969],[-10610311.400280444,4616373.8866528217],[-10610309.78806919,4616633.041563401],[-10610308.193682507,4616891.4818448881],[-10610306.59869455,4617150.0367359528],[-10610304.079141676,4617408.8591350345],[-10610301.553278796,4617668.1832934115],[-10610299.020104917,4617927.9785180641],[-10610296.484224925,4618188.3212278802],[-10610040.119464401,4618185.8356681569],[-10609784.969801445,4618183.3552000271],[-10609527.609596012,4618180.8484816058],[-10609269.178158488,4618178.3250676105],[-10609013.106321501,4618178.2142696511],[-10608793.04260152,4618178.1138941888],[-10608756.584565967,4618178.2896511294],[-10608750.585866027,4618178.3155853599],[-10608499.645924438,4618179.5282523427],[-10608242.309425304,4618180.7659642641],[-10608237.369843617,4618180.7851315625],[-10607984.235177711,4618181.9876149967],[-10607725.973614676,4618183.2081197184],[-10607722.274760103,4618183.2260018792],[-10607467.515225291,4618184.4254381945],[-10607208.858407708,4618185.6368925823],[-10607208.790988196,4618445.5345271491],[-10607208.722170707,4618704.7826100169],[-10607208.647049541,4618963.3943550969],[-10607208.572432661,4619221.3438257817],[-10606951.152751185,4619221.3090295531],[-10606692.923238272,4619221.2679908127],[-10606435.054940831,4619221.2269491851],[-10606177.155107142,4619221.1810616422],[-10606178.175312415,4618961.968944801],[-10606179.198524667,4618702.1290486595],[-10606180.222741753,4618441.6317082886],[-10606181.248764496,4618180.4950809907],[-10606176.829581624,4618180.4711431274],[-10605919.632957486,4618179.1653858395],[-10605666.094140533,4618177.8709484488],[-10605662.775223115,4618177.8619213328],[-10605406.244965453,4618176.5481254505],[-10605150.039981933,4618175.2308841599],[-10604891.319912588,4618172.6249702508],[-10604634.549785988,4618170.0320481677],[-10604377.224020379,4618167.4175807694],[-10604321.885572357,4618166.8531222465],[-10604120.145933898,4618165.8477355372],[-10603862.629341543,4618164.5484862085],[-10603606.547899896,4618163.2502456885],[-10603521.621118136,4618162.827059214],[-10603382.809063731,4618161.1194392703],[-10603349.486636039,4618161.0711225793],[-10603209.957648773,4618160.8703823369],[-10603094.415457001,4618160.493516881],[-10603095.206495397,4618191.1393124927],[-10603095.990097331,4618226.9042914547],[-10603095.460047949,4618417.8479676647],[-10603094.742816329,4618676.1859551668],[-10603094.026083136,4618934.9197646342],[-10603093.308848616,4619193.7944930801],[-10603092.593921129,4619451.8697195686],[-10603091.87528142,4619711.4087768979],[-10603091.141625296,4619970.8091098825],[-10603090.407766415,4620230.6756448289],[-10602835.802046571,4620227.7499070046],[-10602582.013962999,4620224.8278619023],[-10602328.505799983,4620221.9097693851],[-10602218.621183792,4620220.6420789743],[-10602186.019058969,4620219.5184612591],[-10602075.353643784,4620219.1519963723],[-10601863.363308718,4620218.4233199405],[-10601822.52334792,4620217.8954012776],[-10601674.888709743,4620215.9838291379],[-10601570.927562006,4620217.2997226259],[-10601399.579648398,4620219.4827431291],[-10601318.195254572,4620220.350887632],[-10601211.077693529,4620221.4915655954],[-10601176.992463257,4620221.6806328483],[-10601070.715678206,4620220.4236243302],[-10600987.69401041,4620221.1476599304],[-10600818.52970551,4620221.8084366536],[-10600561.168609152,4620222.8091358626],[-10600556.68807867,4620222.8202720257],[-10600304.837492216,4620223.7983469898],[-10600047.471890718,4620224.7892253399],[-10600041.591056742,4620224.8136384264],[-10599789.984549904,4620225.7616110025],[-10599530.935821243,4620226.7283986378],[-10599385.320281303,4620227.288589091],[-10599273.028902322,4620227.2779831905],[-10599015.327722237,4620227.2468630159],[-10599015.601587458,4620485.1337982742],[-10599015.875647318,4620744.0222068904],[-10599016.152115528,4621001.9226004537],[-10599016.416931259,4621248.9930957882],[-10599016.667058649,4621259.5040598819],[-10599022.70342252,4621517.4166838676],[-10599028.734982044,4621775.1523380848],[-10599034.745017918,4622032.736905219],[-10599040.750449929,4622290.0993182529],[-10598786.909485321,4622287.297733183],[-10598531.001854334,4622284.4658052046],[-10598276.023687758,4622281.6343809571],[-10598020.973238504,4622278.7958146771],[-10597765.935804255,4622275.9502332192],[-10597510.866233289,4622273.0987850958],[-10597255.720775492,4622270.245042569],[-10597000.479908532,4622267.3859441951],[-10597001.957634849,4622524.8718640702],[-10597003.43376019,4622782.2177718813],[-10597004.901877245,4623039.4204678377],[-10597006.368793847,4623296.4734346103],[-10597007.866546575,4623553.3946501622],[-10597009.364600515,4623810.1749186991],[-10597010.831820006,4624066.815633487],[-10597012.298639903,4624323.3167839367],[-10597015.512749171,4624581.8763287477],[-10597018.731762417,4624840.7409571959],[-10597018.786894217,4624846.2481752848],[-10597021.960284945,4625099.9068642864],[-10597025.207226925,4625359.3787942724],[-10596767.932697384,4625357.0609569866],[-10596510.186027227,4625354.7327879742],[-10596251.99604949,4625352.3922453187],[-10595993.325321294,4625350.038563678],[-10595995.662013941,4625608.9216922345],[-10595998.000906453,4625868.2822285695],[-10596000.346303739,4626128.1236545146],[-10596002.694201244,4626388.4414123502],[-10595989.330897303,4626388.2900242237],[-10595742.689739021,4626385.4245737158],[-10595482.183502266,4626382.3922981014],[-10595472.301585302,4626382.2780222856],[-10595221.219040839,4626379.3494347325],[-10594959.794152232,4626376.2930484032],[-10594957.460085128,4626496.5629364969],[-10594956.437488047,4626639.7079358241],[-10594954.56092531,4626902.0312147019],[-10594952.668444352,4627164.3516134182],[-10594950.779069351,4627426.2567526102],[-10594948.909918766,4627687.9445628468],[-10594947.043674322,4627949.1453275606],[-10594945.166119801,4628209.8468838604],[-10594943.291170457,4628470.1693077032],[-10594685.321695143,4628471.1490225941],[-10594429.408675309,4628472.112130044],[-10594171.934167011,4628473.0702695781],[-10593914.125475962,4628474.0224119406],[-10593657.084664559,4628474.9473608164],[-10593657.029401267,4628474.9467229545],[-10593400.026136639,4628475.2214478822],[-10593143.11367589,4628475.5162124373],[-10592886.266389837,4628475.8029349009],[-10592886.435717802,4628213.5176563933],[-10592886.60544692,4627951.1207482452],[-10592886.61930651,4627943.6458589165],[-10592886.776779698,4627688.4178304449],[-10592886.938803323,4627425.4626594875],[-10592886.965393495,4627415.2535124393],[-10592887.132568842,4627161.5670805015],[-10592887.308314294,4626897.579874984],[-10592887.307755031,4626890.5062398249],[-10592887.473547941,4626633.5591179011],[-10592887.64548951,4626369.5026420867],[-10592886.572668986,4626111.6922097858],[-10592885.514543809,4625857.5642450266],[-10592885.4845319,4625853.7237480814],[-10592884.384582294,4625595.5935680764],[-10592883.310429104,4625343.1360863373],[-10592883.267614169,4625337.3080621781],[-10592882.175370993,4625079.6082313545],[-10592881.103024231,4624826.4246118274],[-10592881.092237504,4624822.0448808381],[-10592880.01480978,4624564.6241249377]]]},"attributes":{"objectid":1284,"field_kid":"1000146324","approxacre":16668,"field_name":"GARNETT SHOESTRING","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":558086.07999999996,"maxoilwell":193,"lastoilpro":3942.6599999999999,"lastoilwel":182,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146324}},{"geometry":{"rings":[[[-10594015.339883815,4572451.0611359403],[-10594267.437385136,4572450.3239757232],[-10594270.116178285,4572706.3818188049],[-10594272.793369597,4572962.4428100688],[-10594275.451539006,4573218.5135519803],[-10594278.111010095,4573474.5670015337],[-10594280.769079575,4573730.6234726049],[-10594283.427448748,4573986.755593623],[-10594286.088822542,4574242.7588130133],[-10594288.751197439,4574498.7698771413],[-10594292.183649568,4574755.5402603885],[-10594295.617503222,4575012.3219554583],[-10594299.050355671,4575269.1117886165],[-10594302.482607286,4575525.9197928486],[-10594305.915959934,4575782.7552401926],[-10594309.348311516,4576039.5835895082],[-10594312.782365005,4576296.4191914089],[-10594316.216619112,4576553.2134041581],[-10594317.824577976,4576809.888759139],[-10594319.433238206,4577066.5058229314],[-10594321.047005268,4577323.017723457],[-10594322.661773954,4577579.4817373436],[-10594324.264327586,4577836.0651456891],[-10594325.87108238,4578093.0640468486],[-10594327.472340245,4578349.0137390783],[-10594329.070998469,4578604.5929864654],[-10594074.147291988,4578604.8974259775],[-10594042.514783578,4578604.9339078171],[-10593818.166066449,4578605.7892517205],[-10593562.718552925,4578606.7487813719],[-10593307.274943961,4578607.7004353469],[-10593053.13212806,4578608.6534805298],[-10592798.574335901,4578609.6013196446],[-10592795.585805485,4578609.6182288071],[-10592543.554913929,4578610.5447150888],[-10592288.080870269,4578611.4745207429],[-10592033.67684933,4578613.0218088767],[-10591779.338503849,4578614.5631266246],[-10591776.110999031,4578614.5928668594],[-10591525.053119162,4578616.1055876659],[-10591270.834511274,4578617.6331862966],[-10591262.586243335,4578617.6901348121],[-10591015.145515578,4578619.1717167553],[-10590758.902784407,4578620.7000878341],[-10590751.970126677,4578620.7412784677],[-10590502.117830932,4578622.2243968723],[-10590244.780243175,4578623.7452790663],[-10589987.511652064,4578623.2875565477],[-10589735.611022305,4578622.834635389],[-10589730.751444507,4578622.8267828925],[-10589474.500721781,4578622.3609256307],[-10589294.520842198,4578622.030369726],[-10589224.174699949,4578621.8402904524],[-10589222.080441676,4578878.2331704861],[-10589219.987986404,4579134.5297510838],[-10589217.881315727,4579390.7315497203],[-10589215.775362397,4579646.8042167928],[-10588959.541768843,4579646.278627811],[-10588702.535288261,4579645.7433874113],[-10588445.763176698,4579645.2016667193],[-10588189.255869104,4579644.6542278277],[-10588190.836394724,4579435.2518148832],[-10588191.414266529,4579388.3418588182],[-10588194.571839646,4579131.8965666443],[-10588197.749135114,4578875.4952235725],[-10588200.926130615,4578619.0605927072],[-10588200.670318753,4578358.8898892924],[-10588200.414808756,4578098.5518244104],[-10588200.429460127,4578094.6119640199],[-10588200.17942325,4577838.0612717234],[-10588199.926519092,4577577.411002907],[-10588199.912450304,4577572.0119247586],[-10588199.654695755,4577316.4780812524],[-10588199.390683267,4577055.3358125743],[-10588199.405634809,4577051.4160353113],[-10588199.147396501,4576793.9798943168],[-10588198.885390036,4576532.4268531464],[-10588201.350381114,4576274.6040471885],[-10588203.811464537,4576017.1526441248],[-10588206.252021013,4575760.0963641219],[-10588208.687868821,4575503.4220975535],[-10588211.134538088,4575245.7268559355],[-10588213.566476798,4574989.5971361771],[-10588216.018443897,4574732.8614399144],[-10588218.470810544,4574476.2390169604],[-10588475.979511527,4574475.5323764822],[-10588733.605647374,4574474.8200215483],[-10588736.712113408,4574474.8075638181],[-10588991.323088242,4574474.085445093],[-10589249.140243586,4574473.3488366203],[-10589253.402035821,4574473.3359928038],[-10589296.493201414,4574473.205266891],[-10589507.21136906,4574475.0450026011],[-10589765.325438967,4574477.2912383489],[-10589768.469347617,4574477.319794422],[-10590023.513193522,4574479.5270619439],[-10590281.690836512,4574481.7547593638],[-10590282.399908785,4574225.7261154642],[-10590283.110084809,4573969.4228045326],[-10590283.10712179,4573964.8450831939],[-10590283.810351865,4573712.8542425903],[-10590284.526839955,4573456.0195603417],[-10590284.549602594,4573451.8804780385],[-10590285.257546283,4573198.9742601132],[-10590285.977943208,4572941.6614797618],[-10590285.979776699,4572938.1033151122],[-10590286.69533895,4572684.0992668467],[-10590287.422648316,4572426.2897979887],[-10590535.114952959,4572430.0627962537],[-10590778.856122443,4572433.7696701037],[-10590782.079622408,4572433.820310574],[-10591028.309248181,4572437.5604366763],[-10591269.495485099,4572441.2174312584],[-10591273.793218074,4572441.2848249786],[-10591518.55946416,4572444.993221431],[-10591759.339534888,4572448.6332083456],[-10591762.60177931,4572448.6857530167],[-10592005.915758464,4572452.363181443],[-10592248.506107034,4572456.0236023804],[-10592501.095772864,4572455.3325235983],[-10592749.198387751,4572454.6473040693],[-10592753.617160344,4572454.6387791745],[-10593006.107612412,4572453.9352595424],[-10593252.596675124,4572453.2407794893],[-10593258.56933156,4572453.2248846153],[-10593510.900801266,4572452.5070200823],[-10593758.623880714,4572451.7971735084],[-10593763.162390733,4572451.7923297584],[-10594015.339883815,4572451.0611359403]]]},"attributes":{"objectid":1334,"field_kid":"1000146299","approxacre":5224,"field_name":"BAYARD","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":534,"maxoilwell":2,"lastoilpro":69,"lastoilwel":1,"lastodate":"6-1989","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":808.77499999999998,"avgdepthsl":-185.22499999999999,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146299}},{"geometry":{"rings":[[[-10585375.863855176,4608619.0718981316],[-10585376.935308613,4608363.1058608694],[-10585124.98725448,4608360.4491100656],[-10584871.934635241,4608357.7732608328],[-10584874.144889912,4608100.8507205369],[-10584876.359153163,4607843.4398018215],[-10584878.56481074,4607585.5164653473],[-10584880.774276825,4607327.084825594],[-10585131.522871656,4607330.6438683877],[-10585375.35894913,4607334.1006878065],[-10585381.149281088,4607334.1820317479],[-10585629.690347366,4607337.6926914295],[-10585877.132154513,4607341.1819619033],[-10585877.02820448,4607106.3406077158],[-10585877.246922404,4607085.3091909355],[-10585879.917522265,4606828.9083994171],[-10585879.979252983,4606821.3693717876],[-10585882.556490609,4606571.9363436578],[-10585885.219291205,4606314.3626242997],[-10585885.327995837,4606304.2987349564],[-10585887.487733848,4606095.2721920609],[-10585887.883299714,4606055.9884667732],[-10585890.49274924,4605797.1937301895],[-10585890.541553348,4605791.1392428828],[-10585893.091490092,4605537.9683842259],[-10585895.705051579,4605278.3045648504],[-10585642.12435816,4605276.1770339794],[-10585393.855950292,4605274.086262174],[-10585389.024015047,4605274.0381642887],[-10585136.59644258,4605271.9011992272],[-10584932.176265726,4605270.1654903293],[-10584892.318003653,4605270.0541540356],[-10584885.12936818,4605270.0449211625],[-10584888.141225751,4605015.2699172646],[-10584891.135651536,4604762.0168080442],[-10584894.171937814,4604507.1950037982],[-10584897.215736998,4604251.8505025581],[-10584645.130825253,4604251.0205162261],[-10584394.767485913,4604250.1887319684],[-10584144.877889367,4604249.3512130473],[-10583894.795071462,4604248.5065645296],[-10583896.64759184,4603992.2312013414],[-10583897.937259654,4603813.9154492021],[-10583897.903630968,4603735.6944150394],[-10583897.857680544,4603478.881714833],[-10583897.813333534,4603221.8733289968],[-10584148.54050665,4603223.2942327708],[-10584401.248749578,4603224.7212315034],[-10584409.513218667,4603224.7685278533],[-10584654.711556984,4603226.1536990982],[-10584909.316573091,4603227.5838649711],[-10584919.336853977,4603227.6334381914],[-10584919.952936945,4602976.8041211767],[-10584920.567817641,4602726.0968934819],[-10584921.173286574,4602475.5242238259],[-10584921.779255103,4602225.0840651216],[-10584922.397536865,4601974.7650763523],[-10584923.014716383,4601724.5788342543],[-10584923.624386467,4601474.5069964472],[-10584924.234155782,4601224.5577021316],[-10584912.296676068,4601224.5206273971],[-10584911.740069181,4600966.8795649894],[-10584911.181361878,4600708.9884201093],[-10584910.641671687,4600451.6952689942],[-10584910.102980116,4600194.7254925091],[-10584909.544668451,4599937.4561022408],[-10584908.987456484,4599680.3877450824],[-10584908.43093976,4599424.0278916787],[-10584907.87622061,4599168.2392791836],[-10584914.862427937,4599168.2221677266],[-10584915.520611595,4598910.8553875629],[-10584916.177589428,4598654.0617790315],[-10584916.839779759,4598396.4516112199],[-10584917.501973009,4598138.4818418743],[-10584918.161565103,4597880.2893088786],[-10584918.820457339,4597621.9883109359],[-10584919.488260901,4597363.556331018],[-10584920.156566111,4597104.9979601661],[-10584925.42370387,4597105.0028829155],[-10584927.060812267,4596847.4053759491],[-10584928.699023299,4596589.6501389984],[-10584930.323318807,4596331.8552691089],[-10584931.945913108,4596073.9822141733],[-10584933.575216228,4595815.9805925731],[-10584935.205921391,4595557.9396073595],[-10584936.838028654,4595299.8518817984],[-10584938.472539106,4595041.7239080546],[-10585193.776036382,4595042.3262603451],[-10585444.271621563,4595042.9112171438],[-10585448.581362544,4595042.9211096317],[-10585702.927962815,4595043.5082011698],[-10585956.815536866,4595044.0872804848],[-10586212.112129603,4595044.2542478135],[-10586467.590931283,4595044.4148522438],[-10586723.256146709,4595044.5718928259],[-10586979.084949739,4595044.7214255696],[-10587235.090054914,4595044.8677762244],[-10587491.296891421,4595045.0076366095],[-10587747.662409967,4595045.1326097865],[-10588004.188712904,4595045.2500751438],[-10588261.11717812,4595045.2202039175],[-10588518.166582033,4595045.1843519518],[-10588522.077565961,4595045.179870245],[-10588775.350640491,4595045.1290326482],[-10589032.665048422,4595045.0704043815],[-10589031.185934165,4595302.4388333857],[-10589029.709726488,4595559.4272523923],[-10589028.23842782,4595816.0187101588],[-10589026.767933162,4596072.2498234287],[-10589025.72631781,4596329.9952908671],[-10589024.678081689,4596589.353847987],[-10589023.623854669,4596846.7841570294],[-10589022.572337084,4597103.4572148444],[-10588765.580844078,4597103.447598746],[-10588508.533286864,4597103.4309839727],[-10588251.349673813,4597103.3989722021],[-10587994.016989922,4597103.3614895409],[-10587992.968886325,4597361.5142484056],[-10587991.918875011,4597620.3590233913],[-10587991.262877271,4597785.6386210965],[-10587991.008333322,4597878.0171646327],[-10587990.299727922,4598135.0943841655],[-10587989.574794743,4598393.2937988574],[-10587988.847755887,4598651.9054226102],[-10587988.122624727,4598909.8507265458],[-10587987.39769596,4599167.5403995346],[-10587988.29224569,4599336.5055587487],[-10587988.121130148,4599424.8769105561],[-10587987.6215633,4599682.1376157226],[-10587987.125191033,4599940.5214574812],[-10587986.628212145,4600199.64383596],[-10587986.12764157,4600457.2478168234],[-10587985.626869045,4600715.0719629787],[-10587985.136818776,4600971.680809428],[-10587984.646674417,4601227.5586699769],[-10587981.530663518,4601478.2147649629],[-10587978.406839993,4601729.3450777978],[-10587975.257984107,4601980.9488794105],[-10587972.102216691,4602233.018819835],[-10587968.946342574,4602485.9199677194],[-10587965.782554505,4602739.4435698055],[-10587962.624568321,4602993.5749017587],[-10587959.459369089,4603248.3179559754],[-10587956.024749231,4603504.54948413],[-10587952.575003229,4603761.8892347543],[-10587949.119055992,4604018.5313304216],[-10587945.664110806,4604275.0865924852],[-10587942.232697969,4604531.0052528689],[-10587938.803088181,4604786.8267241372],[-10587935.357460795,4605042.5796540659],[-10587931.91423719,4605298.2305424623],[-10587929.912647968,4605556.0183696225],[-10587927.989832217,4605803.5857055821],[-10587927.90275535,4605813.0695974482],[-10587925.925506117,4606069.4012378044],[-10587924.046072789,4606312.9765063422],[-10587923.952067297,4606325.0064867781],[-10587921.967719022,4606580.2535269177],[-10587920.057232548,4606826.0220513549],[-10587919.990683943,4606834.9248999069],[-10587918.029371763,4607089.0119013116],[-10587916.071067842,4607342.5225132573],[-10587661.335579634,4607342.3702290924],[-10587406.556641685,4607342.2134869145],[-10587401.922733735,4607342.2125107478],[-10587151.75157379,4607342.0582735585],[-10586896.921277065,4607341.8938888721],[-10586890.649593072,4607341.8967493586],[-10586889.26475263,4607597.2975227255],[-10586887.879710667,4607852.8713730276],[-10586886.503978016,4608108.626848436],[-10586885.126442043,4608364.5524970582],[-10586883.743997328,4608620.8791778935],[-10586882.360346543,4608877.8035017895],[-10586880.974298667,4609134.0371950716],[-10586879.589554435,4609390.017853017],[-10586628.029450336,4609389.3782541873],[-10586381.831987932,4609388.7463758467],[-10586377.236725181,4609388.7262893971],[-10586127.172734557,4609388.0815798892],[-10585877.840081522,4609387.433041105],[-10585625.804341361,4609385.6862709001],[-10585372.685761057,4609383.9268978294],[-10585373.740382889,4609129.4828363759],[-10585374.795209017,4608874.5363383349],[-10585375.863855176,4608619.0718981316]]]},"attributes":{"objectid":1340,"field_kid":"1000146335","approxacre":6385,"field_name":"SELMA","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":28830.869999999999,"maxoilwell":8,"lastoilpro":35.090000000000003,"lastoilwel":3,"lastodate":"1-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":852.39999999999998,"avgdepthsl":-212.59999999999999,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146335}},{"geometry":{"rings":[[[-10647349.480371138,4583144.3194491835],[-10647349.585921245,4582882.9356571306],[-10647093.200463258,4582879.6959584635],[-10646837.887716662,4582876.464512323],[-10646581.495852048,4582873.2208766332],[-10646324.775516897,4582869.9661888471],[-10646067.684163166,4582866.6982889809],[-10645810.210578201,4582863.4204812301],[-10645552.429446319,4582860.1297150478],[-10645294.311634637,4582856.8287864663],[-10645295.736675672,4582598.1189001594],[-10645297.15811288,4582339.7804351142],[-10645298.587558644,4582081.1088805143],[-10645300.016003033,4581822.3380664987],[-10645301.431333013,4581564.0850274544],[-10645302.844060048,4581305.9628215861],[-10645304.259890603,4581047.9938012632],[-10645305.675420839,4580790.1731268493],[-10645050.170560323,4580790.9183421312],[-10644955.807462953,4580791.1914326176],[-10644795.281192601,4580789.7743658405],[-10644539.829989908,4580787.5260296194],[-10644284.148227211,4580785.2688021492],[-10644028.591906291,4580782.9951840965],[-10643772.976018345,4580780.7144521],[-10643516.338277353,4580778.4225486666],[-10643260.130922308,4580776.1268305294],[-10643261.408594215,4580519.2175979484],[-10643262.682361791,4580262.6127939168],[-10643262.931309704,4580212.7372107571],[-10643265.487757334,4580005.5907626646],[-10643268.663069881,4579748.3454120802],[-10643271.849594135,4579490.1447608005],[-10643272.589389117,4579430.2598273046],[-10643273.514183983,4579231.7517275074],[-10643274.722227095,4578974.274412428],[-10643275.928972343,4578717.3932937291],[-10643020.89592527,4578714.8856539708],[-10642765.470135279,4578712.3676016387],[-10642510.129341364,4578709.8414191268],[-10642254.715665419,4578707.308378092],[-10642256.739460072,4578447.012512587],[-10642258.758052684,4578187.3833244788],[-10642260.771643687,4577928.4530265816],[-10642262.780933764,4577670.2028949577],[-10642264.5476541,4577412.6252598548],[-10642266.30857175,4577155.714480551],[-10642268.055477565,4576899.4866373315],[-10642269.797181401,4576643.9299949994],[-10642014.819111016,4576644.089614667],[-10641759.726411281,4576644.2414880591],[-10641504.529193586,4576644.381677961],[-10641249.236568235,4576644.5147564476],[-10641250.278226331,4576388.2130336612],[-10641251.323285064,4576131.3941637529],[-10641251.35948601,4576124.6564252423],[-10641252.390065132,4575874.0651695933],[-10641253.449733989,4575616.2202477241],[-10641253.490927432,4575607.2643047022],[-10641254.51450556,4575357.885088074],[-10641255.576170437,4575099.0345841926],[-10641255.613472616,4575092.2976436419],[-10641256.652849065,4574839.6711870972],[-10641257.723017175,4574579.794935341],[-10641512.510587689,4574581.7295549596],[-10641767.351718741,4574583.6584603218],[-10642022.238701571,4574585.5721280705],[-10642277.179144828,4574587.480462499],[-10642532.181157656,4574589.3846063484],[-10642787.225718599,4574591.2837978881],[-10643042.323739972,4574593.1774021499],[-10643297.471417474,4574595.0668159081],[-10643298.573051795,4574339.8250343949],[-10643299.677985843,4574083.9728300115],[-10643300.795029597,4573827.5157074649],[-10643301.914472053,4573570.4481250998],[-10643558.717873694,4573573.2858139658],[-10643815.198912157,4573576.1137295458],[-10644071.385518927,4573578.9314907249],[-10644327.270886313,4573581.7383357463],[-10644582.99857549,4573584.43230935],[-10644838.832184279,4573587.1210769815],[-10645094.706238905,4573589.8062897474],[-10645350.651674204,4573592.4857889432],[-10645350.656951452,4573588.1894934755],[-10645351.190645641,4573332.5933325859],[-10645351.716160813,4573081.5321466159],[-10645351.715032037,4573077.4148229975],[-10645352.251634907,4572822.6550762374],[-10645352.785837729,4572568.3065711642],[-10645607.240135346,4572569.6942227213],[-10645857.962226452,4572571.0558779463],[-10645861.54436394,4572571.0793364653],[-10646115.714941949,4572572.4520098325],[-10646364.968377886,4572573.7931101266],[-10646364.614924796,4572318.3305346398],[-10646364.25886678,4572062.5802400857],[-10646363.901705589,4571806.5506259929],[-10646363.542640278,4571550.2340964582],[-10646618.486145429,4571552.2073518625],[-10646873.727486381,4571554.1784472056],[-10647129.332537279,4571556.1354494793],[-10647385.106178327,4571558.0904196221],[-10647385.509683583,4571678.5863134302],[-10647385.338044563,4571813.7967578629],[-10647385.014182432,4572069.2115845829],[-10647384.695323836,4572324.33995206],[-10647384.37636306,4572579.1850131704],[-10647639.369165575,4572580.1403822154],[-10647699.304919206,4572580.3647497529],[-10647894.496708322,4572579.4563909238],[-10647938.608524088,4572579.2445406104],[-10648135.402471123,4572571.7019285001],[-10648149.760155598,4572572.0245335773],[-10648405.110595619,4572577.7568016024],[-10648406.011050941,4572321.1787983784],[-10648406.882929265,4572072.2354422966],[-10648406.911518889,4572066.3591500372],[-10648407.805291692,4571813.2673871126],[-10648408.692970008,4571561.902113623],[-10648409.159137139,4571305.5584367188],[-10648409.622003773,4571049.6727308203],[-10648410.079866264,4570794.0053137532],[-10648410.538231459,4570538.6451465851],[-10648411.43618766,4570282.7100671306],[-10648412.335644813,4570026.6910590054],[-10648667.836904187,4570028.2759426199],[-10648923.319142232,4570029.8553688256],[-10649178.869657258,4570031.4218485113],[-10649434.581654305,4570032.9814732717],[-10649433.573622085,4570288.8258244377],[-10649432.565589273,4570544.609720204],[-10649689.088320972,4570545.7388540059],[-10649945.549283128,4570546.8606264237],[-10650201.945272181,4570547.9822724443],[-10650458.274986628,4570549.0975725334],[-10650714.431906471,4570550.2103353906],[-10650970.621763488,4570551.3175131502],[-10651226.651039556,4570552.4084452083],[-10651483.050432701,4570553.4941704124],[-10651482.198888542,4570811.2165579554],[-10651481.48487355,4571027.2898573177],[-10651481.485812105,4571070.4523271006],[-10651481.49123691,4571328.6296796864],[-10651481.496860307,4571586.6040039975],[-10651481.504884947,4571844.3981351033],[-10651481.5119066,4572101.9611534467],[-10651481.510417368,4572359.3647695165],[-10651481.508625995,4572616.545367239],[-10651479.220952081,4572642.7014853097],[-10651478.168270139,4572873.5404088814],[-10651476.991762253,4573131.7259664219],[-10651475.823057447,4573389.2013672451],[-10651474.652950106,4573646.5748583283],[-10651731.161908543,4573646.9675574172],[-10651988.212277286,4573647.3547925986],[-10652245.796848271,4573647.7438010452],[-10652503.918524725,4573648.1284883218],[-10652505.913213084,4573390.8380227992],[-10652507.908201529,4573133.5473391097],[-10652509.913201153,4572876.272941594],[-10652511.916999292,4572619.0121629899],[-10652770.589849414,4572619.6065730024],[-10653029.590969536,4572620.195521405],[-10653288.918858027,4572620.7863715561],[-10653548.576017629,4572621.3699827157],[-10653550.353714542,4572364.5138120111],[-10653552.12431103,4572108.6079901569],[-10653553.90941729,4571851.9273885246],[-10653555.696023429,4571595.0530782752],[-10653814.974273425,4571591.6088013416],[-10654073.779189676,4571588.162498353],[-10654331.982527638,4571584.7109967573],[-10654589.572373951,4571581.2611515094],[-10654846.635037368,4571579.1749204714],[-10655103.079303712,4571577.0872983877],[-10655358.893659959,4571574.9925729753],[-10655614.078706833,4571572.8968374208],[-10655868.147934243,4571575.2179209115],[-10656123.180447385,4571577.5398859642],[-10656379.180050647,4571579.8723801216],[-10656636.141337859,4571582.2065174999],[-10656634.860946564,4571838.8027690016],[-10656633.581353238,4572095.0854594186],[-10656632.29805295,4572351.070688433],[-10656631.015250379,4572606.7523402916],[-10656628.726519493,4572863.0799155533],[-10656626.440988597,4573119.0272316039],[-10656624.163968913,4573375.1890855338],[-10656621.885848036,4573631.3883746015],[-10656620.349460779,4573887.3273510216],[-10656618.811673593,4574143.4779607458],[-10656617.263476277,4574399.8342517531],[-10656615.714579897,4574656.4102070648],[-10656364.241240937,4574654.9176956518],[-10656113.340347501,4574653.4222591892],[-10655863.060254164,4574651.9303732365],[-10655613.393152062,4574650.4359428491],[-10655610.306783196,4574908.0517857708],[-10655607.22231373,4575165.3886936987],[-10655604.142747065,4575422.4484237796],[-10655601.063678207,4575679.2287966637],[-10655340.19914764,4575683.1019168617],[-10655079.447644087,4575686.9669103511],[-10654818.80045771,4575690.8225072874],[-10654558.267599827,4575694.6712474078],[-10654297.844765546,4575698.5089399954],[-10654037.524746783,4575702.3393948702],[-10653777.314851837,4575706.1713744337],[-10653517.220086278,4575709.994719252],[-10653514.560740512,4575960.5949366074],[-10653511.814563783,4576219.4060851019],[-10653511.757245475,4576225.0618449552],[-10653509.05517726,4576478.8785178596],[-10653506.285183899,4576739.0155867739],[-10653510.144346436,4576996.618457743],[-10653513.787146829,4577239.7640742892],[-10653513.997097364,4577253.647035853],[-10653517.830622019,4577510.0781619698],[-10653521.377667101,4577747.3784184288],[-10653521.65673382,4577765.9224611958],[-10653525.473230042,4578021.1515645785],[-10653529.073364336,4578261.9598504808],[-10653529.285516934,4578275.7835911186],[-10653533.089289583,4578529.811764515],[-10653536.88274605,4578783.2484894013],[-10653535.743157914,4579039.2364394385],[-10653534.60177199,4579295.7609644718],[-10653534.0032959,4579429.9164231997],[-10653533.751523823,4579551.9135300759],[-10653533.223980855,4579807.9669485567],[-10653532.698640086,4580063.9328087298],[-10653532.173699571,4580319.8475674782],[-10653531.642051211,4580575.6811096454],[-10653531.111203644,4580831.4954325855],[-10653272.401621819,4580830.7849972369],[-10653015.018236805,4580830.0720094787],[-10652756.401559936,4580829.3511549318],[-10652497.391238857,4580828.6211558329],[-10652238.143449826,4580827.8856954658],[-10651978.330623141,4580827.1408379152],[-10651718.261607353,4580826.3804818336],[-10651457.777022617,4580825.6123790229],[-10651458.054394141,4581083.4172126353],[-10651458.330864739,4581341.2547654994],[-10651458.615644766,4581599.1141124461],[-10651458.900825413,4581857.0409999564],[-10651459.187708458,4582115.1827092832],[-10651459.474992124,4582373.3952807654],[-10651459.760073459,4582631.6768136565],[-10651460.044053609,4582889.9749557367],[-10651459.362343634,4583148.3469043579],[-10651458.678532697,4583407.4059817037],[-10651457.992016306,4583665.3917783061],[-10651457.307400906,4583922.8816015888],[-10651456.632895574,4584179.784667287],[-10651455.958589254,4584436.163973581],[-10651455.28458203,4584692.0041021695],[-10651454.611374477,4584947.3103516232],[-10651196.037353015,4584947.7277021976],[-10650937.466234777,4584948.1385703078],[-10650933.978095429,4584948.1393611887],[-10650678.891812732,4584948.5299911443],[-10650420.320494156,4584948.9193782425],[-10650415.637104947,4584948.9266612297],[-10650161.720743421,4584949.3083842425],[-10649903.114485297,4584949.6911620665],[-10649899.587101627,4584949.6916990532],[-10649644.482097611,4584950.0650426364],[-10649385.809664657,4584950.4360000798],[-10649130.402421106,4584951.8835231205],[-10648880.996755281,4584953.291848884],[-10648875.217027962,4584953.3255789094],[-10648620.254886789,4584954.7560663065],[-10648373.195870863,4584956.1347574554],[-10648365.502482336,4584956.1749854153],[-10648110.982740507,4584957.5930130025],[-10647862.463174842,4584958.970953553],[-10647856.683847953,4584959.0044293702],[-10647602.59739517,4584960.4023708208],[-10647348.721580137,4584961.7925571734],[-10647348.836945754,4584703.4526299816],[-10647348.951609952,4584444.6851027897],[-10647348.947195368,4584437.8820640948],[-10647349.047952836,4584185.4827631805],[-10647349.152704576,4583925.8432286866],[-10647349.152191168,4583916.7588162199],[-10647349.266165515,4583665.7680572104],[-10647349.383730466,4583405.2666859655],[-10647349.379015509,4583398.44374213],[-10647349.480371138,4583144.3194491835]]]},"attributes":{"objectid":1426,"field_kid":"1000147235","approxacre":19427,"field_name":"VERNON","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":5369125.7599999998,"maxoilwell":770,"lastoilpro":9513.3999999999996,"lastoilwel":695,"lastodate":"2-2009","cumm_gas":44930,"maxgaswell":3,"lastgaspro":405,"lastgaswel":3,"lastgdate":"2-2009","avgdepth":1165.90833333,"avgdepthsl":124.575,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000147235}},{"geometry":{"rings":[[[-10596080.796222527,4574506.1733560963],[-10596338.18066518,4574507.2139386572],[-10596340.315116381,4574763.8845604872],[-10596342.450068567,4575020.5140445475],[-10596344.589526268,4575277.1083562858],[-10596346.72838388,4575533.6390472036],[-10596089.840415793,4575532.7414993178],[-10595832.934427077,4575531.8358241217],[-10595577.064227302,4575530.9306522226],[-10595321.891127761,4575530.0200165734],[-10595319.105523299,4575273.3255828228],[-10595316.321420804,4575016.6071556015],[-10595313.539821666,4574759.8371815635],[-10595310.758623419,4574503.0213784836],[-10595567.104774117,4574504.0768219698],[-10595823.77299455,4574505.1271849424],[-10596080.796222527,4574506.1733560963]]]},"attributes":{"objectid":1212,"field_kid":"1000146310","approxacre":160,"field_name":"KATY LAKE","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146310}},{"geometry":{"rings":[[[-10627951.370190883,4593323.1196635235],[-10627953.191102628,4593066.5751014743],[-10627695.48083297,4593067.8950522598],[-10627437.905217206,4593069.2088967245],[-10627180.495591221,4593070.5059493799],[-10626923.237438377,4593071.7957507558],[-10626925.090563061,4592814.5507777398],[-10626926.939882169,4592557.6597156972],[-10626928.792403733,4592301.1199941868],[-10626930.640919503,4592044.9309510123],[-10626932.489336284,4591788.2396216514],[-10626934.339454653,4591531.5891325902],[-10626936.199083686,4591274.9253002508],[-10626938.057811404,4591018.2719084127],[-10626681.331114791,4591019.6163226273],[-10626423.729717668,4591020.9601054825],[-10626166.66923897,4591022.2984171752],[-10625909.68054219,4591023.6290979292],[-10625652.769433977,4591024.9480779087],[-10625395.91098582,4591026.261589122],[-10625139.148647387,4591027.5734467609],[-10624882.479315151,4591028.878436421],[-10624885.443453647,4590772.7252883846],[-10624888.407391829,4590516.4733117968],[-10624891.379639592,4590260.0739343585],[-10624894.352888493,4590003.554380984],[-10624897.322633445,4589746.8926609503],[-10624900.292979049,4589490.1201937655],[-10624903.262123333,4589233.2060879795],[-10624906.230967335,4588976.1511169486],[-10624649.649587346,4588976.4278494371],[-10624392.826931551,4588976.6983524384],[-10624388.779305035,4588976.6918861996],[-10624135.783223113,4588976.9521990754],[-10623878.505046617,4588977.2093528751],[-10623873.122193826,4588977.2234920505],[-10623621.017630959,4588977.4563352],[-10623363.307060244,4588977.6889499687],[-10623359.23971111,4588977.7011757279],[-10623105.365425358,4588977.9283050885],[-10622847.171101669,4588978.151512607],[-10622848.552379815,4588721.1104452685],[-10622849.929651035,4588464.6268308265],[-10622851.29991514,4588207.8685818454],[-10622852.669678511,4587951.107042267],[-10622854.038240219,4587694.3778114533],[-10622855.407902982,4587437.6545695355],[-10622856.78617535,4587180.9473595172],[-10622858.164247278,4586924.2475352651],[-10622601.613249818,4586924.6151677743],[-10622343.83815386,4586924.9777204236],[-10622086.785883646,4586925.3370917039],[-10621829.811302155,4586925.6920131054],[-10621572.918414008,4586926.032949822],[-10621316.122937122,4586926.3684195336],[-10621059.354090622,4586926.7005837625],[-10620802.632998662,4586927.0262641544],[-10620803.677947722,4586668.2735856725],[-10620804.72259587,4586409.6191610014],[-10620805.771348106,4586151.0736608338],[-10620806.818798238,4585892.6373311551],[-10620807.867249442,4585634.1899131108],[-10620808.912697006,4585375.7610244313],[-10620809.96034584,4585117.5830178317],[-10620811.006592203,4584859.5719849812],[-10620554.554251404,4584861.0539320288],[-10620298.306644211,4584862.5273625022],[-10620042.257062934,4584863.9978690566],[-10619786.403805656,4584865.4608758977],[-10619530.77250167,4584866.9115529312],[-10619275.358245349,4584868.3553656945],[-10619020.139612202,4584869.7973984806],[-10618765.12781507,4584871.2306604441],[-10618765.837218469,4584614.6106053572],[-10618766.544620968,4584357.7030588165],[-10618767.253325226,4584100.7267743219],[-10618767.960127985,4583843.6027051462],[-10618768.674641067,4583586.1631038068],[-10618769.388354259,4583328.506612896],[-10618770.095561057,4583070.6303256201],[-10618770.803369571,4582812.5371811036],[-10619026.536437202,4582812.0489856545],[-10619282.48495069,4582811.5536729544],[-10619538.630789375,4582811.0438724281],[-10619794.982462935,4582810.5278442558],[-10620051.537068086,4582809.9992344435],[-10620308.297708334,4582809.4633803386],[-10620565.27029041,4582808.9243485043],[-10620822.448507128,4582808.3787077824],[-10620824.170716465,4582551.9624664634],[-10620825.849246494,4582302.1032312438],[-10620825.899931448,4582296.0235102903],[-10620827.626741257,4582040.580991474],[-10620829.295546325,4581793.7340344274],[-10620829.349744292,4581785.6330942363],[-10620831.059729921,4581531.2079902934],[-10620832.726236546,4581283.3289839095],[-10620832.776721163,4581277.2694284637],[-10620834.480294641,4581023.8323658099],[-10620836.181663183,4580770.8892691266],[-10621092.093096429,4580768.2050925763],[-10621348.171119358,4580765.5135471318],[-10621604.411226854,4580762.8063742472],[-10621860.837946856,4580760.0918324003],[-10622117.449677531,4580757.37322505],[-10622374.200866926,4580754.6464865943],[-10622631.135665433,4580751.9032312771],[-10622888.182391247,4580749.1532425722],[-10623143.364087218,4580746.9271080978],[-10623398.404321514,4580744.6975442674],[-10623653.287476344,4580742.4594689552],[-10623908.028668925,4580740.2165667061],[-10624162.627298592,4580737.9676940292],[-10624417.07455528,4580735.7127239043],[-10624671.367535684,4580733.4510210762],[-10624925.482512735,4580731.1839832272],[-10625180.67701618,4580730.3695564577],[-10625436.410634497,4580729.5471234657],[-10625442.985234203,4580729.5308373896],[-10625692.6805645,4580728.7157949051],[-10625949.489709504,4580727.8715050099],[-10625958.255708978,4580727.841743472],[-10626206.835766876,4580727.0164137287],[-10626464.721339561,4580726.1554761874],[-10626471.534110978,4580726.1255944548],[-10626723.137417296,4580725.287930076],[-10626982.082598446,4580724.4188575801],[-10626978.193962591,4580981.200678844],[-10626974.30572694,4581237.875528628],[-10626970.413886931,4581494.4381894646],[-10626966.523448262,4581750.8969124546],[-10626962.636913754,4582007.2621097201],[-10626958.752281157,4582263.524116857],[-10626954.871752996,4582519.678351542],[-10626950.994528376,4582775.7170540122],[-10626694.108245574,4582777.1810946204],[-10626447.359532537,4582778.5796511099],[-10626437.7537695,4582778.64424395],[-10626181.94131187,4582780.0856609205],[-10625939.480792573,4582781.4460778441],[-10625939.620877396,4583038.2017930662],[-10625939.76246411,4583294.9141848302],[-10625939.904551515,4583551.598246539],[-10625940.048441119,4583808.2491466822],[-10625682.362470524,4583809.6188155171],[-10625423.61158406,4583810.9869637033],[-10625163.808596365,4583812.3491429538],[-10624902.95030378,4583813.7073867675],[-10624900.948569151,4584070.2700159028],[-10624898.947935633,4584326.7978238473],[-10624896.948803704,4584583.2831819952],[-10624894.950472536,4584839.732950977],[-10624896.800126009,4585098.9690399235],[-10624898.654182578,4585358.8767952221],[-10624900.513946895,4585618.5032899585],[-10624902.374812569,4585878.1863819398],[-10624904.230972905,4586137.9483217252],[-10624906.088935487,4586397.7432235293],[-10624907.954206627,4586657.5625723815],[-10624909.821580522,4586917.3663241593],[-10625166.104373798,4586916.0736921877],[-10625422.545047292,4586914.7739404757],[-10625679.138895635,4586913.4580427799],[-10625935.887420515,4586912.1357881576],[-10625935.131881272,4587169.2294444647],[-10625934.373838611,4587426.4770946726],[-10625933.610389311,4587683.8493810734],[-10625932.844136219,4587941.3839473967],[-10625932.737636486,4588199.0907202726],[-10625932.632137537,4588456.9179657996],[-10625932.51912969,4588714.8531050375],[-10625932.405821167,4588972.8975448357],[-10626188.53889,4588972.0685774218],[-10626444.505969007,4588971.2312186351],[-10626700.313265273,4588970.3880115533],[-10626955.948464721,4588969.5397191541],[-10627213.166875415,4588968.0458503747],[-10627470.757711602,4588966.5430792999],[-10627728.615853123,4588965.034839619],[-10627903.07676837,4588964.0115754725],[-10627986.778446691,4588961.7760482663],[-10627983.93897642,4589217.7072353438],[-10627981.096502004,4589473.7665761979],[-10627978.264039924,4589729.299689346],[-10627975.431878414,4589984.581854918],[-10627973.525373168,4590240.5668344805],[-10627971.617965925,4590496.8422580427],[-10627969.713561162,4590753.4001350831],[-10627967.80795406,4591010.2481175894],[-10627966.273872001,4591266.9309070986],[-10627964.737887537,4591523.6232482204],[-10627963.213215753,4591780.3341722153],[-10627961.68864394,4592037.0247594435],[-10628219.468517317,4592036.1168276221],[-10628476.816796888,4592035.2031744244],[-10628733.728677137,4592034.2845630245],[-10628990.208663229,4592033.3617565632],[-10629242.871483969,4592031.8730865335],[-10629496.435935875,4592030.373092087],[-10629750.914232912,4592028.8681328176],[-10630006.312982652,4592027.3510858901],[-10630003.324383568,4592284.0930250073],[-10630000.337886818,4592540.6462160265],[-10629997.363704182,4592796.9652335858],[-10629994.390222335,4593053.0667243833],[-10630002.491091276,4593052.9926487021],[-10630000.622471679,4593310.2437038282],[-10629998.753150955,4593567.5288934596],[-10629996.88212795,4593824.8559803972],[-10629995.0109044,4594082.20957442],[-10629740.580113728,4594084.2072380707],[-10629485.899637014,4594086.1999420477],[-10629231.423293652,4594088.1894649947],[-10628977.006818537,4594090.1716094604],[-10628718.910333745,4594091.1422586162],[-10628460.713834362,4594092.1069291737],[-10628203.113316953,4594093.0587476473],[-10627945.877817184,4594094.001913459],[-10627947.712747257,4593836.8293646518],[-10627949.547276082,4593579.8746413421],[-10627951.370190883,4593323.1196635235]]]},"attributes":{"objectid":1253,"field_kid":"1000146301","approxacre":8130,"field_name":"COLONY WEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1071104.77,"maxoilwell":129,"lastoilpro":309.25999999999999,"lastoilwel":33,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146301}},{"geometry":{"rings":[[[-10575496.728081042,4701170.0667899158],[-10575496.875294618,4700910.7785291458],[-10575378.743222501,4700912.7316752421],[-10575239.578112172,4700912.6926177004],[-10574983.512607189,4700912.6171831582],[-10574727.035728918,4700912.5427797735],[-10574470.662770174,4700912.4628478438],[-10574213.753594352,4700912.3547660084],[-10573956.685435586,4700912.2420572592],[-10573699.503946448,4700912.1319203442],[-10573442.183197064,4700912.0163850384],[-10573185.008314135,4700911.6625085585],[-10572928.342817206,4700911.3016867219],[-10572671.318407401,4700910.9508944973],[-10572414.219311627,4700910.5929036951],[-10572157.085275467,4700910.2035457706],[-10571899.896276031,4700909.8085317891],[-10571642.607461799,4700909.4226458194],[-10571385.249868391,4700909.0282756817],[-10571387.115606543,4700647.2296753628],[-10571388.98094566,4700385.6794864079],[-10571390.847687995,4700124.4103399031],[-10571392.713630946,4699863.4089743355],[-10571132.563107606,4699861.5410116911],[-10570873.265966082,4699859.6734293308],[-10570614.799880609,4699857.7927305726],[-10570357.165351842,4699855.9106126772],[-10570100.391613467,4699854.0378729245],[-10569844.490579149,4699852.1655133432],[-10569589.429611368,4699850.3011180824],[-10569335.201301562,4699848.4363320097],[-10569335.183251321,4699843.3754075421],[-10569079.689992778,4699842.6596599417],[-10568823.955656821,4699841.9381295098],[-10568567.978141055,4699841.2132585412],[-10568311.761950616,4699840.4799053706],[-10568055.421617243,4699839.7315136688],[-10567799.043039825,4699838.9770807493],[-10567542.06697499,4699838.2263793405],[-10567284.670726664,4699837.4682252202],[-10567284.115054455,4699576.9976935992],[-10567283.566209905,4699319.9009257341],[-10567283.552376825,4699316.9852470532],[-10567282.977788292,4699057.4553998727],[-10567282.404704161,4698798.3884501364],[-10567282.719045203,4698540.028939547],[-10567283.032380499,4698280.8966376232],[-10567283.032254389,4698276.4850101424],[-10567283.341205958,4698020.9805507995],[-10567283.656033631,4697760.2725140499],[-10567283.668813558,4697754.36417145],[-10567283.986174459,4697498.8116556508],[-10567284.310203569,4697236.5606377795],[-10567284.310277682,4697232.148306652],[-10567284.610701036,4696973.5408533616],[-10567284.917801576,4696709.7572448403],[-10567284.436715353,4696449.4036757117],[-10567283.95633265,4696189.5188372945],[-10567283.479557099,4695930.1508779684],[-10567283.003985872,4695671.2901214957],[-10567282.529914185,4695412.0668123998],[-10567282.056443876,4695152.9672825793],[-10567281.591684416,4694894.0150340367],[-10567281.128928237,4694635.2375492174],[-10567536.360731158,4694636.8634411339],[-10567791.868952099,4694638.4845780591],[-10567795.171652727,4694638.5245160973],[-10568047.64408038,4694640.1459264737],[-10568303.69492577,4694641.7847902859],[-10568308.086779669,4694641.8235661639],[-10568560.015181063,4694643.4101628149],[-10568816.612254761,4694645.0181897469],[-10568819.873707917,4694645.0571002197],[-10569073.467125246,4694646.6540945796],[-10569330.614832534,4694648.2667438481],[-10569329.891400794,4694390.9576278785],[-10569329.167665679,4694133.136901754],[-10569328.457143178,4693874.8810413117],[-10569327.746617995,4693616.1724803029],[-10569327.02928232,4693357.0184469074],[-10569326.312143972,4693097.3740154374],[-10569325.587994922,4692837.2861085841],[-10569324.865044527,4692576.7402454372],[-10569583.676183887,4692578.6847043345],[-10569842.486221902,4692580.6224840479],[-10570101.268728163,4692582.5521717547],[-10570360.028207863,4692584.476336414],[-10570618.790490702,4692586.391252866],[-10570877.530347679,4692588.3014169727],[-10571136.261494668,4692590.2230132902],[-10571394.990739403,4692592.1378019601],[-10571395.955541257,4692850.8308919687],[-10571396.919139031,4693109.0649031922],[-10571397.877528196,4693366.8554728031],[-10571398.834012289,4693624.1542652696],[-10571399.807613216,4693880.9674096582],[-10571400.778608505,4694137.3303268263],[-10571401.743193815,4694393.2509481562],[-10571402.706475383,4694648.791422491],[-10571403.463549683,4694909.5481287334],[-10571404.222527716,4695170.5810722699],[-10571404.9997283,4695431.8965701396],[-10571405.77893275,4695693.4913035817],[-10571406.549829783,4695955.4675739221],[-10571407.322031278,4696217.9664985416],[-10571408.091027904,4696480.2681401493],[-10571408.85932377,4696742.5877243327],[-10571666.232668275,4696743.1318475129],[-10571923.769200495,4696743.6682596002],[-10572181.49374897,4696744.1916918661],[-10572439.404011087,4696744.709468944],[-10572697.482166294,4696745.2109252717],[-10572955.724210028,4696745.706341031],[-10573214.155371403,4696746.2093372792],[-10573472.769142842,4696746.7041083137],[-10573730.1847321,4696746.5829764856],[-10573984.054741681,4696746.4560826989],[-10573986.998328574,4696746.4412878677],[-10574243.232558323,4696746.2843108959],[-10574494.858585725,4696746.1232486805],[-10574498.890024317,4696746.1067770002],[-10574753.854793403,4696745.9505784577],[-10575005.177371643,4696745.7886185339],[-10575008.281643461,4696745.7796053533],[-10575262.058145249,4696745.6166031612],[-10575378.858638901,4696745.538694514],[-10575515.091931628,4696743.1883385926],[-10575515.806000097,4697002.2264304785],[-10575516.524584265,4697263.1698302198],[-10575517.237957517,4697523.2525983155],[-10575517.949729053,4697783.3812135188],[-10575761.845619053,4697783.8610018501],[-10576005.898087872,4697784.3351343721],[-10576250.125056054,4697784.815691364],[-10576494.530828452,4697785.2902068505],[-10576739.090076074,4697785.7501990087],[-10576983.809006056,4697786.2028646441],[-10577228.710144209,4697786.6623402443],[-10577473.770464169,4697787.1174451709],[-10577473.858584128,4698047.4898388814],[-10577473.948005792,4698307.91426613],[-10577474.029718952,4698568.4092386467],[-10577474.114435887,4698828.9801600585],[-10577473.125327142,4699089.7450361829],[-10577472.13771884,4699350.2374215173],[-10577471.148407431,4699610.480689154],[-10577470.160596563,4699870.4691642411],[-10577469.168479567,4700130.1997422911],[-10577468.177162306,4700389.6749745393],[-10577467.185343161,4700648.8702882696],[-10577466.193422735,4700907.814072703],[-10577466.288649527,4701167.9218492312],[-10577466.381575549,4701428.4049938163],[-10577466.364993757,4701435.7333604284],[-10577466.44096504,4701689.2429653658],[-10577466.519978905,4701950.4786038715],[-10577466.53594657,4701960.2365053128],[-10577466.628027782,4702212.0934258141],[-10577466.72346409,4702474.0780749563],[-10577466.710485801,4702481.2865927098],[-10577466.793573232,4702736.4153507138],[-10577466.878000535,4702999.1205812907],[-10577220.761023168,4702998.0434043864],[-10576974.652755558,4702996.9606984463],[-10576728.495131535,4702995.8886651481],[-10576482.30466987,4702994.811874643],[-10576236.400434691,4702993.7337960228],[-10575991.488631936,4702992.6527519859],[-10575746.537083618,4702991.561550403],[-10575500.270834718,4702990.4569871314],[-10575500.422145141,4702729.6935357573],[-10575500.572261104,4702470.1638867734],[-10575500.739368459,4702241.3082982618],[-10575500.184558727,4702209.8424429391],[-10575496.216765406,4701984.4322013594],[-10575496.250808489,4701949.5294938991],[-10575496.416239161,4701689.5722303605],[-10575496.580468444,4701429.6149292011],[-10575496.728081042,4701170.0667899158]]]},"attributes":{"objectid":1281,"field_kid":"1000149141","approxacre":7861,"field_name":"GARDNER","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":919852.66000000003,"maxoilwell":147,"lastoilpro":2364.8699999999999,"lastoilwel":107,"lastodate":"2-2009","cumm_gas":178309,"maxgaswell":5,"lastgaspro":4,"lastgaswel":1,"lastgdate":"7-2005","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149141}},{"geometry":{"rings":[[[-10626327.400791707,4490917.6612367434],[-10626325.117042489,4490654.8775354149],[-10626308.510261783,4490654.9001138518],[-10626302.699438175,4490398.9548489908],[-10626296.887911849,4490143.0067484668],[-10626291.069375452,4489887.0395643106],[-10626285.251738068,4489631.0584618617],[-10626279.427488727,4489374.7974414732],[-10626273.591118526,4489117.9648368694],[-10626273.532828281,4489115.3273148276],[-10626267.740218766,4488859.8987437757],[-10626261.904541168,4488602.5769825066],[-10626030.603271423,4488601.6064302372],[-10625773.368926996,4488600.5194160417],[-10625749.406507567,4488600.4138110904],[-10625578.199901549,4488599.6940503716],[-10625513.988543104,4488601.1798876934],[-10625253.453189146,4488607.2013972159],[-10625006.768194495,4488603.9107351126],[-10624759.489219049,4488600.6053312793],[-10624510.37794582,4488597.2791241221],[-10624259.842041198,4488593.9264519103],[-10624261.482562765,4488332.959421088],[-10624263.117488235,4488072.9599783449],[-10624264.735805484,4487813.9755266784],[-10624266.347425798,4487556.0017096354],[-10624267.962560916,4487299.0438675089],[-10624269.572901037,4487043.0727123283],[-10624271.166432621,4486788.1114662588],[-10624272.753467396,4486534.1523751616],[-10624266.080924304,4486534.1832598196],[-10624018.796367636,4486534.955676225],[-10623776.74280308,4486535.7068839138],[-10623771.768805614,4486535.730866259],[-10623524.977414116,4486536.4823878706],[-10623278.442917036,4486537.2262323163],[-10623278.918905789,4486281.6041079713],[-10623279.243601125,4486107.5740439203],[-10623277.71249957,4486056.8279038677],[-10623277.668989569,4486032.7060749643],[-10623277.66081436,4486026.6007116903],[-10623277.288143538,4485772.1909787999],[-10623276.928481553,4485526.5063007604],[-10623276.923788534,4485518.3807716239],[-10623276.558939369,4485265.1808737665],[-10623276.19933439,4485015.5370578347],[-10623276.191093095,4485012.5843167808],[-10623275.817646775,4484760.5955891777],[-10623275.445508273,4484509.2087304769],[-10623274.771758104,4484251.7444392247],[-10623274.129166849,4484005.7230321877],[-10623274.106932309,4483995.6167785926],[-10623273.433711115,4483740.8335810369],[-10623272.789237889,4483496.7321621822],[-10623272.761004783,4483487.3982734326],[-10623272.109061634,4483237.636527122],[-10623271.4651682,4482991.6495320695],[-10623271.450008256,4482987.707007925],[-10623270.784645585,4482737.6118674744],[-10623270.119581139,4482487.3460829789],[-10623021.222254395,4482487.9206509721],[-10622772.22551363,4482488.4893020066],[-10622523.614015274,4482489.0558186471],[-10622275.218164565,4482489.6142829424],[-10622027.383558201,4482490.1615529899],[-10621779.079513036,4482490.703907921],[-10621532.420756679,4482491.2344541047],[-10621283.965638239,4482491.7618291443],[-10621280.976258868,4482246.5287586553],[-10621280.043677665,4482229.0198623221],[-10621266.020214789,4481966.1753235813],[-10621253.523141922,4481731.7108759973],[-10621252.186565153,4481703.3207390606],[-10621239.809886031,4481440.5931798527],[-10621239.597687338,4481436.0310340906],[-10621227.365807572,4481176.3879136685],[-10621215.001036759,4480913.8947445387],[-10621202.644672124,4480651.4512854898],[-10621190.316743283,4480389.6032996485],[-10621438.149669072,4480389.1070027119],[-10621686.371842271,4480388.6027832758],[-10621935.161267407,4480388.0849809982],[-10622184.340841005,4480387.5587528804],[-10622433.172314625,4480387.025850499],[-10622682.23064908,4480386.4886727361],[-10622931.387597052,4480385.9521255717],[-10623180.691614149,4480385.4095401671],[-10623430.103758536,4480385.1341137914],[-10623680.101876412,4480384.8527810331],[-10623687.893831477,4480384.837032523],[-10623930.729717871,4480384.549309181],[-10624181.90128432,4480384.2448381269],[-10624190.046946017,4480384.2401683815],[-10624440.969726691,4480383.9409791743],[-10624692.100846838,4480383.6358783906],[-10624695.651627636,4480383.6269926727],[-10624945.891223155,4480383.3109315913],[-10625134.248798897,4480383.0698997164],[-10625192.414649095,4480383.1294676997],[-10625219.212431824,4480381.4842326734],[-10625432.295936383,4480382.4260556614],[-10625675.580251466,4480383.4946374977],[-10625680.904671028,4480383.5207595993],[-10625737.271555305,4480383.7592466986],[-10625818.376275087,4480384.4863320142],[-10625923.185836863,4480385.0256135836],[-10626168.868209051,4480386.2886508312],[-10626174.765887413,4480386.3123898869],[-10626419.34749395,4480387.5571653685],[-10626656.229250349,4480388.7560293209],[-10626662.223940214,4480388.7820348283],[-10626903.91151971,4480390.0010994012],[-10627142.938540928,4480391.1998672746],[-10627369.004623916,4480387.3150385339],[-10627600.019995451,4480383.3409333769],[-10627620.722986383,4480382.9869800694],[-10627835.009935524,4480379.2979244683],[-10628074.288805405,4480375.1755715571],[-10628099.964511011,4480374.7363678664],[-10628316.107194824,4480371.007449789],[-10628561.445730679,4480366.7699148962],[-10628580.667720009,4480366.4283998907],[-10628810.373292135,4480362.4545367071],[-10629062.849032462,4480358.0832107756],[-10629319.891942721,4480356.4673251566],[-10629575.762305873,4480354.8520528749],[-10629830.449209403,4480353.2409172719],[-10630083.959761458,4480351.6315275077],[-10630085.276569223,4480608.6701251818],[-10630086.595681364,4480866.0400582841],[-10630087.922604227,4481123.7456301432],[-10630089.250429861,4481381.7837191476],[-10630090.57905546,4481639.7477137297],[-10630091.909385154,4481898.106680071],[-10630093.232701467,4482155.7272711936],[-10630094.553812437,4482412.9905486833],[-10630085.181552893,4482413.0215088744],[-10630086.366614172,4482671.1124825561],[-10630087.555582695,4482929.6858271947],[-10630088.736941386,4483188.1563942824],[-10630089.918800805,4483446.7127390103],[-10630091.100961359,4483705.4535571486],[-10630092.284824545,4483964.3607353875],[-10630093.478299286,4484223.4123821501],[-10630094.673376398,4484482.6088857939],[-10630079.815037258,4484482.5918149445],[-10630084.688597318,4484736.20894254],[-10630089.584189106,4484991.0446768729],[-10630094.503212975,4485246.9126521135],[-10630099.439962437,4485503.8261632174],[-10630104.405253235,4485762.2941905903],[-10630109.40950018,4486022.7609231444],[-10630109.483807744,4486026.1718717106],[-10630114.459510647,4486285.1661986364],[-10630119.537764549,4486549.5154504124],[-10630130.91710137,4486549.8040712923],[-10630141.62872722,4486817.7287773527],[-10630152.103839777,4487079.7182816714],[-10630152.264448775,4487083.5480054719],[-10630162.810850902,4487347.2832546309],[-10630173.275642706,4487608.9647164131],[-10630183.848371493,4487873.2266846728],[-10630194.428305922,4488137.6246278742],[-10630204.898293514,4488399.3305473551],[-10630215.301189518,4488659.2834927384],[-10630233.441846007,4488659.3013669979],[-10630245.324391514,4488913.5549731916],[-10630257.217746949,4489168.0132180983],[-10630269.117707506,4489422.6776279965],[-10630281.030280137,4489677.5630802484],[-10630293.057694843,4489934.7004724974],[-10630305.141477728,4490193.0150524965],[-10630317.199825967,4490451.0671824683],[-10630329.26848357,4490709.345580698],[-10630305.029478699,4490709.1230594898],[-10630308.145594856,4490965.736109457],[-10630311.264513368,4491222.3769669253],[-10630314.380727885,4491479.0370678566],[-10630317.497141726,4491735.7157839257],[-10630064.974071007,4491733.4799022963],[-10629817.15987877,4491731.2792305965],[-10629814.37569822,4491731.2526129056],[-10629566.053925378,4491729.0346762687],[-10629318.915904082,4491726.8204090027],[-10629319.134549893,4491740.4315547952],[-10629323.225730022,4491996.5627539502],[-10629327.12851122,4492241.0011656564],[-10629327.281756328,4492250.9423747901],[-10629331.317345707,4492503.5815030308],[-10629335.324689239,4492754.4734617351],[-10629305.915714893,4492754.6062425822],[-10629086.907487461,4492755.6086079404],[-10628839.117702303,4492756.7392270165],[-10628796.75143555,4492756.9282793878],[-10628591.96354303,4492757.8515864145],[-10628345.438001711,4492758.957402885],[-10628286.501317715,4492759.2120022131],[-10628099.293996256,4492760.054909342],[-10627852.094285961,4492761.1636149129],[-10627776.329891123,4492761.4918210683],[-10627603.738950508,4492761.5124730477],[-10627354.204165947,4492761.5375270275],[-10627271.603166999,4492761.9702128423],[-10627101.630122703,4492762.8822630243],[-10626916.722929493,4492763.8702128567],[-10626849.03094638,4492763.6672350354],[-10626764.455187293,4492763.4193087211],[-10626596.308616284,4492762.9150281902],[-10626343.416692201,4492762.1483305451],[-10626341.117918117,4492497.8680326613],[-10626338.828160761,4492234.4016722497],[-10626336.539399037,4491970.406762993],[-10626334.251436679,4491706.327406955],[-10626331.968989894,4491443.3806257015],[-10626329.685641868,4491180.4995039068],[-10626327.400791707,4490917.6612367434]]]},"attributes":{"objectid":171,"field_kid":"1000149389","approxacre":11429,"field_name":"DARTNELL","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":12400.190000000001,"maxoilwell":4,"lastoilpro":159.69,"lastoilwel":1,"lastodate":"11-2008","cumm_gas":150766,"maxgaswell":11,"lastgaspro":7100,"lastgaswel":11,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149389}},{"geometry":{"rings":[[[-10570749.751501108,4492663.0871278448],[-10570750.701386973,4492411.7261689911],[-10570751.647690421,4492161.4033847945],[-10570752.589990031,4491911.1256179046],[-10570753.530895501,4491661.2114553209],[-10571010.504631504,4491662.6067927191],[-10571265.906169148,4491663.9866057783],[-10571519.733105514,4491665.3429580266],[-10571771.96311524,4491666.6842893586],[-10571769.786097247,4491416.2203779155],[-10571767.612688502,4491165.9940933203],[-10571765.440686045,4490915.9845081298],[-10571763.269889843,4490666.200802058],[-10572015.095980117,4490666.9607107537],[-10572256.682059774,4490667.6837706594],[-10572265.805093072,4490667.7168194549],[-10572515.439176364,4490668.4550211141],[-10572763.837446313,4490669.1837521922],[-10573015.924420245,4490669.2483507516],[-10573268.750439191,4490669.3074209187],[-10573272.067432363,4490669.3092471072],[-10573522.130491473,4490669.3555427846],[-10573776.151276313,4490669.3968747696],[-10573780.100993063,4490669.4006023686],[-10574031.674579235,4490669.4329447215],[-10574286.791717462,4490669.458048217],[-10574290.301084027,4490920.4610024793],[-10574293.815962693,4491171.7223939858],[-10574297.337667394,4491423.8141538166],[-10574300.880427191,4491677.3246450843],[-10574553.57647948,4491679.0485718073],[-10574811.250726208,4491680.7998028127],[-10574811.752117962,4491933.7228131415],[-10574812.252707794,4492186.604165432],[-10574812.737077976,4492439.4389431225],[-10574813.221747523,4492692.233190625],[-10575017.847970877,4492694.5211553155],[-10575270.955686456,4492693.7817983218],[-10575318.737641493,4492693.6409544162],[-10575378.710441208,4492693.4766524201],[-10575524.170569768,4492694.360057787],[-10575777.720993983,4492695.9135909835],[-10575823.068772426,4492696.1899919175],[-10576031.602597771,4492697.4662479144],[-10576032.526981058,4492953.7212187164],[-10576033.449241742,4493209.0620597675],[-10576034.379117709,4493464.7074674051],[-10576035.309492242,4493720.2667396357],[-10575782.081449606,4493719.7850630851],[-10575529.369798727,4493719.2986070244],[-10575276.403564656,4493718.7978103552],[-10575023.590512419,4493718.2905128943],[-10575025.18266174,4493975.82867557],[-10575026.738840552,4494227.4471115889],[-10575026.749643093,4494231.5741712376],[-10575028.325695353,4494485.5127567183],[-10575029.890194839,4494737.6406463198],[-10574775.933553059,4494740.1241970509],[-10574521.51468209,4494742.605597822],[-10574266.986685913,4494745.0818308415],[-10574012.229326928,4494747.5523898592],[-10573758.190960137,4494743.9964499846],[-10573504.125462495,4494740.4345880505],[-10573498.833905928,4494740.3616558816],[-10573250.008105842,4494736.8733562045],[-10572995.86381855,4494733.3048161799],[-10572741.342821369,4494730.7084495556],[-10572652.47301062,4494729.8002860192],[-10572496.953530625,4494728.7091867467],[-10572487.276656093,4494728.6368039548],[-10572233.68123609,4494726.8658308545],[-10571987.022554696,4494725.1385856476],[-10571980.584686842,4494725.0831480501],[-10571729.388312189,4494723.3059189245],[-10571481.635178087,4494721.5472770752],[-10571477.645812634,4494721.522001314],[-10571225.363295242,4494719.7342936201],[-10570972.534652866,4494717.936117108],[-10570970.303527769,4494974.9057029625],[-10570968.073606176,4495231.9922207976],[-10570965.834576121,4495489.1874877755],[-10570963.595048701,4495746.5507433293],[-10570963.660351248,4496003.5555016557],[-10570963.724750275,4496260.4484609729],[-10570963.798557559,4496517.228479079],[-10570963.872862924,4496773.8966819644],[-10570712.039611319,4496769.4623168409],[-10570459.164867483,4496765.0044916933],[-10570454.821694465,4496764.9256402897],[-10570205.230810745,4496760.5095943371],[-10569950.234437969,4496755.9916147524],[-10569945.653292391,4496755.9038105328],[-10569695.579956917,4496751.4718785295],[-10569440.475060532,4496746.9435653612],[-10569436.999080403,4496746.8763251128],[-10569184.846164532,4496742.4037750773],[-10568928.660731716,4496737.8541455669],[-10568931.719310813,4496481.4243877325],[-10568934.765494948,4496225.9408216989],[-10568937.794250969,4495970.0833763173],[-10568940.822106898,4495714.2906407192],[-10568943.871270107,4495457.6938259788],[-10568946.912636014,4495201.6765342709],[-10568949.959819665,4494946.2131424351],[-10568953.001008462,4494691.3475876376],[-10568952.308919579,4494436.2128216187],[-10568951.615830956,4494181.1491461406],[-10568950.935434934,4493925.0328704482],[-10568950.252521869,4493668.2376578711],[-10568949.572235635,4493412.5930175688],[-10568948.89416117,4493157.3968336564],[-10568948.193350788,4492901.7265761923],[-10568947.492430059,4492645.5672877086],[-10569147.49100586,4492650.2649058169],[-10569199.684124496,4492650.983878159],[-10569232.816434056,4492651.4413243458],[-10569321.420813879,4492652.6562301321],[-10569431.775914872,4492651.0163051961],[-10569451.481559996,4492651.2007395625],[-10569702.821315696,4492653.5096016601],[-10569737.317983035,4492653.8253383199],[-10569953.689932531,4492655.8119040197],[-10570205.656205123,4492658.1114555188],[-10570242.37091014,4492658.4466356412],[-10570456.135276619,4492660.4066960718],[-10570705.157381268,4492662.6813739352],[-10570749.751501108,4492663.0871278448]]]},"attributes":{"objectid":287,"field_kid":"1000147523","approxacre":3743,"field_name":"MONMOUTH NORTHWEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":86093.289999999994,"maxoilwell":8,"lastoilpro":83.799999999999997,"lastoilwel":7,"lastodate":"11-2008","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"OIL","field_kidn":1000147523}},{"geometry":{"rings":[[[-10581900.656596405,4474310.314645648],[-10581904.601613682,4474310.2760994574],[-10581903.577438673,4474566.4433910521],[-10581902.549878463,4474823.457831095],[-10581901.532816963,4475079.8808518955],[-10581900.516753498,4475336.1715050796],[-10581645.652190762,4475337.9285123833],[-10581390.061195949,4475339.683244097],[-10581134.502337774,4475341.4325681115],[-10580878.697898183,4475343.1771087851],[-10580880.650254065,4475087.2715537865],[-10580882.558388617,4474837.199925242],[-10580882.607438458,4474832.4094678266],[-10580884.541003255,4474577.8914914038],[-10580886.455797661,4474325.6837203111],[-10581141.801124252,4474320.529285755],[-10581393.430095993,4474315.4434620179],[-10581396.586409377,4474315.3772341618],[-10581490.696248904,4474313.476791081],[-10581650.856148796,4474312.2428594707],[-10581900.656596405,4474310.314645648]]]},"attributes":{"objectid":288,"field_kid":"1024021574","approxacre":161,"field_name":"MONTANA","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"OIL","field_kidn":1024021574}},{"geometry":{"rings":[[[-10619099.825790459,4476591.7940490125],[-10619095.356965017,4476339.1518490622],[-10618861.791168232,4476340.7367046606],[-10618627.148631783,4476342.3248160714],[-10618621.508335909,4476342.3643616308],[-10618391.418843603,4476343.9198311176],[-10618154.600702366,4476345.516340741],[-10618147.126694487,4476345.5571186347],[-10617916.651959294,4476347.1064195065],[-10617677.714077557,4476348.7061706828],[-10617672.15247239,4476348.747604236],[-10617437.77834701,4476350.3075435041],[-10617196.7853992,4476351.9046249455],[-10617124.709696647,4476352.7808887633],[-10616950.266407704,4476354.9047077736],[-10616709.991007132,4476357.823617328],[-10616704.192029083,4476357.8958665365],[-10616458.55705722,4476360.8704278572],[-10616221.323160755,4476363.7371781347],[-10616213.372905435,4476363.8405936835],[-10616209.638278987,4476111.4535270864],[-10616205.894431561,4475858.4664724525],[-10616202.139970409,4475605.463229687],[-10616198.383702662,4475352.2456972143],[-10616194.621819409,4475098.5163031342],[-10616190.858031413,4474844.7024626015],[-10616187.09152678,4474590.0826366367],[-10616183.312994972,4474334.6693343883],[-10616170.183559509,4474084.5859487234],[-10616157.038616061,4473834.2015163796],[-10616143.872863011,4473583.1648225198],[-10616130.678270942,4473331.5975076957],[-10616116.859157391,4473080.02939374],[-10616103.039741952,4472828.4233936528],[-10616089.138119962,4472575.6041619824],[-10616075.192238571,4472321.9620922562],[-10616322.183949757,4472322.5728083579],[-10616569.689853964,4472323.1772449771],[-10616575.760356443,4472323.192803639],[-10616816.642820301,4472323.7812957969],[-10617065.921969829,4472324.3831184339],[-10617124.782579789,4472326.0382856578],[-10617301.986476643,4472325.0401925892],[-10617539.507546743,4472323.698733205],[-10617549.995444046,4472323.6362727722],[-10617781.346497256,4472322.3110667532],[-10618026.482450811,4472320.9014461013],[-10618052.504165757,4472320.7562317559],[-10618275.624124957,4472319.4752889918],[-10618528.300576348,4472318.0174991721],[-10618553.867466709,4472317.8759245807],[-10618784.486976394,4472316.5346149243],[-10619044.192836009,4472315.0175829558],[-10619038.820489394,4472063.7637988534],[-10619033.430314353,4471811.6088125622],[-10619028.019907735,4471558.5060414635],[-10619022.589069363,4471304.4633489829],[-10619022.451659113,4471298.1256529074],[-10619024.219474433,4471050.0861685332],[-10619026.043989057,4470793.9338663258],[-10619026.107294453,4470785.6444849968],[-10619027.881610125,4470536.7043220587],[-10619029.737627868,4470276.4536336781],[-10619026.246114679,4470021.0334726088],[-10619022.792167049,4469768.3778737886],[-10619022.237098685,4469728.2102679936],[-10619019.341930265,4469516.5676874733],[-10619015.917835457,4469266.2465946628],[-10619015.128652517,4469208.4039265066],[-10619012.502857933,4469016.7942693634],[-10619009.089384913,4468767.7229327988],[-10619008.00909001,4468688.3460336663],[-10619005.693335587,4468519.1300992407],[-10619002.292482084,4468270.7466228707],[-10619249.414095279,4468269.4081355436],[-10619467.844695067,4468268.2210987387],[-10619496.436393846,4468268.0551922051],[-10619650.471171645,4468267.1978284772],[-10619743.332645541,4468266.5159684531],[-10619982.205635281,4468264.7578937449],[-10619990.089533741,4468264.6303298576],[-10620002.645223929,4468264.4529491793],[-10620235.981509574,4468260.9531588154],[-10620482.170728615,4468257.2550046956],[-10620495.219087256,4468257.0521172155],[-10620728.399793914,4468253.5518260673],[-10620975.098701755,4468249.8418709161],[-10621287.08456241,4468220.3068129048],[-10621499.104118474,4468200.2289682087],[-10621539.98767611,4468196.3480449114],[-10621577.182477176,4468192.5872195894],[-10621855.965931851,4468164.3975409335],[-10621898.456741864,4468160.1001159269],[-10622048.108534042,4468142.271174904],[-10622134.879106207,4468131.9295066278],[-10622204.978351636,4468123.5781375784],[-10622369.594534876,4468108.0034457166],[-10622612.293086935,4468085.0359905791],[-10622632.387766153,4468083.1316202283],[-10622911.491013259,4468056.6983152088],[-10623195.557487974,4468029.7885555783],[-10623448.366129769,4468008.7075954154],[-10623693.915699117,4467988.2252170704],[-10623698.359725785,4467987.8489801176],[-10623946.748472136,4467967.1211018823],[-10624085.98650072,4467955.499043989],[-10624184.598105686,4467953.2644289006],[-10624189.838554449,4467953.2693001917],[-10624194.704971407,4467953.2624755222],[-10624441.365876708,4467953.2346478561],[-10624682.359941088,4467953.2014384186],[-10624687.245680345,4467953.1948654829],[-10624932.347285679,4467953.1431284565],[-10625176.6741968,4467953.0858470304],[-10625410.905777553,4467956.1394611951],[-10625652.886202754,4467959.2899971493],[-10625677.148008864,4467959.6054163966],[-10625899.101415951,4467962.4828416752],[-10626146.074303452,4467965.6800989965],[-10626171.695478551,4467965.9973025415],[-10626396.708907768,4467967.520346906],[-10626647.486075478,4467969.2137911096],[-10626688.888165232,4467969.5017435327],[-10626898.382080181,4467970.903089392],[-10627149.394619158,4467972.5783121996],[-10627142.942989917,4468239.9327648263],[-10627136.447923368,4468509.0939692296],[-10627129.979280761,4468777.2127050748],[-10627123.510037802,4469045.3021830702],[-10627123.02671852,4469065.6663070256],[-10627115.391900584,4469314.5732991109],[-10627107.118788043,4469584.2604750134],[-10627098.823153449,4469854.4234585902],[-10627090.514707621,4470125.0028231796],[-10627333.820193067,4470131.1716045244],[-10627577.615042709,4470137.3458014065],[-10627583.32523245,4470137.4824240096],[-10627604.255286556,4470138.0068822727],[-10627821.972924259,4470140.9388111187],[-10628066.813860886,4470144.2294822503],[-10628057.962492593,4470406.9278585687],[-10628049.108922921,4470669.6898613069],[-10628040.323018905,4470930.4737182818],[-10628031.580957687,4471189.9765717154],[-10628022.186150743,4471450.4710375117],[-10628012.781134374,4471711.2026665714],[-10628012.622181503,4471715.7893360863],[-10628003.364406927,4471972.1819128245],[-10627993.932464318,4472233.40200473],[-10627992.038176641,4472488.557647815],[-10627990.194102168,4472736.9731515124],[-10627990.160496451,4472741.9404022116],[-10627988.297721868,4472993.5643498488],[-10627986.446949607,4473243.4384189965],[-10627984.559758091,4473496.7136950437],[-10627982.677368138,4473749.3740618266],[-10627980.807288408,4474001.4194753328],[-10627978.943100303,4474252.8642543424],[-10627985.134038547,4474252.8170531914],[-10627983.458733886,4474509.6529930411],[-10627981.784029562,4474766.3826273782],[-10627980.106221329,4475023.0095959967],[-10627978.427611899,4475279.5404320331],[-10627734.336129714,4475281.9019028824],[-10627489.930586299,4475284.2621121248],[-10627245.093245909,4475286.6147691961],[-10626999.717085266,4475288.9656583956],[-10626999.790811198,4475282.0197842196],[-10626750.201155279,4475279.8477397524],[-10626500.528903456,4475277.6697829291],[-10626250.774055686,4475275.4816372842],[-10626000.950928481,4475273.2851897106],[-10625750.647246776,4475271.0884842537],[-10625499.46124744,4475268.8776796488],[-10625247.848054966,4475266.6525307382],[-10624998.544523703,4475264.4407470953],[-10624998.41350179,4475277.7025792245],[-10624996.093593465,4475530.9349838896],[-10624993.875595575,4475773.1112280777],[-10624993.782486584,4475783.20606656],[-10624991.471871849,4476034.5439345799],[-10624989.17085921,4476284.8941798341],[-10624738.23461243,4476283.5718884775],[-10624487.162809018,4476282.2417963417],[-10624237.871456001,4476280.9155029152],[-10623989.728625452,4476279.5874645887],[-10624010.309499338,4476537.588341455],[-10624030.900479557,4476795.715422065],[-10624051.495659219,4477053.9619225329],[-10624072.101846334,4477312.3450868456],[-10624093.43958482,4477572.2810073467],[-10624115.012316216,4477835.0741811953],[-10624115.700794857,4477843.4719536379],[-10624136.931882106,4478102.0044609942],[-10624158.892592866,4478369.4048859412],[-10623910.307410719,4478362.0869058324],[-10623660.445456879,4478354.7243743148],[-10623656.683026796,4478354.6071880702],[-10623409.360993791,4478347.3227022691],[-10623157.034599094,4478339.8836509278],[-10622917.099053685,4478341.0877728174],[-10622674.803092895,4478342.2967689363],[-10622660.265867967,4478342.3773407601],[-10622430.156428177,4478343.5330345444],[-10622183.141939512,4478344.7670028219],[-10622160.459643789,4478344.8891065875],[-10621932.705314115,4478346.0214317162],[-10621679.548058882,4478347.2751939977],[-10621662.48662981,4478347.3543469049],[-10621423.576566178,4478348.5329435356],[-10621164.789734846,4478349.8034873772],[-10620915.341355992,4478351.7062570397],[-10620664.525204083,4478353.6129083959],[-10620653.675421841,4478353.6871148534],[-10620412.320855495,4478355.5123694316],[-10620158.777066557,4478357.4232614804],[-10620144.377300292,4478357.523965802],[-10619903.944595421,4478359.3246999057],[-10619647.72202567,4478361.2381977309],[-10619633.183500031,4478361.3545012847],[-10619390.157012189,4478363.1662719278],[-10619131.162654759,4478365.0906780725],[-10619126.671490792,4478110.7143868739],[-10619122.202166768,4477857.5584273981],[-10619117.719321124,4477604.0593147753],[-10619113.24018072,4477350.7443158543],[-10619108.76804908,4477097.5914022336],[-10619104.298721453,4476844.6086130701],[-10619099.825790459,4476591.7940490125]]]},"attributes":{"objectid":290,"field_kid":"1000149399","approxacre":14017,"field_name":"MOUND VALLEY","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":117526.27,"maxoilwell":26,"lastoilpro":150.49000000000001,"lastoilwel":15,"lastodate":"2-2009","cumm_gas":1635266,"maxgaswell":25,"lastgaspro":1966,"lastgaswel":25,"lastgdate":"2-2009","avgdepth":810,"avgdepthsl":-102.45800018,"polydate":1214179200000,"field_type":"O&G","field_kidn":1000149399}},{"geometry":{"rings":[[[-10584934.34166762,4482503.4631013907],[-10584936.535105729,4482245.1954783667],[-10584938.733834708,4481986.2571990415],[-10584938.805992832,4481976.2150511416],[-10584940.930745095,4481726.5889087496],[-10584943.147061553,4481466.2068967633],[-10584943.258787876,4481452.716509237],[-10584945.376077948,4481205.1800555196],[-10584947.615089836,4480943.4484041072],[-10584947.687147371,4480933.386864082],[-10584949.8292579,4480681.0387990298],[-10584952.059328657,4480417.9437411325],[-10584951.498602174,4480163.7871259041],[-10584950.967821674,4479923.5716448231],[-10584950.952208709,4479910.378313059],[-10584950.414642101,4479657.723665786],[-10584949.917233618,4479423.5007242486],[-10584949.859071737,4479405.8287914963],[-10584949.330045387,4479154.5478050765],[-10584948.830474783,4478917.6682491647],[-10584948.785821453,4478904.1584768184],[-10584948.244621446,4478654.6895558825],[-10584947.70424271,4478406.1349375239],[-10585199.90522032,4478405.7965804199],[-10585453.120059077,4478405.4499360053],[-10585466.57266788,4478405.424614802],[-10585707.374288041,4478405.0874557337],[-10585962.638573932,4478404.7229789011],[-10585980.706068939,4478404.6997460369],[-10586219.878923215,4478404.3545081951],[-10586447.461101148,4478404.0212854417],[-10586477.599923402,4478404.0013949135],[-10586489.591759555,4478404.0027228817],[-10586736.920261404,4478403.9089985779],[-10586908.085722378,4478403.8398240907],[-10586994.53888488,4478405.3623506054],[-10586997.230130659,4478657.5203181198],[-10586997.710191673,4478702.5427677212],[-10586993.691538764,4478909.6133850794],[-10586993.605447266,4478914.3830487281],[-10586988.817437081,4479162.6077119866],[-10586983.922827139,4479416.2914907653],[-10586983.80504692,4479423.1804564912],[-10587237.642297296,4479422.2707075421],[-10587489.305957837,4479421.3623073241],[-10587738.780811336,4479420.4656993141],[-10587986.008690976,4479419.572074607],[-10588233.582366474,4479418.6681377012],[-10588479.553706516,4479417.7659363179],[-10588723.94103195,4479416.8596826717],[-10588966.747246211,4479415.9535291428],[-10588969.488126421,4479670.6013645343],[-10588972.177743575,4479920.6244084341],[-10588972.229599053,4479924.8862879304],[-10588974.978171255,4480178.7949344907],[-10588977.723231601,4480432.3593661981],[-10588974.982908202,4480690.3669274645],[-10588972.226296267,4480949.7196935471],[-10588972.119826516,4480960.9095893279],[-10588969.457201416,4481210.4743963936],[-10588966.659504773,4481472.6126397066],[-10588966.527773937,4481486.8136179009],[-10588963.883632602,4481734.7365207281],[-10588961.070653377,4481998.4429366933],[-10588960.94134672,4482009.1576961651],[-10588958.247598041,4482263.7313778214],[-10588955.424177693,4482530.6002019392],[-10588704.001939112,4482526.1692877281],[-10588452.623150289,4482521.7328380225],[-10588449.271008654,4482521.675011144],[-10588201.292917114,4482517.2929926198],[-10587949.941960067,4482512.842953667],[-10587945.603388039,4482512.771894902],[-10587777.31902813,4482509.7851371169],[-10587697.686989952,4482509.3940330734],[-10587651.06166915,4482509.1659596497],[-10587538.500789165,4482494.6550295502],[-10587467.325412998,4482493.0933942404],[-10587444.580865441,4482493.5122791342],[-10587193.242625685,4482498.0704044951],[-10586945.266836496,4482502.5630110204],[-10586695.058992257,4482502.6952390885],[-10586444.005779406,4482502.8219152968],[-10586193.088121876,4482502.9498523762],[-10585941.99456265,4482503.0698570861],[-10585690.238744598,4482503.1848163866],[-10585437.694423042,4482503.2924626404],[-10585185.899759904,4482503.3816189701],[-10584934.34166762,4482503.4631013907]]]},"attributes":{"objectid":312,"field_kid":"1032641321","approxacre":2240,"field_name":"Getman","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1032641321}},{"geometry":{"rings":[[[-10610999.729399614,4484539.4705921644],[-10611254.051613854,4484538.1125516947],[-10611254.478201915,4484796.3192076404],[-10611254.90679612,4485054.7503790576],[-10611254.911633307,4485061.9844653578],[-10611255.334993891,4485313.4165321579],[-10611255.771905487,4485572.3073605718],[-10611255.796609791,4485581.9793886309],[-10611256.203815719,4485831.4520907551],[-10611256.626419466,4486090.8404170722],[-10611256.63345808,4486098.0156615907],[-10611257.055634709,4486350.4578780988],[-10611257.491661804,4486610.3120457893],[-10611253.882096604,4486866.9428028483],[-10611250.276931511,4487123.2457569372],[-10611246.677968802,4487379.233224716],[-10611243.083606511,4487634.8976276377],[-10611239.496547529,4487890.2288679285],[-10611235.914889324,4488145.2072758991],[-10611232.326219678,4488399.9423897909],[-10611228.741950875,4488654.3909952417],[-10610968.293778367,4488656.0613592453],[-10610717.329556581,4488657.6630879929],[-10610708.265586827,4488657.7263138155],[-10610448.661480721,4488659.3727613725],[-10610189.488468239,4488661.0111549189],[-10609930.747250102,4488662.6369606685],[-10609675.252546603,4488664.2368667861],[-10609672.428515907,4488664.2644095728],[-10609414.537371062,4488665.8700770764],[-10609157.067308357,4488667.4675644776],[-10608899.784858145,4488668.9285369786],[-10608643.866569011,4488670.3773119096],[-10608388.360051369,4488671.8210550314],[-10608138.148291633,4488673.2285988647],[-10608133.625317134,4488673.258889595],[-10607880.186765831,4488674.667775779],[-10607631.500952275,4488676.0436038859],[-10607627.907441083,4488676.06471352],[-10607376.771825287,4488677.4571329784],[-10607126.769205989,4488678.8358404757],[-10606876.969250429,4488681.7188921636],[-10606625.513601568,4488684.6122495504],[-10606374.10260486,4488687.5130387954],[-10606122.122958394,4488690.4131916156],[-10605888.349539049,4488693.0901729548],[-10605870.657808524,4488693.6394086378],[-10605616.424393225,4488701.5244591571],[-10605521.488134373,4488704.4642480528],[-10605460.989946712,4488705.940202401],[-10605362.868880227,4488705.9359924449],[-10605108.713384872,4488705.922137619],[-10605111.739844847,4488450.983318951],[-10605114.635894911,4488206.8984459974],[-10605114.737509977,4488197.7417134754],[-10605117.754777072,4487943.5321385963],[-10605120.59457203,4487704.3504394125],[-10605120.533971125,4487689.262469545],[-10605119.193734804,4487438.8797493102],[-10605117.882254157,4487194.1072390042],[-10605117.84775169,4487186.6919939686],[-10605116.493229987,4486933.2182415863],[-10605116.282624252,4486893.8810041258],[-10605114.094549572,4486676.9162381655],[-10605114.871690614,4486415.3465786716],[-10605115.625270873,4486161.3341745222],[-10605115.653405128,4486156.8766256822],[-10605116.42795076,4485900.1906875595],[-10605117.197439408,4485645.7208573809],[-10605117.970764173,4485388.1396585675],[-10605118.743396318,4485130.9250836344],[-10605119.516814889,4484873.0471716011],[-10605120.291527966,4484614.8467562087],[-10605370.457997266,4484610.6092858491],[-10605621.776888812,4484606.3472843496],[-10605627.541997265,4484606.2398523763],[-10605874.208256572,4484602.049295201],[-10606127.763413925,4484597.7330690976],[-10606135.108233312,4484597.5985922823],[-10606384.633371888,4484593.3316623056],[-10606640.738754855,4484588.9464868931],[-10606896.081765521,4484584.5866069356],[-10607150.632369012,4484580.2316278545],[-10607405.496042822,4484576.3607013347],[-10607661.716973647,4484572.4613436814],[-10607665.389283555,4484572.403987796],[-10607919.235192737,4484568.5330505427],[-10608178.071824396,4484564.5787176816],[-10608433.481328325,4484560.6721779574],[-10608688.306463443,4484556.7689049644],[-10608942.554437853,4484552.8610936627],[-10609196.229056077,4484548.956549244],[-10609456.349616526,4484547.6038734009],[-10609715.649636395,4484546.2474099444],[-10609974.124911079,4484544.8978594169],[-10610231.793160688,4484543.5448991247],[-10610488.604528034,4484542.1871436117],[-10610744.58043769,4484540.825600272],[-10610999.729399614,4484539.4705921644]]]},"attributes":{"objectid":334,"field_kid":"1000149388","approxacre":3888,"field_name":"COUNTRY CLUB","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":1185,"maxgaswell":1,"lastgaspro":1,"lastgaswel":1,"lastgdate":"4-1986","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149388}},{"geometry":{"rings":[[[-10609220.651060373,4496857.9686160553],[-10609474.940624498,4496857.5873849085],[-10609475.123675231,4497108.8335118527],[-10609475.307440979,4497360.8252729848],[-10609475.322179364,4497367.1348657301],[-10609475.497428,4497613.5623440603],[-10609475.680420892,4497867.0261235647],[-10609475.685088322,4497875.4385219458],[-10609475.867632482,4498121.2201938666],[-10609476.057161072,4498376.1686846511],[-10609476.071398867,4498382.4785095993],[-10609476.251309168,4498631.8658523597],[-10609476.435561031,4498888.3522173446],[-10609223.465359978,4498885.8414627919],[-10608971.652274949,4498883.3374049757],[-10608719.009444537,4498880.8103938196],[-10608466.199122576,4498878.2749349326],[-10608464.939817028,4498623.2626629779],[-10608463.683228498,4498368.9761103345],[-10608462.425053084,4498115.4655189086],[-10608461.168794552,4497862.7198661184],[-10608460.574303301,4497610.6901993118],[-10608459.982730344,4497359.4280098714],[-10608459.390470723,4497108.8906410141],[-10608458.801229039,4496859.0971984221],[-10608712.586618651,4496858.7244051313],[-10608966.535094013,4496858.3444298813],[-10609220.651060373,4496857.9686160553]]]},"attributes":{"objectid":378,"field_kid":"1000150015","approxacre":316,"field_name":"LADORE NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":128932,"maxgaswell":5,"lastgaspro":198,"lastgaswel":5,"lastgdate":"5-2008","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000150015}},{"geometry":{"rings":[[[-10617519.347820226,4500893.7769822301],[-10617575.325572468,4500895.5146536073],[-10617574.622279454,4501148.0645364951],[-10617573.914704865,4501402.2357324176],[-10617573.909973469,4501407.4165847283],[-10617573.213243656,4501656.8484918],[-10617572.500580093,4501912.1784962751],[-10617572.492964977,4501918.728391882],[-10617571.797836665,4502168.1192434262],[-10617571.481395077,4502281.4124603793],[-10617569.23278502,4502424.5296439668],[-10617569.163264431,4502428.6164182778],[-10617565.190268107,4502681.7627108172],[-10617561.151758639,4502939.1150815608],[-10617558.01359077,4503190.7496305639],[-10617554.857426392,4503443.9959279019],[-10617551.712263094,4503696.3808936123],[-10617549.115596782,4503904.9422959657],[-10617549.06246214,4503948.7193472805],[-10617548.728905141,4504202.1188144833],[-10617548.395151323,4504455.7547159744],[-10617548.064906593,4504709.7470199708],[-10617547.737065583,4504963.8077876046],[-10617297.527814673,4504965.4774213629],[-10617125.144622983,4504966.623445427],[-10617055.256564455,4504966.9627471343],[-10617047.129147338,4504967.0026290826],[-10616796.531650264,4504968.2088404605],[-10616554.397351399,4504969.3693721052],[-10616545.755751176,4504969.4112657122],[-10616295.192793828,4504970.604738282],[-10616054.505436385,4504971.7430888508],[-10616045.923303666,4504971.7871275134],[-10615797.973110028,4504972.9622177705],[-10615551.291755578,4504974.123449415],[-10615300.608944491,4504974.087235285],[-10615047.027345628,4504974.0437948648],[-10615024.40759143,4504974.0354364952],[-10614790.561375376,4504973.9947680831],[-10614531.195916647,4504973.9443171993],[-10614503.809856847,4504973.9413224058],[-10614271.011028342,4504973.8811163707],[-10614008.800642643,4504973.808051452],[-10613988.157930708,4504973.8009794075],[-10613744.487772351,4504973.7316804789],[-10613478.00033568,4504973.6503627757],[-10613486.055462431,4504722.9778024834],[-10613494.066964353,4504473.6319268486],[-10613502.112890501,4504223.2616619319],[-10613510.164421227,4503972.6438691998],[-10613518.227762526,4503721.7144976808],[-10613526.29060472,4503470.7297120467],[-10613534.359152669,4503219.5596194034],[-10613542.445614949,4502967.8880742406],[-10613800.228379706,4502966.9007573379],[-10614046.440408245,4502965.9536486361],[-10614056.127105558,4502965.9066066211],[-10614310.061201053,4502964.9086477067],[-10614410.532067312,4502964.5116696805],[-10614548.942391586,4502963.012591484],[-10614550.011642953,4502711.2830628809],[-10614551.085682595,4502458.4754574243],[-10614552.153509958,4502205.3296888713],[-10614553.222729752,4501951.6021599593],[-10614554.296346022,4501697.3320023436],[-10614555.371956866,4501442.570827011],[-10614556.446358595,4501187.3148869062],[-10614557.523055086,4500931.5579138016],[-10614806.518885542,4500932.4172295174],[-10615047.702635754,4500933.243788884],[-10615055.133482199,4500933.2633013837],[-10615303.383363949,4500934.1026860587],[-10615551.262023397,4500934.9351312965],[-10615802.998486053,4500930.4697462395],[-10616055.097562047,4500925.9911288312],[-10616059.824133109,4500925.9038119158],[-10616307.558851039,4500921.5058355322],[-10616560.393966163,4500917.0086969864],[-10616566.644268759,4500916.8907608511],[-10616814.363671632,4500912.4656798337],[-10617068.223854044,4500907.9237981196],[-10617071.783599276,4500907.8590357359],[-10617124.585102245,4500906.9181051441],[-10617321.896380838,4500900.3514493229],[-10617519.347820226,4500893.7769822301]]]},"attributes":{"objectid":418,"field_kid":"1000150007","approxacre":2196,"field_name":"GALESBURG","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000150007}},{"geometry":{"rings":[[[-10620379.061802529,4499887.9264875213],[-10620632.831626331,4499889.3584166085],[-10620632.47768401,4500144.237517463],[-10620632.123435315,4500398.6282000449],[-10620631.770386349,4500652.8840905372],[-10620631.419224173,4500905.8985258592],[-10620625.76779977,4500905.84020185],[-10620583.921328813,4500905.3386011608],[-10620377.706341552,4500905.8735862402],[-10620124.119410723,4500906.5274931537],[-10620119.948570048,4500906.5351309022],[-10620090.912367098,4500906.6131838746],[-10619870.596430961,4500905.4850451248],[-10619617.129110746,4500904.1818528818],[-10619617.413813766,4500649.1991714751],[-10619617.697613569,4500394.0471843388],[-10619617.977208203,4500138.8649659296],[-10619618.255600415,4499883.6008283207],[-10619871.790658738,4499885.0461176801],[-10620125.375873595,4499886.4869952733],[-10620379.061802529,4499887.9264875213]]]},"attributes":{"objectid":633,"field_kid":"1000150009","approxacre":159,"field_name":"GALESBURG SOUTHWEST","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":158944,"maxgaswell":6,"lastgaspro":596,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":496,"avgdepthsl":-479,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000150009}},{"geometry":{"rings":[[[-10608116.261987705,4491736.3882125355],[-10608116.524488525,4491477.9811633741],[-10608116.785699738,4491220.1661009388],[-10608117.039213534,4490962.9186699633],[-10608117.293339642,4490706.2502914192],[-10608110.715823684,4490706.3335916651],[-10608114.12853769,4490453.5635662563],[-10608117.552151253,4490200.1053447295],[-10608120.96945519,4489946.4800488325],[-10608124.392159404,4489692.5146339033],[-10608127.826968152,4489438.0387168499],[-10608131.264476523,4489183.3435193701],[-10608134.705184618,4488928.4052542765],[-10608138.148291633,4488673.2285988647],[-10608390.062799439,4488671.8117583496],[-10608643.866569011,4488670.3773119096],[-10608899.440364055,4488668.93231053],[-10609157.067308357,4488667.4675644776],[-10609416.733183233,4488665.8572607143],[-10609672.428515907,4488664.2644095728],[-10609675.252546603,4488664.2368667861],[-10609932.864372227,4488662.6235135682],[-10610189.488468239,4488661.0111549189],[-10610184.351163592,4488914.2343611326],[-10610179.211959135,4489167.5039700512],[-10610174.071055179,4489420.8240154814],[-10610168.928751817,4489674.1814022744],[-10610163.781150585,4489927.8937889524],[-10610158.619947476,4490182.2520358507],[-10610153.463340661,4490436.0554134231],[-10610148.306935055,4490689.8310368415],[-10610147.714644443,4490948.7846406484],[-10610147.119562447,4491208.3606157312],[-10610146.527691256,4491468.3103389172],[-10610145.933426479,4491728.7415470434],[-10610402.644562103,4491728.4541958254],[-10610660.099347161,4491728.1599258175],[-10610918.286668926,4491727.8568472369],[-10611177.207228284,4491727.5491173053],[-10611177.172486918,4491732.9412467079],[-10611175.180482773,4491989.1183855115],[-10611173.141435131,4492251.3114765026],[-10611173.114975788,4492255.1980141876],[-10611171.093588991,4492514.1085315496],[-10611169.037144773,4492777.5191711774],[-10610989.847862286,4492776.9504900705],[-10610911.626556009,4492776.6991195036],[-10610654.950705651,4492775.8707623584],[-10610483.838143902,4492775.3166765273],[-10610399.01239703,4492775.0414070887],[-10610143.786601583,4492774.2110533668],[-10609977.255169565,4492773.6576579837],[-10609888.784260761,4492773.3694896996],[-10609634.083163695,4492772.53309556],[-10609470.475369303,4492771.9888099711],[-10609379.711452592,4492772.2229577601],[-10609125.716490302,4492772.8767592898],[-10608961.357774753,4492774.1833539512],[-10608873.378046021,4492774.8855841504],[-10608620.904247932,4492776.8993212087],[-10608456.820246855,4492778.2071799394],[-10608452.692834476,4492778.191880919],[-10608368.20236711,4492777.7625323748],[-10608146.52466544,4492776.6373050567],[-10608115.224129615,4492776.5654567489],[-10608115.486272816,4492515.3062238321],[-10608115.746541316,4492255.4129578136],[-10608116.00541045,4491995.632572866],[-10608116.261987705,4491736.3882125355]]]},"attributes":{"objectid":654,"field_kid":"1000149395","approxacre":1456,"field_name":"LADORE SOUTH","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":2016,"maxgaswell":4,"lastgaspro":22,"lastgaswel":4,"lastgdate":"4-1986","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149395}},{"geometry":{"rings":[[[-10626964.584063319,4586906.8009979483],[-10626965.1742431,4586648.2225693939],[-10626965.765224731,4586389.2753322218],[-10626966.363114854,4586130.0831296202],[-10626966.961205948,4585870.5941159334],[-10626967.558597153,4585610.7464086898],[-10626968.158492021,4585350.5789308026],[-10626968.758287584,4585090.0878930716],[-10626969.357683513,4584829.2710319189],[-10627226.794438398,4584829.6717638383],[-10627479.517410908,4584830.0610754741],[-10627484.159811864,4584830.0637258077],[-10627741.451200929,4584830.4443757329],[-10627992.408657646,4584830.8095446015],[-10627998.665401924,4584830.8205772946],[-10628255.820936011,4584831.1854667533],[-10628508.108611785,4584831.5363944592],[-10628512.891172774,4584831.5440013036],[-10628769.867602477,4584831.8989773011],[-10629026.758834966,4584832.2481068019],[-10629243.156539824,4584827.7203909997],[-10629280.445618739,4584827.6533823544],[-10629534.362356143,4584827.1931210048],[-10629788.586944997,4584826.7359089702],[-10630043.175449336,4584826.2725944733],[-10630297.124923958,4584825.7923777131],[-10630552.029088642,4584825.3065645099],[-10630588.719584012,4584825.2415920235],[-10630807.93089469,4584823.4411532767],[-10630996.788445173,4584821.8852604991],[-10631040.690864963,4584826.4225903992],[-10631064.651616646,4584831.5120504191],[-10631062.160704549,4585084.6250880295],[-10631059.628439,4585341.8728807326],[-10631057.104984256,4585598.4349304559],[-10631054.648315353,4585848.2568441834],[-10631054.592344025,4585853.3988653626],[-10631053.042745724,4586010.5557007976],[-10631052.984526001,4586108.1238590144],[-10631052.981815083,4586113.102404817],[-10631052.947631767,4586204.8023228338],[-10631053.667904729,4586293.9462279622],[-10631053.601629386,4586357.627912459],[-10631053.606327621,4586362.1111777406],[-10631053.5897788,4586381.2042630548],[-10631053.509798536,4586501.5681796344],[-10631052.672484793,4586607.9591043834],[-10631052.593384501,4586614.8868698506],[-10631051.022596782,4586750.0115777971],[-10631054.847532051,4586867.7357083764],[-10631064.860944703,4586867.4780646907],[-10631063.348332837,4587123.2307181973],[-10631061.820199121,4587381.6435314808],[-10631060.303379934,4587638.8579000048],[-10631058.792768763,4587895.3545870399],[-10630803.98612616,4587898.5151495691],[-10630549.126186704,4587901.6705677956],[-10630294.148512265,4587904.8231905857],[-10630039.080133736,4587907.9711106904],[-10629784.749796841,4587911.7856373563],[-10629531.923077671,4587915.5734589947],[-10629279.508629123,4587919.343099012],[-10629026.340618907,4587923.1182111874],[-10629026.328994917,4587928.1028445549],[-10628768.101106498,4587929.7290143277],[-10628510.470400283,4587931.3443746585],[-10628252.061204217,4587932.9648245526],[-10627993.334545156,4587934.5810805112],[-10627735.06620962,4587936.1872905027],[-10627476.199590176,4587937.7910878044],[-10627218.080324585,4587939.3740306729],[-10626960.260200616,4587940.9509968273],[-10626960.279833708,4587937.0466896333],[-10626961.342041135,4587682.9135100888],[-10626962.420578597,4587424.5635999646],[-10626962.430297676,4587421.641236743],[-10626963.500918962,4587165.8514533928],[-10626964.584063319,4586906.8009979483]]]},"attributes":{"objectid":765,"field_kid":"1000146333","approxacre":1916,"field_name":"NORTHCOTT","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146333}},{"geometry":{"rings":[[[-10581594.10410958,4599149.4171440378],[-10581849.779436409,4599151.2353644166],[-10581849.576953022,4599407.0166839147],[-10581849.372853661,4599664.6571447207],[-10581849.38824836,4599667.6647092476],[-10581849.195177859,4599923.186034848],[-10581848.998771323,4600182.9375696294],[-10581848.78346259,4600440.1448471788],[-10581848.570058379,4600697.0530097643],[-10581848.357657535,4600953.6782027856],[-10581848.14565975,4601209.9708827371],[-10581591.998655083,4601205.6839004951],[-10581334.865820671,4601201.3735033665],[-10581078.890712731,4601197.0725187976],[-10580823.383240499,4601192.77242296],[-10580825.7056497,4601451.621463283],[-10580828.016555676,4601709.1442772858],[-10580830.31215396,4601965.3537521511],[-10580832.59604856,4602220.2665963471],[-10580578.290354775,4602218.6749576936],[-10580324.703885082,4602217.0824218458],[-10580071.047134841,4602215.4832660863],[-10579817.571692331,4602213.8777429359],[-10579817.485342892,4602207.2393011209],[-10579814.625937644,4601956.2922671419],[-10579811.675487431,4601697.3746468052],[-10579811.574426517,4601690.0132711818],[-10579808.680696106,4601437.1463704677],[-10579805.685814416,4601175.600534888],[-10579805.586219983,4600918.1642960925],[-10579805.487827389,4600660.6734990533],[-10579805.391838042,4600403.1217828896],[-10579805.296950422,4600145.5130981803],[-10579805.291677117,4600141.1231071884],[-10579805.210782716,4599926.8074585935],[-10579805.265824642,4599889.4179642489],[-10579805.641073018,4599632.2007717583],[-10579805.632503558,4599626.7886240277],[-10579805.972279472,4599373.84518841],[-10579806.150973286,4599241.240180295],[-10579805.387845077,4599114.3435422974],[-10580060.521415068,4599121.0982464049],[-10580315.915783675,4599127.8537159981],[-10580571.37002063,4599134.6071524909],[-10580826.962916248,4599141.3570278566],[-10580960.328846309,4599144.8730144547],[-10581082.663452739,4599145.7543571796],[-10581338.385833506,4599147.5923055131],[-10581594.10410958,4599149.4171440378]]]},"attributes":{"objectid":770,"field_kid":"1000149646","approxacre":792,"field_name":"OAKWOOD RANCH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":145375.12,"maxoilwell":31,"lastoilpro":134.80000000000001,"lastoilwel":27,"lastodate":"7-2008","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149646}},{"geometry":{"rings":[[[-10612153.154453175,4474613.7833242435],[-10612144.128705004,4474362.3014523005],[-10612118.062052928,4474362.4689860698],[-10611866.998603111,4474364.0476175956],[-10611633.849507026,4474365.5090339445],[-10611614.604118979,4474365.6194392489],[-10611361.147811238,4474367.2016849825],[-10611105.783404017,4474368.7878029915],[-10610852.885293081,4474367.7817553505],[-10610610.611332195,4474366.811700847],[-10610601.919209294,4474366.7663023425],[-10610352.06340559,4474365.7636933094],[-10610113.921208197,4474364.8011172898],[-10610103.592898866,4474364.7626130329],[-10610104.352152815,4474104.7205849327],[-10610105.094573243,4473850.835769576],[-10610105.123639081,4473843.8279583883],[-10610105.895601451,4473582.0718180994],[-10610106.668456754,4473319.4774816278],[-10609856.609527035,4473316.624107142],[-10609607.369241264,4473313.772756462],[-10609359.30230855,4473310.9235604927],[-10609112.287188757,4473308.0811704211],[-10609112.393389042,4473326.1782428361],[-10608857.485890165,4473325.6624629926],[-10608602.986962404,4473325.1405269168],[-10608348.712293172,4473324.6120546581],[-10608094.703430394,4473324.0764180478],[-10607839.429808894,4473323.5422719792],[-10607581.315210622,4473322.9957604203],[-10607568.562902719,4473322.9745739363],[-10607320.24059823,4473322.4312226484],[-10607056.376968928,4473321.847906596],[-10607056.096666619,4473314.0778471688],[-10607060.03667606,4473064.8388162507],[-10607064.122559169,4472806.2718040925],[-10607064.264028791,4472797.0722357444],[-10607068.217738098,4472546.2107319953],[-10607072.341234462,4472284.622766044],[-10607076.157596905,4472025.0101266829],[-10607079.963155176,4471766.1859665206],[-10607080.006378897,4471763.6150232945],[-10607083.770023691,4471508.1952402741],[-10607087.557678606,4471251.0201582741],[-10607087.700549506,4471241.7818394024],[-10607091.36965159,4470992.8367285505],[-10607095.144702967,4470736.6927163498],[-10607095.282569528,4470727.5933967028],[-10607098.892943878,4470482.5355470935],[-10607102.608167704,4470230.4202673696],[-10607103.061936589,4469959.4365321416],[-10607103.490422955,4469702.882480938],[-10607103.512593659,4469687.6464030696],[-10607103.957334958,4469414.9800481424],[-10607104.354420083,4469171.7106504152],[-10607104.394662961,4469151.6865763599],[-10607104.825155707,4469141.4509931384],[-10607116.305530241,4468868.5112211909],[-10607126.306555519,4468630.7113447171],[-10607127.752176344,4468596.5078105843],[-10607139.148676725,4468325.6042188499],[-10607150.506742699,4468055.5855523627],[-10607156.889086032,4467807.1949714683],[-10607163.325470908,4467556.7052401286],[-10607163.791325925,4467538.716718222],[-10607169.824007012,4467304.1489343941],[-10607176.371779466,4467049.5267051309],[-10607176.750867931,4467034.8405493572],[-10607183.325423704,4466795.1738004442],[-10607190.333719933,4466539.6745945867],[-10607190.460320337,4466535.1685323631],[-10607197.38365324,4466283.0402296064],[-10607204.462008309,4466025.2629965711],[-10607203.949312212,4465768.7617645739],[-10607203.462179296,4465525.4358231453],[-10607203.431123927,4465513.6655162424],[-10607202.917054581,4465259.9761603177],[-10607202.454704931,4465031.9013355933],[-10607202.413611634,4465007.689071713],[-10607202.668269947,4464757.9552762043],[-10607202.901806634,4464528.1940248227],[-10607202.92013118,4464508.8311408991],[-10607203.172806667,4464261.0215052869],[-10607203.428376902,4464012.3694615904],[-10607455.054993639,4464013.6426975159],[-10607706.453446679,4464014.9082641061],[-10607709.269398952,4464014.9210127406],[-10607957.528698197,4464013.3662963035],[-10608198.255899141,4464011.8518815553],[-10608208.18876834,4464011.6230381485],[-10608434.387654107,4464006.4349816218],[-10608460.847610014,4464006.1578576611],[-10608712.010252137,4464003.5163814723],[-10608961.71230761,4464000.8711071284],[-10609209.929148134,4463998.2362319324],[-10609461.673250901,4463994.4123350764],[-10609714.204663072,4463990.5689824512],[-10609967.539102783,4463986.70479233],[-10610221.672865782,4463982.8205185449],[-10610473.499164576,4463978.9747721739],[-10610724.884854818,4463975.1278885445],[-10610975.823429,4463971.2794905901],[-10611226.320193248,4463967.4309605081],[-10611474.108622842,4463962.8290174901],[-10611722.803399341,4463958.2038528491],[-10611972.384499675,4463953.5589842135],[-10612222.870345067,4463948.8896375671],[-10612229.03746664,4463948.7920154668],[-10612474.218796739,4463945.2617701013],[-10612726.454273054,4463941.62286699],[-10612979.561556263,4463937.9534532446],[-10613233.546453195,4463934.2663446274],[-10613235.379179107,4463683.6425759187],[-10613237.029224191,4463458.1892826641],[-10613237.21039545,4463432.1507007247],[-10613239.064019347,4463178.6433647657],[-10613240.546780834,4462976.105756687],[-10613240.85295321,4462934.3902044101],[-10613240.609472489,4462923.506016653],[-10613488.968561176,4462935.9256047774],[-10613729.780427689,4462947.9608603511],[-10613736.090819623,4462948.2834917493],[-10613981.868122693,4462960.5506542334],[-10614226.326100212,4462972.7481986564],[-10614476.558549264,4462985.2365890285],[-10614727.671014089,4462997.7635778366],[-10614979.340921877,4463010.3057907103],[-10615231.849898089,4463022.882832339],[-10615231.793923166,4463260.2217946984],[-10615231.740223182,4463483.0634839637],[-10615231.736711882,4463504.9564869003],[-10615231.674419891,4463752.5534225265],[-10615231.612914251,4463998.5024433816],[-10615483.946504654,4463995.0165556753],[-10615727.007387338,4463991.6534825191],[-10615736.030206732,4463991.527398387],[-10615987.898059748,4463988.0299464688],[-10616228.153403044,4463984.6879275599],[-10616239.521931313,4463984.5362611255],[-10616239.74659846,4464228.6363628255],[-10616239.973383587,4464474.5429161098],[-10616240.203784298,4464721.7789457403],[-10616240.435699208,4464970.4654255211],[-10616240.947153676,4465221.1019550217],[-10616241.461131744,4465474.1464514872],[-10616241.981022768,4465727.911543062],[-10616242.502927402,4465982.9958350183],[-10616239.217862854,4466241.1102257352],[-10616235.962111529,4466496.8097088188],[-10616232.730967909,4466750.0851856377],[-10616229.532140072,4467000.8420966063],[-10616226.502708452,4467251.6513491916],[-10616223.470275078,4467502.63498447],[-10616220.475958833,4467750.4831385044],[-10616217.504552407,4467996.3837495521],[-10615964.321848935,4467999.5974899288],[-10615712.177443989,4468002.7915176321],[-10615458.982927382,4468006.0001085792],[-10615205.432199882,4468009.2078153165],[-10615188.786068497,4468291.0072442843],[-10615172.059758056,4468574.1655892218],[-10615170.348339144,4468603.255189484],[-10615155.275391962,4468858.4387219278],[-10615138.414349368,4469143.896121636],[-10615135.997419845,4469184.6982540879],[-10615121.31777123,4469433.2911489941],[-10615104.089262979,4469725.0133828158],[-10615102.2640179,4469754.6179333888],[-10615085.886852026,4470018.9409327302],[-10615067.517572723,4470315.4129358158],[-10615070.529458174,4470565.8372901641],[-10615073.255805185,4470792.6145955846],[-10615073.538237566,4470816.0161417546],[-10615076.547418311,4471066.3299260801],[-10615079.167263925,4471284.2695763968],[-10615079.502235658,4471316.6013713405],[-10615078.141374571,4471566.9370300788],[-10615076.910054641,4471793.6609939914],[-10615076.783619726,4471817.5665719053],[-10615076.757534862,4471822.6924899332],[-10615082.189668097,4472068.2862974275],[-10615087.732272321,4472318.87530444],[-10614841.946856396,4472318.7240704],[-10614608.045248512,4472318.5757833868],[-10614592.454564545,4472318.5712710321],[-10614344.374201169,4472318.398374212],[-10614115.369842116,4472318.2343179528],[-10614095.994192144,4472318.2262272472],[-10613847.367598515,4472318.0378556224],[-10613612.406367982,4472317.8540927665],[-10613597.781698216,4472317.8387812022],[-10613347.251208352,4472317.6443448383],[-10613095.762913585,4472317.443606697],[-10613096.823695412,4472575.00538918],[-10613097.880666036,4472831.8389644194],[-10613098.939631887,4473087.9162366446],[-10613099.931273408,4473327.9878223827],[-10613100.151267465,4473343.3162530847],[-10613103.66044469,4473597.8506093286],[-10613107.158601359,4473851.5663693594],[-10613109.485228887,4474020.2494519018],[-10613110.279681956,4474104.420639581],[-10613111.894963451,4474275.4126724545],[-10613111.116153279,4474356.7151033403],[-10613310.755298289,4474354.2909695059],[-10613367.041689608,4474353.8428955218],[-10613618.94139941,4474351.8294989076],[-10613650.472651135,4474351.5758912936],[-10613873.999350674,4474349.7766560726],[-10614129.916292809,4474347.7108716881],[-10614141.137538787,4474597.6578761488],[-10614152.37650767,4474847.9725347618],[-10614163.688582016,4475099.7955418322],[-10614175.050428508,4475352.7399816532],[-10613920.922083655,4475353.4455685951],[-10613667.523780176,4475354.1424870379],[-10613657.802577898,4475354.1659974903],[-10613412.525332922,4475354.8396347025],[-10613163.071975706,4475355.5182446847],[-10613163.847113417,4475363.9973122291],[-10612923.512572315,4475365.0356547451],[-10612685.731874263,4475366.0578075564],[-10612676.186875584,4475366.1076084645],[-10612429.251528565,4475367.1536571626],[-10612180.227174586,4475368.2031985708],[-10612171.203137029,4475116.7175321504],[-10612162.182702987,4474865.3593659867],[-10612153.154453175,4474613.7833242435]]]},"attributes":{"objectid":791,"field_kid":"1000149380","approxacre":13030,"field_name":"ALTAMONT","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":190767,"maxgaswell":7,"lastgaspro":50,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":772.44680850999998,"avgdepthsl":-111.06382979,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149380}},{"geometry":{"rings":[[[-10645926.375307502,4544087.6714778384],[-10645925.293061178,4543832.5167491119],[-10645670.414533727,4543831.8137141848],[-10645638.949735932,4543831.7264821101],[-10645414.013096437,4543830.8740646113],[-10645400.537879601,4543830.82145089],[-10645156.168139601,4543829.9001114666],[-10644955.388399905,4543829.1383732688],[-10644896.713279786,4543829.4287779527],[-10644881.926692573,4543829.4970750948],[-10644637.633751754,4543830.7408969151],[-10644377.868154133,4543832.0579562178],[-10644366.573884496,4543832.1082620192],[-10644117.394462118,4543833.3656498175],[-10643856.22258692,4543834.6785370121],[-10643849.035694484,4543581.0595103856],[-10643841.811952733,4543326.132836937],[-10643841.595864475,4543318.5327346874],[-10643834.552062564,4543069.9163356451],[-10643827.256924957,4542812.4063038491],[-10643827.012898615,4542803.6905558659],[-10643819.978407968,4542555.2368262252],[-10643812.669350848,4542297.1105161756],[-10643812.473989805,4542290.1701611923],[-10643805.327350913,4542038.0282042017],[-10643797.957614012,4541777.9908475047],[-10643541.379068101,4541776.5833291849],[-10643284.887519736,4541775.169102109],[-10643281.077445405,4541775.1569660818],[-10643028.494081382,4541773.7481662529],[-10642772.195148941,4541772.3116611708],[-10642767.056283832,4541772.2814299092],[-10642515.951979009,4541770.8678145939],[-10642259.802414028,4541769.4170060977],[-10642255.93287299,4541769.4048703238],[-10642003.721225815,4541767.9778427361],[-10641747.664965477,4541766.5252622636],[-10641746.591114685,4541511.5098237451],[-10641745.521575257,4541257.5790143004],[-10641744.447427798,4541003.1839361982],[-10641743.373280598,4540748.8375927582],[-10641515.060543332,4540747.8311980702],[-10641286.340248814,4540746.8187300535],[-10641057.199682759,4540745.7971511865],[-10640827.642449215,4540744.7691193298],[-10640597.683064474,4540743.7343812911],[-10640367.316422801,4540742.6911651865],[-10640136.534014711,4540741.6512416173],[-10639905.343648907,4540740.6039790707],[-10639905.341271469,4540744.7482328154],[-10639655.432711484,4540744.4715764783],[-10639405.46788834,4540744.1896046503],[-10639406.16461728,4540489.4400521759],[-10639406.865047574,4540234.2384545859],[-10639407.561069967,4539978.5564964712],[-10639408.258390902,4539722.4013000075],[-10639658.037915286,4539723.6156721301],[-10639907.770286717,4539724.8234638767],[-10639909.598875463,4539468.1756300079],[-10639911.391855635,4539216.6838064212],[-10639911.426766902,4539212.1023083292],[-10639911.482188582,4539205.4511419246],[-10639912.566489933,4538956.6285149567],[-10639912.918292066,4538875.7397505865],[-10639914.082775991,4538707.8239717297],[-10639914.120981993,4538701.7700186353],[-10640143.693831306,4538701.4712977828],[-10640373.322643381,4538701.1681477763],[-10640602.236453237,4538700.8518405808],[-10640830.697755417,4538700.5316125462],[-10641058.676115789,4538700.2091088258],[-10641286.30888842,4538699.8816714901],[-10641513.621601975,4538699.5505658323],[-10641740.611052832,4538699.2133876067],[-10641740.967729736,4538448.0484616421],[-10641741.332178567,4538190.8222625088],[-10641741.342963854,4538186.4007744743],[-10641741.711242871,4537933.4495583624],[-10641742.086001376,4537675.9234009981],[-10641741.509399446,4537419.5380295394],[-10641740.944036875,4537167.5691339318],[-10641740.92689226,4537163.3850552589],[-10641740.344886985,4536907.4611714194],[-10641739.776031896,4536657.3858082891],[-10641739.761581611,4536651.7690178668],[-10641739.178778164,4536396.3089570096],[-10641738.605812576,4536145.2758996682],[-10641738.589168405,4536141.0730016157],[-10641738.009971645,4535886.0612615654],[-10641737.432778487,4535631.2808045372],[-10641510.773584805,4535630.9645326724],[-10641285.646409884,4535630.6445854846],[-10641059.420902751,4535630.3278057268],[-10640833.007384641,4535630.0038161399],[-10640606.614489628,4535629.6732483068],[-10640379.535424756,4535629.3374968795],[-10640152.835785527,4535628.9955451451],[-10639925.230730448,4535628.6461337321],[-10639924.813223772,4535885.0533757145],[-10639924.395418476,4536141.7489096709],[-10639924.381230447,4536146.3280469673],[-10639923.976513723,4536398.7417393681],[-10639923.566120295,4536656.0326459501],[-10639670.521020243,4536654.5382038727],[-10639417.596855816,4536653.0371827157],[-10639164.806641608,4536651.5276846951],[-10638912.146373136,4536650.0124931578],[-10638659.601934606,4536648.4971748777],[-10638407.190044746,4536646.9773017168],[-10638154.89899043,4536645.4569222378],[-10637902.728671528,4536643.9309758143],[-10637652.398321664,4536643.1872670911],[-10637401.673629323,4536642.4345775638],[-10637150.271276724,4536641.6831562007],[-10636898.297082523,4536640.9238934414],[-10636646.516608208,4536640.582637067],[-10636395.311279133,4536640.2379622916],[-10636142.649515985,4536639.8776059449],[-10635889.212983577,4536639.5109272245],[-10635890.207038131,4536385.5248615621],[-10635891.165807592,4536140.4117678935],[-10635891.195989944,4536132.02887813],[-10635892.187347723,4535879.0700013684],[-10635893.176406024,4535626.6209939579],[-10635896.660357548,4535373.2265504133],[-10635900.152514985,4535119.2992572477],[-10635900.192038767,4535115.9536642255],[-10635903.634657847,4534864.8305517435],[-10635907.131413823,4534609.8303395985],[-10635907.185246576,4534605.3328316342],[-10635910.627865972,4534354.2657729276],[-10635914.137930047,4534098.1580159618],[-10635914.178654939,4534094.7745519811],[-10635917.656300059,4533841.503440652],[-10635921.188281979,4533584.3029725654],[-10635666.383208146,4533584.6568729058],[-10635410.500825606,4533585.0048336238],[-10635155.839512976,4533585.343176472],[-10634901.636214174,4533585.6750668474],[-10634901.953185502,4533328.4782772884],[-10634902.272159001,4533071.2740405938],[-10634902.583423303,4532813.9877405195],[-10634902.894887406,4532556.6389851915],[-10634902.433285318,4532299.4832376232],[-10634901.974087687,4532042.6202566372],[-10634901.508983245,4531785.7342583705],[-10634901.043679029,4531528.9271659171],[-10634908.261477022,4531528.9050030764],[-10634907.611380344,4531274.5151328417],[-10634906.963887259,4531020.2412176365],[-10634906.305479964,4530765.655108653],[-10634905.648773415,4530510.8879480809],[-10634904.997873258,4530256.1071530674],[-10634904.348272881,4530001.0611188803],[-10634903.694866594,4529745.7559336042],[-10634903.040057054,4529490.1854211194],[-10635155.733477151,4529490.070813098],[-10635401.756913539,4529489.9526967723],[-10635406.057939207,4529489.9421827355],[-10635656.189484769,4529489.8073582677],[-10635899.602692382,4529489.670542893],[-10636144.675765725,4529490.0824207123],[-10636396.165338384,4529490.4998309212],[-10636399.9303628,4529490.5119501911],[-10636647.631184394,4529490.9130691215],[-10636901.210401535,4529491.3174472852],[-10636907.017517179,4529491.3317061402],[-10637153.069989303,4529491.72853438],[-10637405.501919152,4529492.1276080394],[-10637410.140523646,4529492.1279652715],[-10637658.525312554,4529492.5147946021],[-10637912.132961495,4529492.9043805553],[-10638163.785923209,4529494.2628003908],[-10638415.138748137,4529495.6159118628],[-10638666.197843406,4529496.9556234702],[-10638916.956201188,4529498.2874981258],[-10639167.815872623,4529499.6160853487],[-10639418.119019566,4529500.9351932602],[-10639667.835307999,4529502.2460862799],[-10639917.003681615,4529503.5487642139],[-10640141.595365686,4529502.4518099325],[-10640366.737867733,4529501.347646663],[-10640592.451110089,4529500.2336193128],[-10640818.753413342,4529499.1132678101],[-10641043.409970134,4529498.0003835158],[-10641269.340756541,4529496.8768732352],[-10641495.327906143,4529495.7457770333],[-10641725.061459059,4529494.5903887656],[-10641726.690242337,4529240.2002817672],[-10641728.318226172,4528986.0539198034],[-10641728.336121848,4528982.034561486],[-10641729.94570487,4528731.1590168448],[-10641731.583692821,4528475.8510107752],[-10641731.613991428,4528470.0208055228],[-10641733.212565225,4528219.6697867475],[-10641734.850644274,4527962.887191141],[-10641734.878148565,4527958.5099796299],[-10641736.498030148,4527705.5122431163],[-10641738.148015304,4527447.5434695398],[-10641741.012684936,4527193.1325505869],[-10641743.804411484,4526945.1077680383],[-10641743.877157241,4526939.199923736],[-10641746.731320821,4526685.7393606929],[-10641747.78203286,4526592.3703225218],[-10641748.90377068,4526440.7116251327],[-10641748.957182294,4526432.7537370631],[-10642004.798650978,4526433.6171230236],[-10642260.47423348,4526434.4719152451],[-10642515.755873878,4526435.3136911448],[-10642770.722360607,4526436.1477587754],[-10643026.305241575,4526437.4159797421],[-10643281.818444319,4526438.6778816469],[-10643537.218420001,4526439.9399106987],[-10643792.637116643,4526441.193977139],[-10643794.995108085,4526184.033299691],[-10643797.312181802,4525931.5390485711],[-10643797.327583212,4525928.9138889732],[-10643799.645554243,4525675.8123408677],[-10643801.943815365,4525424.7340694144],[-10644057.850032846,4525421.0761242062],[-10644313.905317565,4525417.410723024],[-10644317.05605256,4525417.3624303117],[-10644570.116176827,4525413.7373603433],[-10644826.480308052,4525410.0578054814],[-10644823.717246121,4525665.1466189427],[-10644820.931470932,4525922.2668644451],[-10644820.865736034,4525928.7106424281],[-10644818.122581972,4526181.4065587306],[-10644815.289978389,4526442.5370347966],[-10644812.344816335,4526698.3352340348],[-10644809.383844545,4526955.4628329119],[-10644806.445191301,4527211.5167874992],[-10644803.508638771,4527467.3009510469],[-10644955.504986845,4527468.0906177033],[-10645059.186019627,4527468.1461099992],[-10645315.274157045,4527468.2743011471],[-10645571.736013794,4527468.4047657605],[-10645828.584504321,4527468.5294138882],[-10645826.040671829,4527721.4800128341],[-10645823.492637578,4527974.9240499828],[-10645823.433704479,4527980.4139358038],[-10645820.947708145,4528228.5944493301],[-10645818.404482486,4528482.5775700733],[-10645818.331841066,4528489.2403647965],[-10645815.850440396,4528735.8495614557],[-10645813.29860279,4528989.4584170422],[-10645813.238468705,4528995.0091398805],[-10645810.747066908,4529243.301503649],[-10645808.193932662,4529497.7183002895],[-10646064.224092189,4529496.8770889742],[-10646314.982837282,4529496.0457642181],[-10646320.571607744,4529496.0281640263],[-10646575.860835951,4529495.1848070268],[-10646822.404251555,4529494.3666510163],[-10646830.549890766,4529494.3410736443],[-10647083.738161623,4529493.4817966707],[-10647330.460077357,4529492.6381012518],[-10647336.287115205,4529492.6277063703],[-10647589.274060149,4529491.7627411522],[-10647839.130993275,4529490.9025951559],[-10647842.143154198,4529237.2687615696],[-10647845.027236039,4528994.4291291889],[-10647845.14521016,4528984.701648619],[-10647848.137161167,4528733.2039600546],[-10647850.971914655,4528494.8768666135],[-10647851.1177058,4528482.7811808586],[-10647854.089342009,4528232.6238067113],[-10647856.943705415,4527992.2841717545],[-10647857.043863472,4527983.2135695461],[-10647859.997288167,4527734.5506684845],[-10647862.943108784,4527486.6337860534],[-10647863.919476843,4527231.5759228449],[-10647864.895243099,4526976.3351947377],[-10647865.863800177,4526720.9183140239],[-10647866.350177944,4526592.6885655662],[-10647867.817861876,4526465.3136605211],[-10647870.785059446,4526209.5609339494],[-10647873.752456147,4525953.6299437704],[-10647876.730263274,4525697.4913820671],[-10647879.70937065,4525441.1543633938],[-10648134.269315101,4525443.7457788624],[-10648388.534328533,4525446.3251904231],[-10648642.519628044,4525448.8970212853],[-10648896.231420597,4525451.4592493391],[-10649150.232137276,4525454.0146521293],[-10649404.721502218,4525456.5687893843],[-10649408.22703585,4525456.6102245878],[-10649659.70822526,4525459.1326561309],[-10649915.191104958,4525461.6889382992],[-10649913.709319338,4525206.2477700831],[-10649912.228133826,4524950.7186972229],[-10649912.217903484,4524947.5547982547],[-10649912.161072334,4524936.2536866209],[-10649913.654310141,4524695.1291339537],[-10649915.238462646,4524439.365114565],[-10650172.0719526,4524440.4589232774],[-10650427.958279701,4524441.5413637972],[-10650431.068069134,4524441.5500675049],[-10650685.143564282,4524442.6187432054],[-10650942.876563411,4524443.6946035801],[-10651197.686082102,4524444.753419173],[-10651452.310392933,4524445.8051592335],[-10651707.024904881,4524446.8421139298],[-10651961.050543798,4524447.8690891573],[-10652203.791824872,4524449.5576576451],[-10652447.370445469,4524451.2439476093],[-10652691.033260476,4524452.9206335023],[-10652935.036157038,4524454.5946642626],[-10653179.545422144,4524456.3313713456],[-10653424.343911752,4524458.0655499436],[-10653668.694899146,4524459.7872206876],[-10653913.275143739,4524461.5030776802],[-10654165.353894223,4524461.8824278647],[-10654417.989069009,4524462.2557096034],[-10654671.161246376,4524462.6341697602],[-10654924.862317149,4524463.0054242834],[-10655179.170874681,4524464.2467205012],[-10655434.061885739,4524465.4843492815],[-10655689.491100693,4524466.7239974253],[-10655945.461322658,4524467.9593465114],[-10655941.453333201,4524724.3259465061],[-10655937.442441458,4524980.8589518834],[-10655933.415732808,4525237.5372700114],[-10655929.384019855,4525494.4388884939],[-10655924.992501607,4525751.0745942649],[-10655920.59377699,4526008.003501391],[-10655920.481187142,4526014.2075806232],[-10655916.194953958,4526265.2213343391],[-10655912.155612353,4526501.7080834722],[-10655912.187571777,4526522.7204026291],[-10655912.192422612,4526530.4393559489],[-10655912.285294086,4526592.8949487964],[-10655914.597564248,4526656.7868739674],[-10655913.691573031,4526780.1340267565],[-10655911.801966626,4527037.5651333481],[-10655911.747642282,4527043.791943578],[-10655909.907655397,4527295.0791835664],[-10655908.02045276,4527552.701717508],[-10655906.934029007,4527806.9944250295],[-10655905.846203858,4528061.3213867452],[-10655904.767188871,4528315.7010617778],[-10655903.688073898,4528570.1067799451],[-10655902.62247449,4528824.5853189463],[-10655902.396238942,4528878.7214242481],[-10655899.87849218,4529079.1102696583],[-10655899.418587504,4529115.0571004413],[-10655897.375180181,4529333.6868098853],[-10655894.995307038,4529588.3264492126],[-10656150.480980603,4529591.765654128],[-10656405.796563249,4529595.1943673771],[-10656660.955670217,4529598.6094281189],[-10656915.945587298,4529602.0172843514],[-10657170.579404786,4529605.4208448613],[-10657395.488068463,4529608.4224989684],[-10657425.039224232,4529608.3472590018],[-10657679.135415217,4529607.7811615886],[-10657932.769888135,4529607.210262035],[-10658184.579332588,4529609.9230219703],[-10658436.813553607,4529612.6335049318],[-10658440.855288707,4529612.684563661],[-10658689.478758261,4529615.3592847213],[-10658870.563252799,4529617.3030367121],[-10658942.570770636,4529617.7563981581],[-10658947.6038104,4529617.796254429],[-10659196.026813973,4529619.3494856646],[-10659449.894427253,4529620.9311775286],[-10659452.966030177,4529620.9553166088],[-10659704.128959674,4529622.5191759886],[-10659958.744427143,4529624.1004580827],[-10659961.022150489,4529879.824176007],[-10659963.254890136,4530130.6137626236],[-10659963.301976249,4530135.4125486892],[-10659965.564382171,4530390.8692339109],[-10659967.765772093,4530639.3233044632],[-10659967.837600462,4530646.1929564597],[-10659970.095494689,4530900.4075427148],[-10659972.31060807,4531149.7500349097],[-10659972.361598037,4531154.4487621514],[-10659974.609176502,4531407.8030801564],[-10659976.865271667,4531662.0537945582],[-10659977.882369913,4531918.8868416566],[-10659978.894856064,4532174.6526756324],[-10659978.903783638,4532177.2216182388],[-10659979.910549827,4532430.9445475936],[-10659980.926844675,4532687.2367694303],[-10659980.936082302,4532691.2389728334],[-10659981.935621062,4532942.012954426],[-10659982.956923008,4533198.3934855778],[-10659982.979187254,4533204.1273155902],[-10659983.981639035,4533456.2201321414],[-10659985.014377099,4533715.8881258778],[-10659733.537913462,4533711.667659278],[-10659490.849904591,4533707.5909156743],[-10659482.367001146,4533707.4564182479],[-10659231.509949535,4533703.2366952254],[-10659001.501047326,4533699.3618341116],[-10658992.828729916,4533699.66028539],[-10658981.001204325,4533700.0714268135],[-10658870.78055875,4533703.8583591618],[-10658730.932146432,4533704.2351629557],[-10658491.322723167,4533704.875727728],[-10658481.388077242,4533704.8992978688],[-10658232.334157947,4533705.5584978648],[-10657983.697206413,4533706.2087159157],[-10657984.291961012,4533960.5157783469],[-10657984.881497979,4534212.8148720656],[-10657984.886719562,4534215.5037159929],[-10657985.482077833,4534470.3369903862],[-10657985.786684915,4534601.2051781854],[-10657986.856511146,4534725.3437081389],[-10657989.075992599,4534980.3691778211],[-10657991.297676835,4535235.4561611833],[-10657991.325222885,4535238.0464731455],[-10657993.528371371,4535490.5855610836],[-10657995.753660021,4535745.7542181564],[-10657996.853688115,4536001.253993989],[-10657997.934568834,4536252.3313854663],[-10657997.943302264,4536256.3736633603],[-10657999.037319103,4536511.1166142933],[-10658000.133135961,4536765.5250760298],[-10658000.234100506,4536791.3983712774],[-10658002.871195359,4537019.9608649816],[-10658005.811283698,4537274.7974863816],[-10658008.72833506,4537527.739402012],[-10658011.632965991,4537779.5788014624],[-10657756.759325027,4537779.1629783623],[-10657502.537114864,4537778.7414586749],[-10657247.578378331,4537778.3084279951],[-10656992.348637715,4537777.8679332649],[-10656992.91988424,4538034.8226247085],[-10656993.493135724,4538292.2467682231],[-10656994.069393303,4538550.142423287],[-10656994.64505301,4538808.5224057473],[-10656739.300281532,4538807.1683467962],[-10656484.397005314,4538805.8096041391],[-10656229.615165258,4538804.4395989683],[-10655973.513244152,4538803.0550472662],[-10655973.232743993,4539060.9448494883],[-10655972.949743552,4539319.2704082215],[-10655972.678959567,4539578.0706071602],[-10655972.439223077,4539804.9746852042],[-10655971.682964636,4539837.3254892156],[-10656226.598756867,4539839.6222762205],[-10656481.952340199,4539841.9156449959],[-10656737.747218555,4539844.2045831112],[-10656993.987096095,4539846.4890905255],[-10657249.793387145,4539848.7644883888],[-10657505.924342385,4539851.0350763835],[-10657762.08022554,4539853.3014885355],[-10658019.131813545,4539855.569542734],[-10658017.703694152,4540109.2638289528],[-10658017.082742209,4540219.5670679277],[-10658017.168351224,4540358.667799958],[-10658017.173581539,4540362.8513931008],[-10658017.341050718,4540616.3105859254],[-10658017.505191173,4540865.5002575656],[-10658017.512123048,4540869.6236816803],[-10658017.675887166,4541122.9401490558],[-10658017.836922379,4541371.8411954418],[-10658017.841451908,4541376.0244358154],[-10658017.998806041,4541628.8747531166],[-10658018.157660339,4541881.4731097268],[-10657762.379813019,4541880.0182308797],[-10657506.530185139,4541878.5584159819],[-10657251.100027736,4541877.084169603],[-10656995.955390621,4541875.6071375785],[-10656962.289021572,4541875.4086711854],[-10656740.932588164,4541873.7883416265],[-10656485.421037078,4541871.9146126769],[-10656230.959764224,4541870.0430317074],[-10655975.680573709,4541868.1575307539],[-10655983.2245306,4542122.6097270371],[-10655990.786510976,4542377.6329597607],[-10655990.951128196,4542383.1768885534],[-10655998.374423752,4542633.2348661991],[-10655999.936084447,4542685.8386606118],[-10656005.751002781,4542889.4206802575],[-10655751.454521965,4542888.177934017],[-10655497.134614818,4542886.9278457537],[-10655242.723004725,4542885.6671243692],[-10654988.162527578,4542884.3990614656],[-10654734.34558998,4542884.056758658],[-10654481.698664894,4542883.7091343673],[-10654227.73456209,4542883.3470839346],[-10653973.290620955,4542882.9788324647],[-10653976.618868647,4542987.0946753081],[-10653980.279161377,4543137.4299578499],[-10653982.059089052,4543210.5035757627],[-10653986.965662712,4543391.8517245492],[-10653993.845280595,4543646.2712210827],[-10654000.724097263,4543900.6521128872],[-10653753.212729776,4543899.130929742],[-10653531.977840198,4543897.7671385035],[-10653505.447177308,4543897.6382336887],[-10653497.529895432,4543897.5943333469],[-10653257.44385983,4543896.4381199554],[-10653204.062174678,4543896.1806914322],[-10653009.219590072,4543894.4916786235],[-10652996.501321999,4543894.3731010202],[-10652759.944139687,4543892.309505878],[-10652510.089439474,4543890.1245506424],[-10652500.366031291,4543890.04850013],[-10652259.65238593,4543887.9354203073],[-10652008.637383908,4543885.7259095944],[-10652020.218582051,4544140.0410680296],[-10652021.836708356,4544175.5436523277],[-10652029.764416412,4544378.8807936283],[-10652030.320151884,4544392.9879546165],[-10652040.116440233,4544644.5892941514],[-10652049.10906372,4544875.5395187652],[-10652049.856255472,4544894.8552092956],[-10651798.318975138,4544898.2982870424],[-10651545.972686863,4544901.7460542396],[-10651292.71117145,4544905.1948394105],[-10651038.494884569,4544908.6497074021],[-10650783.952831883,4544912.1064773342],[-10650529.72523158,4544915.5508389557],[-10650273.525918959,4544919.0149620939],[-10650015.156371316,4544922.5012532808],[-10650020.62580522,4545173.2655963656],[-10650025.573573476,4545400.1404980989],[-10650026.174069135,4545429.4598676544],[-10650028.643436011,4545547.8723452929],[-10650030.234531101,4545681.293874599],[-10650033.208454942,4545930.5884779617],[-10649779.162267322,4545928.4170869682],[-10649526.213010814,4545926.2489840686],[-10649523.375026086,4545926.2275955686],[-10649272.649264896,4545924.0689808996],[-10649019.019044518,4545921.8785947431],[-10649014.018032441,4545921.8345486652],[-10648765.59976102,4545919.6852955539],[-10648510.774399791,4545917.4722484061],[-10648505.156695738,4545917.4308641106],[-10648256.024523491,4545915.2611006992],[-10647996.812239647,4545912.9957747068],[-10647738.682052134,4545908.1915369686],[-10647495.99319409,4545903.6684793839],[-10647485.358759522,4545903.4618654568],[-10647232.249607781,4545898.7510625608],[-10646992.652720524,4545894.282825808],[-10646980.828350656,4545894.0630476065],[-10646728.343400152,4545889.3421154339],[-10646486.734555699,4545884.8188070403],[-10646476.974402426,4545884.6363758575],[-10646227.272475921,4545879.9512716029],[-10646157.493266685,4545878.6403235001],[-10645978.135913776,4545879.5976194926],[-10645972.124120636,4545623.1643377971],[-10645969.106858287,4545494.474402043],[-10645964.993571486,4545366.544527797],[-10645956.750473116,4545109.6874287687],[-10645948.502468839,4544852.6628190009],[-10645940.294420613,4544597.1769457329],[-10645932.119517153,4544342.6971748853],[-10645926.748354493,4544175.6202009572],[-10645926.375307502,4544087.6714778384]]]},"attributes":{"objectid":803,"field_kid":"1000152618","approxacre":51646,"field_name":"BUFFALO-VILAS","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1446061.52,"maxoilwell":345,"lastoilpro":2301.27,"lastoilwel":233,"lastodate":"2-2009","cumm_gas":2504125,"maxgaswell":22,"lastgaspro":278,"lastgaswel":3,"lastgdate":"2-2009","avgdepth":915.55312500000002,"avgdepthsl":-44.821874999999999,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000152618}},{"geometry":{"rings":[[[-10591686.42425034,4705622.3601703998],[-10591948.433770524,4705623.0530732423],[-10591948.334537819,4705882.7696386948],[-10591948.235605624,4706142.6276380448],[-10591948.12816387,4706402.6198793966],[-10591948.020421896,4706662.7142163552],[-10591947.907073671,4706922.9314949838],[-10591947.792924587,4707183.1910715755],[-10591685.853796789,4707182.1991900569],[-10591423.105746618,4707181.1977968495],[-10591161.440530771,4707180.1804434769],[-10590900.233737404,4707179.1585838711],[-10590900.711025715,4706919.052514758],[-10590901.186211903,4706659.108873304],[-10590901.656893091,4706399.2189600095],[-10590902.127874792,4706139.4101667497],[-10590901.963832602,4705879.7850004919],[-10590901.799189838,4705620.2611287106],[-10591163.410055676,4705620.9644527463],[-10591424.854531638,4705621.6618619729],[-10591686.42425034,4705622.3601703998]]]},"attributes":{"objectid":842,"field_kid":"1000147601","approxacre":241,"field_name":"EUDORA SOUTHWEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1647,"maxoilwell":2,"lastoilpro":1,"lastoilwel":1,"lastodate":"9-1995","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":727.25,"avgdepthsl":-181.75,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147601}},{"geometry":{"rings":[[[-10584069.125421036,4447780.0470338445],[-10583915.783018172,4447747.264102743],[-10583884.585041897,4447747.5806966322],[-10583647.607168756,4447749.9937377283],[-10583567.170712784,4447750.8107719747],[-10583410.744129011,4447752.4425352383],[-10583173.446889369,4447754.9221869148],[-10582935.325199245,4447757.4027029034],[-10582933.817975182,4447500.575665582],[-10582932.311951799,4447243.7277641864],[-10582932.244895833,4447233.2685939549],[-10582930.747576026,4446976.0627684584],[-10582929.223846177,4446714.2182890829],[-10582929.044868946,4446686.6557322768],[-10582928.350919085,4446566.674123955],[-10582927.575565873,4446428.5804948052],[-10582927.570245968,4446427.7743162708],[-10582926.097129064,4446192.5840423414],[-10582925.966880543,4446169.269884076],[-10582924.383243026,4445916.9412951879],[-10582922.901800714,4445680.8646863867],[-10582921.484392446,4445430.7656202391],[-10582920.071399581,4445181.2885321295],[-10582919.964042326,4445161.7771135541],[-10582918.620420216,4444923.4806339396],[-10582917.066625757,4444648.344747399],[-10582917.03425023,4444640.2589868763],[-10582915.626937099,4444389.2708732272],[-10582914.164190136,4444128.3624589387],[-10582914.133072577,4444123.5852562319],[-10582912.720063036,4443873.2303985627],[-10582911.263569899,4443615.0890465565],[-10582913.154096909,4443360.2096767537],[-10582913.548144758,4443307.1280576522],[-10582913.552100876,4443163.8595313141],[-10582913.505483057,4443113.3043823959],[-10582913.512391184,4443107.4617648358],[-10582913.368597418,4442854.2362312917],[-10582913.22891324,4442607.1523795631],[-10582913.207702525,4442602.1079028556],[-10582913.06531848,4442349.3704231596],[-10582912.925505586,4442100.629474205],[-10582912.933353409,4442097.04647478],[-10582912.785076719,4441845.1523272134],[-10582912.638209362,4441593.7161602881],[-10582909.570673181,4441342.6047397424],[-10582906.519378403,4441092.8509176783],[-10582903.450234722,4440841.4763062308],[-10582900.372069295,4440589.4734264202],[-10582897.314128397,4440337.572067772],[-10582894.25217665,4440085.3411056791],[-10582891.179406151,4439832.7781816535],[-10582888.102224259,4439579.8815644654],[-10583139.267166991,4439581.9722379856],[-10583390.839880688,4439584.0607881565],[-10583642.831377996,4439586.1429531062],[-10583895.229244657,4439588.2232453832],[-10584148.938126406,4439590.3093279088],[-10584402.407230595,4439592.3893894367],[-10584655.570680982,4439594.4581638528],[-10584889.353827845,4439596.3623749204],[-10584908.443696005,4439596.5667963857],[-10585160.737811809,4439596.8600232229],[-10585413.506375821,4439597.145110487],[-10585666.679307036,4439597.4216808537],[-10585912.517259927,4439597.68357821],[-10585920.216459958,4439597.7458927901],[-10586172.500291007,4439599.7360544279],[-10586424.570174361,4439601.7204461973],[-10586676.421805048,4439603.6986919576],[-10586928.058687098,4439605.6692874962],[-10586930.550473468,4439858.2783849603],[-10586933.04235941,4440110.883099243],[-10586933.057224162,4440113.8829975957],[-10586935.527437134,4440363.4963425538],[-10586938.02713114,4440616.1016928535],[-10586938.085680334,4440621.2445146153],[-10586940.53745375,4440869.7670542458],[-10586943.043778226,4441123.8724060431],[-10586943.067266867,4441127.7515842803],[-10586945.532388726,4441378.4177797846],[-10586948.040328061,4441633.4042109828],[-10586950.437829254,4441887.7541928971],[-10586952.835828234,4442141.9585656365],[-10586952.84678969,4442145.0375303719],[-10586955.098568076,4442396.0085392129],[-10586957.375322033,4442649.956142744],[-10586959.65137927,4442904.1898406427],[-10586961.922020253,4443157.8209618917],[-10586964.102878952,4443400.207108831],[-10586965.097094569,4443410.7877824809],[-10586970.22788428,4443465.4131941795],[-10586971.830464788,4443663.0050277254],[-10586935.776557758,4443935.5472642742],[-10586900.266719298,4444203.9637698373],[-10586899.624556225,4444208.8967549745],[-10586895.113186741,4444242.8433030527],[-10586860.172242727,4444481.7255061734],[-10586821.654063163,4444745.0615227092],[-10586820.323469739,4444754.026380619],[-10586812.967778198,4444804.300763024],[-10586809.176308438,4445024.9843750224],[-10586804.651570309,4445288.3013951825],[-10586804.540347151,4445294.9224578859],[-10586799.952708969,4445562.7634043638],[-10586798.874064611,4445625.7157191094],[-10586794.302589275,4445713.8108024802],[-10586791.312487841,4445830.1488495804],[-10586789.827949457,4445891.4721595151],[-10586790.948248709,4446086.9348995006],[-10586792.337106185,4446329.499609191],[-10586792.420335563,4446344.1829169309],[-10586792.460090186,4446351.0261613922],[-10586793.723847004,4446602.6520524407],[-10586794.000038363,4446657.5701904092],[-10586795.564964807,4446841.3913452895],[-10586795.717769688,4446862.0707048625],[-10586795.776191184,4446871.7683275007],[-10586797.506856436,4447121.5372340176],[-10586799.308668736,4447381.7127555469],[-10586799.349842073,4447389.6332618296],[-10586801.122702468,4447642.3742707521],[-10586802.959680729,4447904.1978856241],[-10586555.910144195,4447903.0300881723],[-10586336.047864042,4447901.9838312203],[-10586312.018851494,4447901.9655946558],[-10586308.754787026,4447901.9605191648],[-10586061.557194581,4447901.7350015631],[-10585819.167647112,4447901.5076866364],[-10585814.329767656,4447901.5069743767],[-10585567.288655303,4447901.2625160292],[-10585324.350574832,4447901.0159970485],[-10585320.495929254,4447901.0110366344],[-10585300.634623317,4447900.9971387153],[-10585073.924054824,4447900.5736388434],[-10584827.580543209,4447900.1066380115],[-10584788.684847651,4447897.8173043272],[-10584591.888380388,4447867.3358155861],[-10584518.571035532,4447855.9777530953],[-10584428.486856828,4447832.8159205522],[-10584356.029165817,4447825.2893616548],[-10584120.295571474,4447788.1162697701],[-10584069.125421036,4447780.0470338445]]]},"attributes":{"objectid":937,"field_kid":"1000149386","approxacre":5100,"field_name":"CHETOPA TOWNSITE","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":100.27857143,"avgdepthsl":-729.32857143000001,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149386}},{"geometry":{"rings":[[[-10558530.896389022,4588815.3525179401],[-10558789.219126513,4588812.8908205135],[-10558787.016204035,4589064.9134192131],[-10558784.809773291,4589317.3940848904],[-10558782.598833924,4589570.2434554463],[-10558780.383185342,4589823.5023784162],[-10558522.57321954,4589825.1551798154],[-10558265.050286453,4589826.7979327273],[-10558007.621061923,4589828.438777335],[-10557750.357229084,4589830.0711004119],[-10557752.096948953,4589577.5822212072],[-10557753.781733399,4589332.9541898072],[-10557753.821347257,4589325.506163273],[-10557755.562761189,4589073.873922376],[-10557757.30066712,4588822.6679189662],[-10558014.947521335,4588820.2411942389],[-10558272.800814755,4588817.8062028708],[-10558530.896389022,4588815.3525179401]]]},"attributes":{"objectid":969,"field_kid":"1000149643","approxacre":157,"field_name":"LOST CREEK WEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":203,"maxoilwell":2,"lastoilpro":119,"lastoilwel":2,"lastodate":"10-1987","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":602,"avgdepthsl":-438,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149643}},{"geometry":{"rings":[[[-10580331.177393459,4685336.9536138941],[-10580591.43082246,4685338.1962171122],[-10580590.640531903,4685597.982992853],[-10580589.850641817,4685857.7630417682],[-10580330.347673846,4685856.5877799336],[-10580071.610383274,4685855.4096902711],[-10580071.65041302,4685595.5648655808],[-10580071.690643013,4685335.7090815511],[-10580331.177393459,4685336.9536138941]]]},"attributes":{"objectid":972,"field_kid":"1000149147","approxacre":40,"field_name":"MACY","status":"Abandoned","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1327.3099999999999,"maxoilwell":2,"lastoilpro":66.629999999999995,"lastoilwel":1,"lastodate":"5-2005","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149147}},{"geometry":{"rings":[[[-10578132.713118197,4550160.3995087482],[-10578132.633151086,4549900.7171296198],[-10578127.151956314,4549900.7009285185],[-10578124.625548683,4549644.6248894921],[-10578122.093741527,4549387.7718099523],[-10578119.563743221,4549130.1321204668],[-10578117.028045038,4548871.7165192617],[-10578114.489545519,4548613.0842795838],[-10578111.954246977,4548354.7697938671],[-10578109.388229361,4548094.5671914648],[-10578106.809006415,4547833.2193078604],[-10578101.409705922,4547833.1472548498],[-10578095.202015962,4547571.7623734958],[-10578088.996727809,4547310.4862572802],[-10578082.802351316,4547049.310412745],[-10578076.610977409,4546788.2330592973],[-10578070.449521665,4546529.0440807492],[-10578064.305380153,4546270.5138449762],[-10578058.171549954,4546012.0423250934],[-10578052.044525245,4545753.841238426],[-10578059.786216481,4545753.8976976192],[-10578305.698842596,4545755.8496381957],[-10578560.589680059,4545757.8670261595],[-10578568.370516241,4545757.9244983075],[-10578816.303062193,4545759.8877049703],[-10579074.056887744,4545761.9221821008],[-10579319.54701243,4545765.7442935798],[-10579565.120532893,4545769.5632404247],[-10579575.082773684,4545769.7182114804],[-10579812.066229159,4545773.4006732386],[-10580040.587766852,4545776.9457630543],[-10580059.870610313,4545777.3903124658],[-10580075.38482596,4545777.7612991557],[-10580307.767782172,4545783.215935044],[-10580558.296075502,4545789.0922062257],[-10580571.431059046,4545789.3964653751],[-10580811.268976053,4545795.0221655937],[-10581067.158425765,4545801.0178418811],[-10581071.044771116,4545664.2000236195],[-10581072.56972426,4545652.4299439183],[-10581073.913849831,4545550.3392589744],[-10581077.251771362,4545297.0505732298],[-10581077.485595187,4545279.0747819357],[-10581080.610838817,4545041.2670642938],[-10581084.002464356,4544783.1003379542],[-10581084.257827729,4544763.4118151395],[-10581087.424853664,4544521.6522529805],[-10581090.842931524,4544260.9669692218],[-10581090.98728184,4544251.1834626887],[-10581092.021212885,4544174.1505475678],[-10581084.091314025,4544174.9671954038],[-10581085.024909263,4544001.3389552208],[-10581086.413861742,4543742.9036978288],[-10581338.155076185,4543740.5962561406],[-10581593.768837936,4543738.2448768811],[-10581602.387636339,4543738.1721903794],[-10581849.076347962,4543735.9014753951],[-10582105.452384938,4543733.5351577746],[-10582114.904340131,4543733.4504424464],[-10582120.50377094,4543733.407513476],[-10582364.649565052,4543740.157729554],[-10582621.33396459,4543747.2457055468],[-10582875.969910715,4543754.262536576],[-10583127.600804513,4543761.1910060868],[-10583127.273685588,4543505.0557472864],[-10583126.947070057,4543249.1709926901],[-10583126.957439125,4543245.4430570388],[-10583126.630368469,4542993.5145695796],[-10583126.300254123,4542738.0936768353],[-10583379.742116211,4542736.4372731959],[-10583633.195891846,4542734.7728949552],[-10583886.697722614,4542733.1073780376],[-10584140.251012353,4542731.4341396568],[-10584394.17002799,4542730.270813209],[-10584648.737287968,4542729.0957133323],[-10584903.977720872,4542727.903776329],[-10585159.807130083,4542726.7032307927],[-10585414.468293134,4542725.1244313661],[-10585668.955956811,4542723.5395564195],[-10585923.278630955,4542721.9551887168],[-10586177.429407587,4542720.3665177915],[-10586432.162455114,4542718.966088349],[-10586686.840239055,4542717.5589501932],[-10586941.404392347,4542716.1424449831],[-10587196.015399326,4542714.717965031],[-10587196.192507405,4542698.0204451242],[-10587451.256463571,4542724.7087414553],[-10587707.555640506,4542751.5173596069],[-10587710.205086615,4542751.7892753957],[-10587964.189302722,4542778.3622444347],[-10588222.047373399,4542805.3356808685],[-10588477.752569418,4542832.0756190959],[-10588733.656294305,4542858.8290373655],[-10588989.753542207,4542885.5875805896],[-10589246.063335124,4542912.3637815658],[-10589245.914638821,4542927.1474011587],[-10589497.579213591,4542929.8945168443],[-10589749.607606238,4542932.6372012403],[-10590001.928234508,4542935.3733023386],[-10590254.533089252,4542938.1053520311],[-10590251.529290793,4543195.5585344378],[-10590248.51799117,4543453.6531055411],[-10590245.506489797,4543711.632784863],[-10590242.496687531,4543969.3853906589],[-10590249.362774661,4543969.4627338778],[-10590247.203445854,4544196.3954293216],[-10590245.036945825,4544423.8182431515],[-10590242.858439906,4544650.3555432986],[-10590240.684443064,4544876.4595482256],[-10590238.520152599,4545103.1106471466],[-10590236.356664555,4545329.5997893214],[-10590234.188075474,4545555.550887025],[-10590232.030709542,4545780.3486194527],[-10590227.743085254,4545780.3196309507],[-10589979.578872904,4545778.4625374237],[-10589725.160377664,4545776.5498680724],[-10589719.00761137,4545776.4979639677],[-10589468.703941932,4545774.6144103808],[-10589292.763777718,4545773.2870986434],[-10589210.356076218,4545767.8673479389],[-10588952.160627114,4545767.7428012574],[-10588698.438616015,4545767.6125465808],[-10588695.659924528,4545767.6150851855],[-10588440.758358756,4545767.4731833013],[-10588187.475552268,4545767.324439982],[-10587932.554964758,4545767.1696220823],[-10587677.623464772,4545767.007966293],[-10587423.080210766,4545766.8397250017],[-10587168.805264993,4545766.6629990498],[-10586913.999795355,4545768.1434541736],[-10586662.692343611,4545769.5970568154],[-10586659.117237294,4545769.6121333251],[-10586404.173008431,4545771.0799264805],[-10586153.995254409,4545772.5141531145],[-10586155.810597342,4546028.7038837802],[-10586157.630341863,4546285.2941287374],[-10586159.448182527,4546542.079385248],[-10586161.268623833,4546799.1364119509],[-10586163.105981357,4547056.563504518],[-10586164.945239255,4547314.2020021416],[-10586166.76867711,4547572.0587597424],[-10586168.592813909,4547830.1310072402],[-10586161.244874757,4547830.1341907559],[-10585911.897596939,4547830.3370390525],[-10585653.763627591,4547830.540287883],[-10585647.449275548,4547830.5395427328],[-10585394.188202834,4547830.730494828],[-10585133.175026821,4547830.9210851071],[-10584877.715015387,4547832.6299794326],[-10584621.456987463,4547834.3379894141],[-10584368.003580859,4547836.0247154441],[-10584116.134494022,4547837.693580023],[-10584111.882710576,4547837.723353466],[-10584113.688445223,4548094.9958074335],[-10584115.497679254,4548352.8050683886],[-10584117.32552989,4548611.1658691186],[-10584119.157781264,4548870.0275845528],[-10584121.662900338,4549129.4758786755],[-10584124.174422491,4549389.4178197943],[-10584126.697754608,4549649.7769331532],[-10584129.222187711,4549910.1706815222],[-10584130.053303607,4550167.4096113173],[-10584130.883019501,4550424.4696860369],[-10584131.715044888,4550680.748872336],[-10584132.546374463,4550936.4596998896],[-10584132.839687064,4551192.0724163204],[-10584133.135305343,4551447.3423610535],[-10584133.44043895,4551702.1129075186],[-10584133.744674975,4551956.4933640845],[-10583877.833669517,4551958.1940249586],[-10583622.96926612,4551959.8817596585],[-10583367.612597438,4551961.5678488687],[-10583112.353741147,4551963.2488700151],[-10583111.894791851,4552219.3333469694],[-10583111.44590064,4552470.0616509598],[-10583111.432642655,4552474.9888794618],[-10583110.97139824,4552730.2217715979],[-10583110.522929113,4552978.4741975376],[-10583110.492937732,4552985.0365541968],[-10582853.939613488,4552985.2531834887],[-10582597.501521645,4552985.4628431173],[-10582341.158138545,4552985.6747833798],[-10582084.90846313,4552985.8784868596],[-10581829.568132099,4552986.0710368659],[-10581575.931157239,4552986.2555990964],[-10581321.859983739,4552986.4428235646],[-10581065.243487259,4552986.6260001315],[-10581063.970039714,4553239.8085039444],[-10581062.667511117,4553498.5203507161],[-10581061.385428607,4553754.6204886241],[-10581060.112474732,4554008.6257763663],[-10580818.235297633,4554010.2738026604],[-10580653.335022541,4554011.3946748395],[-10580575.779355921,4554011.9209438274],[-10580332.636024926,4554013.5607370175],[-10580143.719769496,4554014.8321042461],[-10580145.031951897,4554273.2167550856],[-10580146.298461337,4554522.3726723492],[-10580146.350456102,4554529.9161702469],[-10580147.652055595,4554784.9136224724],[-10580148.909779239,4555031.2563657323],[-10580148.942757143,4555038.2219142234],[-10580150.241160685,4555292.3314405801],[-10580151.509580763,4555540.5241612885],[-10580151.523451673,4555545.7541232659],[-10580152.826672778,4555798.4744485458],[-10580154.123692803,4556050.4976890236],[-10579899.400179213,4556051.6796648707],[-10579644.046041517,4556052.8582204394],[-10579640.866590433,4556052.8659619102],[-10579388.040055282,4556054.0386794535],[-10579131.383221665,4556055.2220559102],[-10579125.936266609,4556055.2483101478],[-10578874.045606393,4556056.3947873218],[-10578616.055942403,4556057.564732288],[-10578611.562181976,4556057.5837587444],[-10578357.426944325,4556058.7280881787],[-10578098.143094309,4556059.8880238719],[-10578098.477984913,4556316.1542245317],[-10578098.812173419,4556572.576824612],[-10578098.826864999,4556575.5309570674],[-10578099.161077447,4556829.1650894089],[-10578099.499668522,4557085.8900020104],[-10577844.335772363,4557085.0716262162],[-10577588.552565105,4557084.2460267209],[-10577333.171319425,4557083.419031593],[-10577077.844235992,4557082.5843036128],[-10577078.070885397,4556826.172173636],[-10577078.298434457,4556569.9289996736],[-10577078.514769331,4556313.8448821418],[-10577078.730702462,4556057.9177811202],[-10577080.978981251,4555800.606776786],[-10577083.225056011,4555543.4818667034],[-10577085.460517192,4555286.5283347145],[-10577087.694375124,4555029.749083017],[-10577089.659623019,4554773.1643774062],[-10577091.622667234,4554516.7231285693],[-10577093.575398277,4554260.4466166859],[-10577095.528528407,4554004.339518412],[-10577349.572765416,4554004.1180384709],[-10577580.045733908,4554003.9124663156],[-10577603.414570028,4554003.8890821515],[-10577857.042929549,4554003.6578453286],[-10578086.461186931,4554003.4435319398],[-10578091.919643611,4553747.8800863633],[-10578097.365380693,4553492.9140779972],[-10578102.814723859,4553237.7343347967],[-10578108.262765195,4552982.6078626635],[-10578113.681960601,4552728.9886863008],[-10578119.05838969,4552477.392783965],[-10578124.463566367,4552224.1083915271],[-10578129.87615525,4551970.4057081491],[-10578130.651645364,4551713.6178599559],[-10578131.430048099,4551455.7539740419],[-10578131.442084143,4551453.160101695],[-10578132.206057679,4551196.777769113],[-10578132.980975525,4550936.6976897046],[-10578132.887681194,4550678.3863389818],[-10578132.794991504,4550419.6214075619],[-10578132.713118197,4550160.3995087482]]]},"attributes":{"objectid":1003,"field_kid":"1000146313","approxacre":12560,"field_name":"SAVONBURG","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1671027.9199999999,"maxoilwell":275,"lastoilpro":322.00999999999999,"lastoilwel":36,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":289,"avgdepthsl":-632,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146313}},{"geometry":{"rings":[[[-10561599.450607598,4516129.3629290843],[-10561852.232556932,4516131.6695303926],[-10561849.455779197,4516386.8221963076],[-10561846.664394498,4516643.4230441935],[-10561843.857591983,4516900.0761509547],[-10561841.053189358,4517156.3918099757],[-10561836.263784699,4517156.3323941836],[-10561587.576359503,4517153.3853523955],[-10561462.79304179,4517151.9036805369],[-10561333.822105119,4517149.4941496812],[-10561330.141574731,4517149.4166898653],[-10561079.728755606,4517144.7284306753],[-10560825.261877507,4517139.9581616865],[-10560828.685571121,4516883.9245286947],[-10560831.96847374,4516638.3815777702],[-10560832.103167566,4516629.4200635292],[-10560835.509253932,4516375.4607265545],[-10560838.753836449,4516133.5928334836],[-10560838.893220339,4516122.3846316952],[-10561092.751705708,4516124.7206687424],[-10561346.274105223,4516127.0468520923],[-10561599.450607598,4516129.3629290843]]]},"attributes":{"objectid":1026,"field_kid":"1031632760","approxacre":159,"field_name":"Girard Northwest","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1031632760}},{"geometry":{"rings":[[[-10609250.948516943,4447832.9384558322],[-10609251.746221516,4447576.5666998727],[-10609252.499317521,4447334.756677594],[-10609252.540238706,4447321.9132432546],[-10609253.327965474,4447068.9741984699],[-10609254.049229356,4446837.8220201675],[-10609254.176237747,4446833.8873355463],[-10609254.657035872,4446817.7514672261],[-10609262.206620943,4446567.777983834],[-10609269.51860884,4446325.6788918236],[-10609269.709666023,4446319.1599518256],[-10609277.1802867,4446071.8213900216],[-10609284.611074656,4445825.7904297709],[-10609544.312907688,4445826.6052522575],[-10609788.850981057,4445827.3662671568],[-10609800.978524677,4445827.405173799],[-10610054.549658144,4445828.1884364868],[-10610293.168376705,4445828.9195291642],[-10610305.061248595,4445828.9604349015],[-10610556.511423999,4445829.5419384027],[-10610796.810586592,4445830.0904624853],[-10610806.520330299,4445830.110349644],[-10611055.06053577,4445830.6704340121],[-10611302.142452471,4445831.2223172626],[-10611303.395991649,4446083.0551774707],[-10611304.656552376,4446336.3205927657],[-10611304.758649476,4446355.1890670909],[-10611305.928239772,4446591.05717545],[-10611307.199940827,4446847.2507312996],[-10611307.295020407,4446865.1312681101],[-10611308.490780346,4447105.1826109374],[-10611309.781331317,4447364.3762443047],[-10611309.841210907,4447376.0091556609],[-10611311.077200536,4447624.8628358897],[-10611312.377186509,4447886.6335741002],[-10611059.757090393,4447880.4212016389],[-10610805.654076703,4447874.1671335641],[-10610786.125165043,4447873.6811400754],[-10610550.100382719,4447867.8688618857],[-10610293.078888675,4447861.5330350799],[-10610281.643648291,4447861.2506562583],[-10610267.126138639,4447860.8474946935],[-10610032.228654174,4447854.4048568374],[-10609771.60888559,4447847.2515977165],[-10609755.225815762,4447846.7973182891],[-10609511.106652381,4447840.0914447727],[-10609250.948516943,4447832.9384558322]]]},"attributes":{"objectid":1128,"field_kid":"1000149392","approxacre":647,"field_name":"ELM GROVE","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":49863,"maxgaswell":1,"lastgaspro":89,"lastgaswel":1,"lastgdate":"5-2005","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"GAS","field_kidn":1000149392}},{"geometry":{"rings":[[[-10609250.948516943,4447832.9384558322],[-10609251.617889309,4448087.1384407226],[-10609252.284248868,4448340.4024657318],[-10609252.304431995,4448346.4856865145],[-10609252.947195295,4448592.7433862695],[-10609253.604025049,4448844.1197331203],[-10609000.495474705,4448845.258637324],[-10608747.281302156,4448846.3928965982],[-10608495.262813626,4448847.5235549472],[-10608244.006106799,4448848.6430710619],[-10608242.845932139,4448595.3117423682],[-10608241.680742415,4448341.0701303761],[-10608240.512639735,4448085.8861841084],[-10608239.3390212,4447829.7702585896],[-10608491.7482244,4447830.5698511004],[-10608741.162860824,4447831.3560506897],[-10608744.484606246,4447831.3649374787],[-10608997.552171364,4447832.1552669415],[-10609250.948516943,4447832.9384558322]]]},"attributes":{"objectid":1129,"field_kid":"1000149392","approxacre":160,"field_name":"ELM GROVE","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":49863,"maxgaswell":1,"lastgaspro":89,"lastgaswel":1,"lastgdate":"5-2005","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"GAS","field_kidn":1000149392}},{"geometry":{"rings":[[[-10608244.006106799,4448848.6430710619],[-10608246.038581919,4449101.0747429347],[-10608248.063738735,4449352.5455622748],[-10608250.090287464,4449603.0686356435],[-10608252.109217247,4449852.60098268],[-10608250.652623497,4450102.0050983625],[-10608249.19392764,4450351.4357990492],[-10608247.729031008,4450601.5001836093],[-10608246.260635467,4450852.0729345819],[-10607995.250613745,4450854.6657384979],[-10607745.112100542,4450857.2446405608],[-10607493.885328332,4450859.8256451935],[-10607242.230260734,4450862.4045053469],[-10607242.144887058,4450874.7175479624],[-10606989.531108556,4450877.0697540874],[-10606736.819316778,4450879.4160606749],[-10606485.442970298,4450881.7469730275],[-10606234.915005555,4450884.064609996],[-10606235.396746671,4450630.7968061445],[-10606235.881277436,4450376.2177497447],[-10606236.352878988,4450120.2606542539],[-10606236.82777028,4449862.9446925223],[-10606246.464122474,4449862.9651860921],[-10606245.720719406,4449607.1209774045],[-10606244.979725637,4449351.919843439],[-10606244.246248791,4449097.5266019488],[-10606243.514381409,4448843.8813478211],[-10606493.296182055,4448842.8731982047],[-10606742.558381325,4448841.8598888908],[-10606991.327109443,4448840.8399151219],[-10607239.595558558,4448839.8165387763],[-10607239.677888246,4448853.0401121182],[-10607490.912669597,4448851.9486973798],[-10607742.048436368,4448850.8505049814],[-10607993.076878989,4448849.7501768479],[-10608244.006106799,4448848.6430710619]]]},"attributes":{"objectid":1130,"field_kid":"1000149392","approxacre":631,"field_name":"ELM GROVE","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":49863,"maxgaswell":1,"lastgaspro":89,"lastgaswel":1,"lastgdate":"5-2005","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"GAS","field_kidn":1000149392}},{"geometry":{"rings":[[[-10617583.797840584,4496814.7379097575],[-10617583.935982797,4496561.5753995227],[-10617584.073161434,4496311.0438293843],[-10617584.085516308,4496306.8979333267],[-10617584.235367876,4496053.4620907474],[-10617584.382706471,4495806.3240043577],[-10617584.391731495,4495800.3534755297],[-10617584.536393736,4495548.0849702144],[-10617584.677022178,4495300.7765558911],[-10617584.678860813,4495296.3327733828],[-10617584.830145514,4495045.1136079757],[-10617584.979235183,4494794.4206308192],[-10617840.825695535,4494793.7260016538],[-10618097.396882471,4494793.022057143],[-10618104.608306058,4494792.9929168047],[-10618354.71422025,4494792.2965743802],[-10618612.757285882,4494791.5709751919],[-10618621.449798625,4494791.548280892],[-10618871.777866321,4494790.8302674219],[-10619131.398431083,4494790.0792345777],[-10619137.83817485,4494790.0638194671],[-10619391.751231188,4494789.3316137362],[-10619652.388555882,4494788.5745457793],[-10619905.388820145,4494791.609839729],[-10619980.360129895,4494792.5072728191],[-10620154.153815534,4494791.6538014309],[-10620158.736541551,4494791.6393700792],[-10620408.728019588,4494790.4054584326],[-10620411.994945355,4494790.4149521515],[-10620658.914644856,4494791.1326767374],[-10620665.214229234,4494791.1529212408],[-10620918.198144333,4494791.8800502233],[-10621166.021774087,4494792.5849334765],[-10621171.039296376,4494792.6047831355],[-10621293.731620528,4494792.9638874456],[-10621423.389076956,4494792.4175594458],[-10621676.09685548,4494791.348003231],[-10621677.631703066,4494536.0395138161],[-10621679.163351545,4494281.0829915125],[-10621680.692998091,4494026.1208141316],[-10621680.865455853,4493997.2949009826],[-10621679.783864222,4493771.3229238326],[-10621678.662114955,4493535.8745213216],[-10621678.666193979,4493516.6913537709],[-10621678.715561273,4493262.566419174],[-10621678.777848367,4493008.8757492937],[-10621678.797681944,4492924.7899634689],[-10621682.671313291,4492755.5208405228],[-10621514.912388811,4492755.5525171496],[-10621262.078537256,4492755.5973075917],[-10621167.3649128,4492756.1743413527],[-10621009.570876133,4492757.121450603],[-10620756.451717246,4492758.6366406688],[-10620666.77464262,4492759.1675035749],[-10620654.528862929,4492759.2389030224],[-10620503.448191393,4492760.1960542398],[-10620250.327332549,4492761.7930108979],[-10620144.708059302,4492762.4535570424],[-10619997.04909436,4492763.3763590716],[-10619742.344628464,4492764.9648542041],[-10619637.121307513,4492765.613059001],[-10619487.880843673,4492766.9982160423],[-10619228.752138674,4492769.4005353861],[-10619124.931018773,4492770.0279709892],[-10618983.031029038,4492770.8879817966],[-10618729.461259976,4492772.4196726391],[-10618611.753487928,4492773.1385184461],[-10618475.741720522,4492773.9590470297],[-10618223.492559943,4492775.4800468395],[-10618096.245198078,4492776.2453825595],[-10617970.822919726,4492776.9951199163],[-10617718.808327602,4492778.4952093186],[-10617714.878741568,4492778.5083862022],[-10617580.834485874,4492776.8512604544],[-10617467.312679376,4492776.5806518989],[-10617216.154334653,4492775.9761225432],[-10617215.841744915,4492511.8621924818],[-10617215.532811735,4492251.3710811306],[-10617215.214937367,4491988.7589019239],[-10617214.898661623,4491725.9396323953],[-10617214.654628031,4491515.4691779353],[-10617214.485076154,4491463.2338861264],[-10617213.635590758,4491200.4155353718],[-10617212.785105469,4490937.7089396473],[-10617211.931709584,4490674.5268517369],[-10617221.647214003,4490419.562683396],[-10617231.379534397,4490164.1695207702],[-10617231.524442034,4490160.1690126089],[-10617241.133668739,4489907.8130997568],[-10617250.926738035,4489650.5900950655],[-10617251.114885183,4489645.8976850081],[-10617251.594749376,4489633.1636005994],[-10617250.762109499,4489392.5496821553],[-10617250.26998225,4489250.1342951898],[-10617250.626908034,4489134.0649754722],[-10617250.628172424,4489131.5083053224],[-10617251.403240262,4488874.9575607283],[-10617252.186476678,4488615.583624864],[-10617252.138766712,4488356.5112692118],[-10617252.090959026,4488097.6114022397],[-10617252.045261797,4487839.2735090461],[-10617252.000571907,4487581.3692297256],[-10617251.952286774,4487324.0851495983],[-10617251.904108834,4487067.2953034742],[-10617251.863146417,4486811.0136318719],[-10617251.820990022,4486555.2485336084],[-10617124.7224699,4486560.0280071562],[-10617000.620935531,4486561.5320078358],[-10616767.343361652,4486564.356755062],[-10616749.967561228,4486564.5762399798],[-10616499.720352719,4486567.5927775484],[-10616280.418987233,4486570.2326219119],[-10616249.872903006,4486570.6064254297],[-10616006.092602691,4486573.5347865708],[-10615791.676934196,4486576.1051940518],[-10615762.711260051,4486576.4493034566],[-10615525.351114256,4486579.2906205999],[-10615299.618285786,4486581.9876722125],[-10615047.691540077,4486583.8232467137],[-10614794.936946645,4486585.6579290228],[-10614787.928419447,4486585.7110960837],[-10614541.372425992,4486587.4893270107],[-10614286.99957994,4486589.3168111406],[-10614278.331752207,4486589.3766292874],[-10614031.800287722,4486591.1400034139],[-10613775.7818578,4486592.9641923057],[-10613769.247874172,4486593.0132106515],[-10613518.955202768,4486594.7944145454],[-10613261.308208575,4486596.6200931817],[-10613267.065782802,4486341.770827055],[-10613272.691306895,4486092.7887490075],[-10613272.818153186,4486086.9458677182],[-10613278.565319685,4485832.1430728985],[-10613284.136918817,4485585.1387652606],[-10613284.305580556,4485577.3747792486],[-10613290.050048277,4485322.6254987363],[-10613295.660063732,4485073.7902952265],[-10613295.788711254,4485067.8893126575],[-10613301.538889617,4484813.1813273104],[-10613307.288469573,4484558.5072053848],[-10613306.348915227,4484300.0299581857],[-10613305.405549653,4484041.1718445225],[-10613305.361903235,4484029.577359776],[-10613304.450063322,4483781.9336475469],[-10613303.494770348,4483522.3141366532],[-10613303.435840601,4483506.8367912872],[-10613302.54427577,4483262.2992421146],[-10613301.595676105,4483001.8798045227],[-10613301.551728973,4482990.2677103104],[-10613300.640561994,4482741.0736010289],[-10613299.687042838,4482479.8856949909],[-10613551.123784211,4482479.4080778183],[-10613802.779877406,4482478.922030733],[-10614054.650617164,4482478.4357348932],[-10614306.740808874,4482477.9412608743],[-10614559.05115331,4482477.4364690064],[-10614811.571238566,4482476.9245057488],[-10615064.314279754,4482476.4007143015],[-10615317.288386246,4482475.8693741709],[-10615316.091187971,4482219.5318547525],[-10615314.894093834,4481963.4809922306],[-10615313.70640485,4481707.1005772967],[-10615312.517912611,4481450.6015624274],[-10615311.331419315,4481193.9188921042],[-10615310.143521402,4480937.0754836379],[-10615308.947010685,4480680.0767598338],[-10615307.748895168,4480422.92021525],[-10615558.898094775,4480420.4592205072],[-10615791.13195907,4480418.1791756442],[-10615807.962699767,4480418.0234915465],[-10616054.927492257,4480415.5883634966],[-10616277.395635683,4480413.3892263053],[-10616299.81039313,4480413.1729642851],[-10616542.610301107,4480410.7784264358],[-10616766.458431633,4480408.5649636043],[-10616783.329418469,4480408.3890199848],[-10617021.978858197,4480406.0188391302],[-10617124.446507217,4480404.9979266394],[-10617258.526881574,4480403.5161205521],[-10617505.727984358,4480403.4717049496],[-10617738.405895893,4480403.4243209139],[-10617750.654873298,4480403.4171908461],[-10617993.257791407,4480403.3657907546],[-10618217.100148352,4480403.311741394],[-10618233.551855797,4480403.2986288834],[-10618471.148720311,4480403.2279063622],[-10618690.86523534,4480403.1589511074],[-10618706.624246931,4480403.1635724716],[-10618939.47475649,4480403.0849825405],[-10619170.842361746,4480403.002345317],[-10619418.251282698,4480401.3780134115],[-10619666.222149841,4480399.7427414712],[-10619676.717210794,4480399.6779526304],[-10619916.043143719,4480398.1005741088],[-10620167.282868391,4480396.439550614],[-10620176.989523197,4480396.3680814337],[-10620421.052801063,4480394.7432012893],[-10620676.137244947,4480393.0404525492],[-10620682.746039715,4480392.9895784594],[-10620932.646526759,4480391.3253914574],[-10621190.316743283,4480389.6032996485],[-10621202.620037269,4480650.9090285096],[-10621215.001036759,4480913.8947445387],[-10621227.313133385,4481175.2530059582],[-10621239.597687338,4481436.0310340906],[-10621239.809886031,4481440.5931798527],[-10621252.082619386,4481701.1284628985],[-10621253.523141922,4481731.7108759973],[-10621266.020214789,4481966.1753235813],[-10621280.067911087,4482229.4854249945],[-10621280.976258868,4482246.5287586553],[-10621283.965638239,4482491.7618291443],[-10621285.542085048,4482744.504078283],[-10621287.117327653,4482997.0581796188],[-10621288.69647171,4483249.4068750814],[-10621290.274311187,4483501.5463735852],[-10621291.845440023,4483753.4874858242],[-10621293.387575742,4484000.4908322608],[-10621293.417967491,4484005.2276800759],[-10621294.993895913,4484256.7690821197],[-10621296.568219421,4484508.1012289608],[-10621545.292183843,4484511.5010904474],[-10621790.234810308,4484514.8419855554],[-10621793.666446079,4484514.8894923078],[-10622041.705522735,4484518.2636651648],[-10622275.675963027,4484521.4403797835],[-10622284.243586633,4484521.3314761641],[-10622289.396194695,4484521.2747701509],[-10622288.846368546,4484776.1410711221],[-10622288.314870566,4485022.8506326815],[-10622288.297822604,4485029.1321700653],[-10622287.751556251,4485280.0943360133],[-10622287.208771326,4485529.067460414],[-10622286.346077813,4485783.1228044797],[-10622285.484881647,4486036.7772278022],[-10622284.628086161,4486290.0314569529],[-10622283.771987123,4486542.8860926656],[-10622280.551590556,4486796.635494139],[-10622277.329496313,4487050.677359852],[-10622274.10129948,4487305.0219107699],[-10622270.869202485,4487559.661739381],[-10622267.637807244,4487814.3013130855],[-10622264.409813533,4488068.6511153411],[-10622261.172219792,4488323.8790426524],[-10622257.929126443,4488579.6092351545],[-10622270.799052795,4488579.6153265685],[-10622520.138359297,4488579.8346485607],[-10622758.026863078,4488580.037571257],[-10622767.620840918,4488580.0400925372],[-10623013.230779847,4488580.2456373861],[-10623256.979288718,4488580.4446085412],[-10623505.886834238,4488583.7947362103],[-10623754.986698756,4488587.1417190032],[-10623759.564637637,4488587.2031119969],[-10624004.275178086,4488590.4905943675],[-10624253.725241231,4488593.8353169477],[-10624261.588515297,4488856.8829476256],[-10624269.41773678,4489118.8484992534],[-10624277.203290036,4489379.27004233],[-10624284.94687853,4489638.2933127256],[-10624292.665625812,4489896.3057661736],[-10624300.346714966,4490153.0799766351],[-10624307.982937869,4490408.6255522491],[-10624315.582904493,4490662.9514729129],[-10624321.785192983,4490662.9067126689],[-10624568.832640974,4490661.2569895145],[-10624808.253372896,4490659.6527637197],[-10624816.607821116,4490659.5953098778],[-10625065.126651678,4490657.9279721249],[-10625314.351990165,4490656.2511968641],[-10625311.647889599,4490917.635903894],[-10625308.921984814,4491181.1083697109],[-10625306.196471974,4491443.6015852913],[-10625305.450104132,4491515.4670786569],[-10625303.546646781,4491706.1342392564],[-10625302.42603182,4491817.8833333431],[-10625304.292805267,4491969.1020764289],[-10625307.541922199,4492232.1119295647],[-10625310.803652424,4492495.1220680382],[-10625314.066182094,4492758.0959553896],[-10625240.171717705,4492757.9270384721],[-10625066.809492204,4492757.534440414],[-10624817.027519017,4492756.9631910836],[-10624734.463857064,4492756.7808050578],[-10624732.856346888,4493012.3216779223],[-10624731.246434731,4493267.8937141895],[-10624729.645533683,4493523.5043502199],[-10624728.043131905,4493779.169338787],[-10624726.107747227,4494034.4854697995],[-10624724.171161288,4494289.7569010789],[-10624722.244778292,4494544.0936267339],[-10624720.304997578,4494800.1519166352],[-10624719.652791547,4495056.8136537308],[-10624719.004568547,4495311.2857936006],[-10624718.349843381,4495566.2737311581],[-10624717.694413176,4495820.8189617451],[-10624717.041581126,4496074.8633546121],[-10624716.389344029,4496328.3139889287],[-10624715.742106926,4496581.1738466648],[-10624715.096265825,4496833.4541024584],[-10624721.893708719,4496833.4083135463],[-10624721.672786504,4497089.3122281786],[-10624721.450367399,4497345.7023522379],[-10624721.24415811,4497601.2173000639],[-10624721.038345177,4497856.3168341853],[-10624465.677023418,4497857.67976873],[-10624209.563946182,4497859.0404248545],[-10623952.734754093,4497860.4039710378],[-10623695.185142189,4497861.7647350114],[-10623438.948698347,4497860.5549986549],[-10623183.17638249,4497859.3392180717],[-10622927.327879487,4497858.1220500711],[-10622671.504804986,4497856.898454017],[-10622416.181201011,4497855.8740218924],[-10622160.984641295,4497854.8441713797],[-10621906.496687973,4497853.8095402746],[-10621652.520617044,4497852.7692436697],[-10621653.14472631,4497597.8397999015],[-10621653.772032576,4497342.3353640921],[-10621654.38421151,4497085.9628095226],[-10621654.998491975,4496829.5060216878],[-10621401.840291839,4496828.4201996215],[-10621234.275300045,4496827.6979724709],[-10621148.591592532,4496827.6862706812],[-10620895.209048742,4496827.6236110032],[-10620641.736302087,4496827.5535139851],[-10620388.320720529,4496827.4832916837],[-10620134.564350642,4496827.4056287836],[-10619966.594105102,4496827.3525247388],[-10619880.873244604,4496826.514148334],[-10619627.098322054,4496824.0283040479],[-10619626.136836587,4497078.1978628887],[-10619625.17235863,4497333.1888199542],[-10619624.211479304,4497587.7426684219],[-10619623.249698881,4497842.2740771081],[-10619367.734669678,4497841.0165793914],[-10619112.2475718,4497839.752779712],[-10618856.849274477,4497838.4776369184],[-10618601.52255814,4497837.1945541054],[-10618346.214673091,4497836.6538987374],[-10618091.007902889,4497836.1054296633],[-10617835.760586124,4497835.5408258522],[-10617580.514170123,4497834.9701717189],[-10617581.33626724,4497580.1511513963],[-10617582.158465279,4497325.3767599296],[-10617582.98144529,4497069.2657266269],[-10617583.797840584,4496814.7379097575]]]},"attributes":{"objectid":1132,"field_kid":"1000149390","approxacre":17714,"field_name":"DENNIS","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1791,"maxoilwell":1,"lastoilpro":114,"lastoilwel":1,"lastodate":"1-1985","cumm_gas":211055,"maxgaswell":9,"lastgaspro":46,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":949,"avgdepthsl":-19.733333330000001,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149390}},{"geometry":{"rings":[[[-10553644.720729817,4566530.270511237],[-10553643.293977039,4566272.9753033789],[-10553389.672350841,4566273.1642502602],[-10553135.582983166,4566273.348125332],[-10552881.147014372,4566273.5157623934],[-10552626.319492323,4566273.6762970276],[-10552371.713526726,4566273.8424127996],[-10552115.623042498,4566274.0043521421],[-10551859.814684995,4566274.1549972696],[-10551603.693064885,4566274.297778137],[-10551607.447990522,4566020.490035533],[-10551611.204520237,4565766.4374168264],[-10551611.266525362,4565762.723211783],[-10551614.975769717,4565512.0824677711],[-10551618.584135501,4565268.3249715129],[-10551618.678542517,4565257.440435051],[-10551618.698107315,4565252.7457330581],[-10551620.253952067,4565002.8447508821],[-10551621.841980442,4564747.7836419372],[-10551621.882064676,4564743.570732465],[-10551623.459646339,4564492.3702990701],[-10551625.065402059,4564236.5580661036],[-10551626.683778651,4563980.0534387557],[-10551628.299848566,4563723.9996223208],[-10551629.902810026,4563467.2020853953],[-10551631.508077219,4563210.067156937],[-10551633.13747205,4562952.9695428982],[-10551634.766867179,4562695.8431592993],[-10551636.377640693,4562438.7278336203],[-10551637.988914901,4562181.6044136118],[-10551891.121042423,4562182.6219442161],[-10552144.134833036,4562183.6314851614],[-10552397.03078736,4562184.6277096169],[-10552649.803499103,4562185.6158175915],[-10552662.411394166,4562185.6584885363],[-10552902.478693929,4562187.0546768485],[-10553155.039255846,4562188.5176342195],[-10553407.496998755,4562189.9808457531],[-10553659.837405905,4562191.4365749545],[-10553913.739040386,4562190.6573117618],[-10554164.285891175,4562189.8825065503],[-10554167.190653944,4562189.8723439798],[-10554420.205562033,4562189.0785008017],[-10554667.938154988,4562188.2934385799],[-10554672.792374572,4562188.2785724374],[-10554672.649118964,4562445.0424193703],[-10554672.505865382,4562701.5853242027],[-10554672.357708065,4562957.9160225373],[-10554672.211054401,4563214.0393187255],[-10554672.278650749,4563469.946063403],[-10554672.348051172,4563725.6364956172],[-10554672.433972817,4563981.098294843],[-10554672.520196998,4564236.3211692264],[-10554926.487825308,4564234.7742209248],[-10555179.911123445,4564233.2260080576],[-10555432.766564302,4564231.6633379506],[-10555685.034324802,4564230.0992767075],[-10555686.125425847,4564484.400970703],[-10555687.220124878,4564739.4047203492],[-10555688.299299799,4564995.1062642429],[-10555689.381872457,4565251.5122509692],[-10555690.478560835,4565507.9953625975],[-10555691.575846359,4565764.8853472602],[-10555692.661915138,4566022.2051998693],[-10555693.748580975,4566279.9409957286],[-10555694.642835977,4566536.3440772602],[-10555695.535090117,4566792.5906979376],[-10555696.440260708,4567048.6760244006],[-10555697.346834356,4567304.6082928553],[-10555698.246201498,4567560.3409217903],[-10555699.147172198,4567815.8900125092],[-10555700.061960524,4568071.2629117109],[-10555700.976350373,4568326.4200125374],[-10555444.410106625,4568326.35527662],[-10555187.534404648,4568326.2841979088],[-10554931.276618194,4568326.1997894039],[-10554675.325086381,4568326.1081449483],[-10554419.694626212,4568326.0255081449],[-10554164.349496458,4568325.9352548411],[-10553909.365484901,4568325.8335773051],[-10553654.727473984,4568325.7259325441],[-10553653.297905734,4568069.7408852382],[-10553651.866737157,4567813.5935041262],[-10553650.431565527,4567557.2765681529],[-10553648.99389261,4567300.7872981327],[-10553647.570337636,4567044.1278637303],[-10553646.147985732,4566787.2886342723],[-10553644.720729817,4566530.270511237]]]},"attributes":{"objectid":1134,"field_kid":"1000146833","approxacre":2848,"field_name":"DEVON","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000146833}},{"geometry":{"rings":[[[-10577497.173910759,4687399.0602811594],[-10577497.294055527,4687143.8388267308],[-10577497.416780086,4686884.0491635762],[-10577497.414059971,4686880.6933783013],[-10577497.544309443,4686624.1219602888],[-10577497.674441036,4686364.0515789902],[-10577755.93345865,4686365.1811915496],[-10578013.975727726,4686366.3040015968],[-10578271.813362062,4686367.4052464096],[-10578529.432646027,4686368.4998170845],[-10578529.781788332,4686628.312358005],[-10578530.130829871,4686888.0044305045],[-10578530.469058271,4687147.5574103286],[-10578530.807486141,4687406.9680772787],[-10578788.699907912,4687407.8151861858],[-10579046.375781467,4687408.6549783517],[-10579303.835607326,4687409.4734599199],[-10579561.098607566,4687410.2850097967],[-10579561.905096086,4687669.3111207187],[-10579562.711583907,4687928.2149137668],[-10579563.528883349,4688186.9816143541],[-10579564.344480062,4688445.606333103],[-10579562.815796027,4688705.1115241311],[-10579561.287613029,4688964.676229299],[-10579561.28732815,4688968.113465826],[-10579559.766338367,4689224.2949317172],[-10579558.224840831,4689483.9334786693],[-10579558.183614351,4689488.5423768973],[-10579556.683944348,4689743.6112620626],[-10579555.156363714,4690003.3805505317],[-10579555.154877836,4690006.8990401942],[-10579553.647805184,4690263.1803516364],[-10579552.119324557,4690523.0973537238],[-10579294.404228166,4690522.4211873421],[-10579038.235802067,4690521.7434707275],[-10578781.083349429,4690521.0484227678],[-10578523.789935298,4690520.3452849602],[-10578266.377284503,4690519.6267370507],[-10578008.82116936,4690518.9013835508],[-10577751.182259379,4690518.1823232574],[-10577493.408094432,4690517.4563288931],[-10577493.813644031,4690257.9105159193],[-10577494.218594914,4689998.7501472132],[-10577494.631353075,4689739.2560780747],[-10577495.044110766,4689479.6652506664],[-10577495.451563032,4689220.1963492138],[-10577495.858415456,4688960.8899398418],[-10577496.268168421,4688701.0305633657],[-10577496.679221259,4688440.8462951938],[-10577496.79774449,4688181.7277946463],[-10577496.917268129,4687922.4673374426],[-10577496.93376757,4687918.6262792191],[-10577497.054711523,4687663.0582581181],[-10577497.177136989,4687403.5080143781],[-10577497.173910759,4687399.0602811594]]]},"attributes":{"objectid":1146,"field_kid":"1000149138","approxacre":1113,"field_name":"EDGERTON SOUTHWEST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":389017.97999999998,"maxoilwell":50,"lastoilpro":1639.9300000000001,"lastoilwel":50,"lastodate":"2-2009","cumm_gas":6958,"maxgaswell":3,"lastgaspro":211,"lastgaswel":3,"lastgdate":"2-2001","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149138}},{"geometry":{"rings":[[[-10559811.600981792,4638637.0346449334],[-10560066.731780164,4638637.666969439],[-10560070.095776819,4638894.361294942],[-10560073.380896034,4639144.9038151242],[-10560073.461076254,4639150.300615306],[-10560076.817266455,4639405.478229586],[-10560080.074759506,4639653.1343290163],[-10560080.145125212,4639659.8984257132],[-10560083.483297253,4639913.5307341544],[-10560086.773021363,4640163.4826994902],[-10560086.825074805,4640166.3822528236],[-10560090.148031931,4640418.4678759184],[-10560093.461479381,4640669.7904863758],[-10560093.935529986,4640928.6218471043],[-10560094.41278263,4641188.1462930813],[-10560094.884730604,4641447.0174418474],[-10560095.356578985,4641705.6421882501],[-10560095.361174637,4641709.8289600872],[-10560095.741659647,4641906.8104667962],[-10560095.615079874,4641964.7476384407],[-10560095.0507294,4642224.4452850502],[-10560095.053322643,4642228.6734252544],[-10560094.477567436,4642484.7549839085],[-10560093.891188754,4642745.7396701919],[-10560094.130871274,4643003.4323357232],[-10560094.371856298,4643260.6799851274],[-10560094.604232365,4643517.4966465104],[-10560094.837910937,4643773.8732113112],[-10560095.085604561,4644030.7249672543],[-10560095.332898069,4644287.4158119038],[-10560095.592806542,4644543.9239996821],[-10560095.852314835,4644800.2998889834],[-10559838.526711175,4644802.3813157519],[-10559582.15030301,4644804.4476553798],[-10559325.35591292,4644806.495202641],[-10559068.609077996,4644808.5345680919],[-10558838.5142945,4644810.3626828445],[-10558812.554842552,4644810.5332772452],[-10558557.44760064,4644812.2017542394],[-10558300.609161545,4644813.8647371577],[-10558042.249067022,4644815.5297686839],[-10557786.433605131,4644819.3262769701],[-10557530.698035961,4644823.1163943419],[-10557528.008632882,4644823.1754648304],[-10557273.568158571,4644826.9232638655],[-10557017.341624044,4644830.6906283777],[-10556761.056722706,4644834.4528806647],[-10556505.228548881,4644838.2037552567],[-10556247.61771876,4644841.980332057],[-10555989.543454485,4644845.7575505236],[-10555988.666581305,4644642.69617684],[-10555988.873183949,4644587.9939271687],[-10555989.851817295,4644329.147567153],[-10555989.897083484,4644317.2708087545],[-10555990.843266746,4644069.3058690364],[-10555991.838622106,4643808.4014112949],[-10555991.901012333,4643792.9021505062],[-10555992.839184625,4643546.6485215612],[-10555993.8398483,4643284.1390458141],[-10555993.619007863,4643271.8506112536],[-10555991.524929922,4643153.5637407834],[-10555992.272049362,4643019.9730262747],[-10555993.75637495,4642754.5095069166],[-10555989.804917397,4642495.9980375692],[-10555985.938751262,4642243.0130648017],[-10555985.845048949,4642238.0175107438],[-10555981.907505035,4641980.6250184663],[-10555978.081280643,4641730.4534428744],[-10555977.969759665,4641723.805946161],[-10555974.043125911,4641467.5547549706],[-10555970.207990289,4641217.2737651784],[-10555970.130707359,4641211.8775368128],[-10555966.204071162,4640956.7746321196],[-10555962.287144996,4640702.2269562073],[-10555961.956262929,4640445.2681206148],[-10555961.625380944,4640188.2060753824],[-10555961.293698393,4639930.8063388951],[-10555960.961715735,4639673.163496526],[-10555960.63433929,4639414.729770856],[-10555960.307964565,4639155.7739374526],[-10555959.98028891,4638896.2952690832],[-10555959.65311438,4638636.3156541325],[-10556216.681407303,4638635.8987218495],[-10556473.569838686,4638635.4742512759],[-10556730.346440902,4638635.0548916934],[-10556987.004606336,4638634.629910362],[-10557243.559852939,4638634.1883189594],[-10557499.959519839,4638633.7402114505],[-10557756.157754079,4638633.2745995866],[-10557990.99140184,4638632.843380671],[-10558012.047832979,4638632.4292530492],[-10558270.569249701,4638633.1165154334],[-10558528.603002854,4638633.7948343856],[-10558786.183231913,4638634.4541159524],[-10559043.316544486,4638635.1059872862],[-10559299.903325461,4638635.754792694],[-10559555.985723555,4638636.3963157013],[-10559811.600981792,4638637.0346449334]]]},"attributes":{"objectid":185,"field_kid":"1000149893","approxacre":3809,"field_name":"FONTANA","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149893}},{"geometry":{"rings":[[[-10539358.62808346,4580575.6066123452],[-10539360.369999597,4580321.0260803755],[-10539362.076339955,4580071.6904224735],[-10539362.108810274,4580066.7901288057],[-10539362.611171378,4579994.9825627478],[-10539366.863498544,4579812.7725882875],[-10539372.643828586,4579565.0790983532],[-10539372.808760706,4579558.8432211122],[-10539375.771233816,4579431.3965383312],[-10539376.502823276,4579305.2677094936],[-10539377.944549138,4579056.6365591465],[-10539377.972420938,4579051.8573429985],[-10539379.458935838,4578798.7360766344],[-10539380.943846434,4578545.9257381512],[-10539368.440940941,4578290.502361536],[-10539355.938134732,4578035.1147500733],[-10539349.32773006,4577899.8460108666],[-10539344.733333014,4577778.8296877528],[-10539334.976807423,4577521.8678703178],[-10539331.591343481,4577432.3795055319],[-10539329.544271654,4577264.7623083657],[-10539326.394475719,4577006.9152930202],[-10539323.24077774,4576748.7608567346],[-10539320.079274857,4576490.0989903575],[-10539578.19268859,4576492.1564725274],[-10539829.468012413,4576494.1543661058],[-10539833.370415028,4576494.1871468509],[-10540086.474548962,4576496.1865711585],[-10540337.22446656,4576498.1596976398],[-10540590.508007376,4576500.1530269645],[-10540843.389984841,4576502.1356868129],[-10541095.856583036,4576504.1034859782],[-10541347.922018323,4576506.0626477385],[-10541604.885322353,4576505.9864508174],[-10541864.125954196,4576505.9030225696],[-10541877.750074759,4576505.8982438399],[-10542125.659331657,4576505.8116010185],[-10542389.452116253,4576505.7126940759],[-10542407.657723285,4576505.7071692739],[-10542655.592409616,4576505.6104931906],[-10542923.980296517,4576505.4978857664],[-10542937.643161792,4576505.4928531591],[-10543194.690963678,4576505.3783011781],[-10543398.872664573,4576505.2807107028],[-10543467.659224613,4576506.5511231357],[-10543722.187064491,4576512.6751567386],[-10543841.569591867,4576515.5448622387],[-10543976.880320676,4576515.8505256604],[-10544231.327315539,4576516.3972777994],[-10544485.461950006,4576516.9378056293],[-10544486.08864806,4576770.6892163735],[-10544486.712754352,4577023.163521599],[-10544486.732454266,4577025.7653405955],[-10544487.364862546,4577279.1082853368],[-10544487.995475028,4577531.7374902191],[-10544488.631178265,4577786.0942323999],[-10544489.268482644,4578040.5340672731],[-10544489.904091848,4578294.2036370086],[-10544490.539605323,4578547.3759987941],[-10544496.754375014,4578547.3993928954],[-10544496.852045348,4578803.1422220841],[-10544496.950111611,4579059.4057323411],[-10544497.035660477,4579316.013632183],[-10544497.121677706,4579573.095045682],[-10544497.197554702,4579830.8349505952],[-10544497.273925407,4580089.3445622372],[-10544497.365608661,4580348.4285363369],[-10544497.457497666,4580606.9012610773],[-10544487.81558037,4580606.8251260966],[-10544239.365913445,4580604.8493084768],[-10543988.546513785,4580602.848327253],[-10543980.061931098,4580602.7569496501],[-10543972.055599883,4580602.6643030318],[-10543819.291664595,4580600.8985521607],[-10543719.29557259,4580599.4398001516],[-10543492.372838149,4580596.1242831526],[-10543457.625498271,4580592.9455747567],[-10543201.921468928,4580590.3783073835],[-10542947.08233629,4580587.8149818955],[-10542691.081163276,4580585.2333577238],[-10542434.587521894,4580582.6422036113],[-10542177.100610713,4580583.0563424593],[-10541920.024773693,4580583.4637488639],[-10541661.402853964,4580583.8725479906],[-10541402.753302518,4580584.2742321314],[-10541148.22171055,4580583.2116508745],[-10540892.687462252,4580582.1395375971],[-10540888.344454411,4580582.1288514659],[-10540637.062308839,4580581.074666081],[-10540381.027983472,4580579.994928211],[-10540376.326662552,4580579.9711545585],[-10540126.057784958,4580578.908841149],[-10539870.684521448,4580577.8189413203],[-10539867.336260654,4580577.8059714017],[-10539613.973815594,4580576.7137910603],[-10539358.62808346,4580575.6066123452]]]},"attributes":{"objectid":228,"field_kid":"1000146837","approxacre":3179,"field_name":"FULTON","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":391,"maxoilwell":1,"lastoilpro":77,"lastoilwel":1,"lastodate":"1-1987","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146837}},{"geometry":{"rings":[[[-10560784.989448335,4549864.2472872799],[-10560781.176167801,4549610.6123799104],[-10560777.4357289,4549361.8349527735],[-10560777.318569032,4549353.2328827661],[-10560773.47806534,4549098.6710457802],[-10560769.826669646,4548856.7118837982],[-10560769.635353653,4548844.7377438257],[-10560765.818865824,4548591.5527540799],[-10560762.160167972,4548348.8993730173],[-10560762.034505818,4548339.4403981641],[-10560758.264955664,4548088.167422615],[-10560754.517117821,4547838.3600702127],[-10560496.39807998,4547838.7915315386],[-10560238.904065579,4547839.2148869205],[-10559981.5280878,4547839.6360892523],[-10559724.48159142,4547840.0486791031],[-10559723.384480143,4547584.1907363813],[-10559722.284772376,4547327.6030035214],[-10559721.180358347,4547071.1145501686],[-10559720.07664682,4546814.4429582879],[-10559718.825969253,4546557.3201478031],[-10559717.578492422,4546300.5424345881],[-10559716.344234981,4546043.3075783635],[-10559715.110680055,4545785.8884984022],[-10559729.127601705,4545785.9159832615],[-10559723.868886732,4545540.0178683689],[-10559718.585353214,4545292.9786061468],[-10559713.295723226,4545044.7521880232],[-10559707.980974585,4544795.3585776053],[-10559702.62448498,4544545.1450340031],[-10559697.258788399,4544294.5270265369],[-10559691.877455322,4544042.0070055313],[-10559686.464254674,4543788.0717877252],[-10559937.566547893,4543792.3152982909],[-10560170.765923114,4543796.2492357381],[-10560187.034950802,4543796.5186734898],[-10560435.213761844,4543800.6897632899],[-10560680.941937385,4543804.81160104],[-10560935.798066357,4543807.5059646191],[-10561193.337000336,4543810.2222344158],[-10561205.482655818,4543810.3570848089],[-10561452.281961855,4543812.9543317836],[-10561467.316360278,4543813.1129876683],[-10561712.876310123,4543812.5232989453],[-10561718.219234992,4544059.7754293391],[-10561723.56767736,4544307.3263794268],[-10561728.890763408,4544554.7139520776],[-10561734.214750385,4544802.1271509714],[-10561739.528328395,4545049.202198823],[-10561744.828595864,4545295.7353353379],[-10561750.151890537,4545542.2175776074],[-10561755.444162291,4545787.233337081],[-10561767.679823803,4545787.1105125537],[-10561919.875373952,4545785.626490606],[-10562022.193479683,4545786.5171181764],[-10562269.752863234,4545788.6690356759],[-10562277.058417374,4545788.7410908481],[-10562532.262147313,4545790.9491084693],[-10562787.921304384,4545793.1532008564],[-10563047.716965962,4545793.3849224066],[-10563284.275935765,4545793.5900413552],[-10563305.99847535,4545793.599421693],[-10563562.81719191,4545793.8067024359],[-10563791.473816495,4545793.9862387078],[-10563818.159299711,4545793.9984071134],[-10563821.208503302,4546048.4693053439],[-10563824.25910761,4546303.0538072735],[-10563827.299799331,4546557.7749694837],[-10563830.341992203,4546812.5731540453],[-10563833.414819425,4547067.5080162454],[-10563836.488746656,4547322.5971702021],[-10563839.549156912,4547577.8488596585],[-10563842.611868471,4547833.2652497906],[-10563826.170540726,4547833.1940753357],[-10563830.406486128,4548091.3566975454],[-10563834.626021367,4548348.5214333497],[-10563838.809525473,4548604.4873212259],[-10563842.973417053,4548859.3020260073],[-10563846.534313451,4549113.8171880795],[-10563850.101313733,4549368.7074424215],[-10563853.64801199,4549621.1508667506],[-10563857.174500257,4549872.0716563389],[-10563600.7096477,4549874.623992173],[-10563345.281595258,4549877.1585930167],[-10563091.076458417,4549879.6655777209],[-10562838.117564101,4549882.1549538327],[-10562583.332100322,4549879.5540023111],[-10562327.952248748,4549876.9401303474],[-10562323.18693391,4549876.8830032852],[-10562072.07392038,4549874.3129578168],[-10561815.682898691,4549871.6823656643],[-10561809.408136988,4549871.6080119088],[-10561558.929057254,4549869.0345457764],[-10561463.817684771,4549868.0550400624],[-10561463.847210987,4549857.5834128438],[-10561301.178225368,4549859.172257836],[-10561296.647180736,4549859.2226806162],[-10561043.104610855,4549861.7158525549],[-10560784.989448335,4549864.2472872799]]]},"attributes":{"objectid":234,"field_kid":"1000146850","approxacre":2852,"field_name":"PETERSBURG EAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1113.9400000000001,"maxoilwell":4,"lastoilpro":86.939999999999998,"lastoilwel":2,"lastodate":"11-2005","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"OIL","field_kidn":1000146850}},{"geometry":{"rings":[[[-10604557.076908831,4584028.4062820077],[-10604555.667718142,4583772.1421624804],[-10604296.157893373,4583769.8398886528],[-10604035.648127582,4583767.5226222109],[-10603773.287349382,4583765.1753696613],[-10603509.372998217,4583762.8079159101],[-10603244.463613097,4583760.2733403621],[-10602977.968155326,4583757.7163977511],[-10602710.761078289,4583755.1483313022],[-10602442.55785829,4583752.5637488393],[-10602446.361626916,4583495.7577110361],[-10602450.166296583,4583238.973929069],[-10602453.970666433,4582982.1585181868],[-10602457.772732863,4582725.4491076358],[-10602203.03742801,4582724.6163283903],[-10601949.120762555,4582723.7794782156],[-10601694.683399672,4582722.9306853674],[-10601440.189872369,4582722.074776384],[-10601442.590900071,4582466.3763180515],[-10601444.992730113,4582210.5427415371],[-10601447.400167562,4581954.6211996544],[-10601449.809608439,4581698.5960696572],[-10601704.358718794,4581699.7205538824],[-10601959.268242767,4581700.8399535893],[-10602214.574622156,4581701.9556663129],[-10602470.280459933,4581703.0690897778],[-10602732.928163985,4581704.2006476289],[-10602994.87996947,4581705.3219167171],[-10603256.051974766,4581706.4408480991],[-10603516.469294483,4581707.5504633971],[-10603776.206331227,4581709.4097758578],[-10604035.199419532,4581711.2561304206],[-10604293.457569638,4581713.0938473102],[-10604550.980881693,4581714.9189874427],[-10604550.971936177,4581718.8207059335],[-10604550.737577666,4581972.0133061381],[-10604550.49987716,4582229.4274974754],[-10604550.50075064,4582232.4682340035],[-10604550.271484427,4582487.1594250798],[-10604550.03958491,4582745.2017422346],[-10604806.626224414,4582744.6441626614],[-10605063.518412627,4582744.0781947477],[-10605067.245866811,4582744.0608978169],[-10605320.703535251,4582743.4932909431],[-10605578.193906145,4582742.9090214539],[-10605583.137247987,4582742.8907032916],[-10605582.670155389,4582487.0502076568],[-10605582.20256423,4582230.9944172231],[-10605581.732372267,4581974.7050497718],[-10605581.260881001,4581718.181995471],[-10605838.021040749,4581718.003292569],[-10606094.461235445,4581717.8193811039],[-10606350.575057795,4581717.6275926949],[-10606606.388637612,4581717.4284355091],[-10606607.557603719,4581973.3793638004],[-10606608.723671025,4582228.823877818],[-10606609.88763316,4582484.6223741788],[-10606611.052395884,4582740.4848837964],[-10606611.353869382,4582996.8367604064],[-10606611.656845314,4583253.115174246],[-10606611.952813856,4583509.3329559611],[-10606612.24968404,4583765.4902282078],[-10606612.55116006,4584021.5897826897],[-10606612.851635702,4584277.6117878938],[-10606613.158419235,4584533.5629745107],[-10606613.465303618,4584789.4392700763],[-10606355.872563986,4584790.4314778084],[-10606098.481154168,4584791.4158044131],[-10605841.302487221,4584792.3888179837],[-10605584.33556198,4584793.3542045737],[-10605328.00326129,4584794.3143774541],[-10605072.04308543,4584795.267304007],[-10604816.478861652,4584796.2095523067],[-10604561.303782139,4584797.1450626152],[-10604559.894390246,4584540.902330826],[-10604558.485298946,4584284.6609850377],[-10604557.076908831,4584028.4062820077]]]},"attributes":{"objectid":342,"field_kid":"1000146302","approxacre":1608,"field_name":"COLONY-WELDA SOUTHEAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":235048.88,"maxoilwell":75,"lastoilpro":1286.5899999999999,"lastoilwel":72,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1214179200000,"field_type":"OIL","field_kidn":1000146302}},{"geometry":{"rings":[[[-10616473.420776429,4583852.9779675798],[-10616719.207525186,4583859.5498706987],[-10616719.080533542,4584117.0915340688],[-10616718.953842491,4584374.5923237819],[-10616718.82945426,4584632.0617695833],[-10616718.704966113,4584889.499615022],[-10616473.228399618,4584883.0282667438],[-10616227.921527807,4584876.5548877055],[-10616223.620517282,4584876.4375867862],[-10615982.7786442,4584870.0705805523],[-10615737.837992392,4584863.5891996389],[-10615737.643589262,4584605.8708158806],[-10615737.449589085,4584347.7391672377],[-10615737.264394838,4584090.3188290698],[-10615737.077997293,4583833.2364768153],[-10615982.366474429,4583839.8209528578],[-10616227.803922538,4583846.4042882286],[-10616473.420776429,4583852.9779675798]]]},"attributes":{"objectid":343,"field_kid":"1000146321","approxacre":153,"field_name":"COLONY-WELDA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":5009275.3899999997,"maxoilwell":612,"lastoilpro":4533.5,"lastoilwel":353,"lastodate":"2-2009","cumm_gas":73741,"maxgaswell":1,"lastgaspro":6011,"lastgaswel":1,"lastgdate":"3-1990","avgdepth":751.5,"avgdepthsl":-322.41699218999997,"polydate":1214179200000,"field_type":"O&G","field_kidn":1000146321}},{"geometry":{"rings":[[[-10607873.250079766,4610791.0133719696],[-10607877.650919128,4610533.5938991476],[-10607621.969216436,4610533.6933005657],[-10607366.592664422,4610533.7870931216],[-10607371.448770231,4610275.5249046423],[-10607376.311485987,4610016.8985344339],[-10607381.182513775,4609757.8900446799],[-10607386.059050268,4609498.5134790922],[-10607641.80504618,4609499.1790863201],[-10607897.496179216,4609499.8374316404],[-10608153.135953341,4609500.4969240259],[-10608408.732678154,4609501.149918857],[-10608412.926739316,4609243.80356663],[-10608417.070417851,4608989.5055040559],[-10608417.12860856,4608986.4982907474],[-10608421.33097733,4608729.2558734091],[-10608425.467037408,4608476.0430498747],[-10608171.492155781,4608474.5394476717],[-10607917.454602435,4608473.0302406074],[-10607662.655174362,4608471.5119940462],[-10607407.324436376,4608469.9829227617],[-10607412.17903482,4608211.7558621243],[-10607417.043047119,4607953.0792114297],[-10607421.907763092,4607693.9741506828],[-10607426.778588982,4607434.4367631329],[-10607172.175868575,4607432.0521700084],[-10606917.256484993,4607429.6585352989],[-10606662.060083782,4607427.2520372123],[-10606406.556029752,4607424.8356058132],[-10606151.974720402,4607424.1886509443],[-10605897.677637545,4607423.5364713324],[-10605642.986101845,4607422.8862052718],[-10605388.120766744,4607422.2289343532],[-10605133.199067105,4607421.5619827062],[-10604878.342842789,4607420.8894257136],[-10604622.868809221,4607420.2136885207],[-10604366.988809677,4607419.5313302753],[-10604372.035722544,4607164.1630162932],[-10604377.087442329,4606908.5672878912],[-10604382.152784457,4606652.1596429711],[-10604387.228843732,4606395.1434256909],[-10604392.300397076,4606138.1364141414],[-10604397.382666111,4605880.6813693289],[-10604402.472646499,4605622.8756286688],[-10604407.575847238,4605364.4236203823],[-10604498.946693728,4605365.9973962428],[-10604662.346905544,4605367.4054971226],[-10604913.070726892,4605369.559956844],[-10604917.083732096,4605369.5911321649],[-10605171.774606226,4605371.7766404813],[-10605421.048964912,4605373.910223987],[-10605426.420228876,4605373.9464843655],[-10605681.005582713,4605376.1118714353],[-10605931.503646463,4605378.2361500487],[-10605935.536274204,4605378.2675799681],[-10606190.012002992,4605380.4164118385],[-10606444.433069417,4605382.5569661092],[-10606449.928252909,4605126.264237009],[-10606455.425439252,4604869.8200853178],[-10606460.92703273,4604613.0435597282],[-10606466.433733705,4604355.9871513015],[-10606471.938332703,4604098.792612927],[-10606477.447538111,4603841.3773116823],[-10606482.965554902,4603583.724455595],[-10606488.48947959,4603325.8523983127],[-10606491.408913713,4603068.2729109451],[-10606494.26592819,4602816.3146956246],[-10606494.330344742,4602811.284789524],[-10606497.231847381,4602554.9055605279],[-10606500.051393449,4602305.8621407803],[-10606500.132143166,4602299.1290669972],[-10606503.022622015,4602043.9786904212],[-10606505.84947969,4601794.4710610108],[-10606505.912694832,4601789.441652827],[-10606508.78834562,4601535.5107794357],[-10606511.656181952,4601282.1851342311],[-10606767.489985336,4601283.0871575195],[-10607023.601206949,4601283.9837048408],[-10607279.998656834,4601284.8821600005],[-10607536.685238384,4601285.7753937533],[-10607793.661151862,4601286.6584410872],[-10608050.926096877,4601287.5365216229],[-10608308.476369215,4601288.405561544],[-10608566.305361276,4601289.269252806],[-10608569.712602582,4601031.7162048463],[-10608573.121947009,4600774.017329393],[-10608576.542705897,4600516.0876020631],[-10608579.966369316,4600257.9502077978],[-10608583.398543466,4599999.6318932921],[-10608586.833421575,4599741.148201284],[-10608590.257888908,4599482.4617222529],[-10608593.685160622,4599223.5705620255],[-10608593.635340834,4598965.5495005324],[-10608593.584820731,4598707.4745562198],[-10608593.52979598,4598449.3416603273],[-10608593.473270079,4598191.1441990621],[-10608341.402692933,4598191.1393131511],[-10608088.414064093,4598191.128196422],[-10607834.52300147,4598191.1100851558],[-10607579.681049541,4598191.0859977892],[-10607581.445179805,4597933.2820903296],[-10607583.200992951,4597676.3814403731],[-10607584.964320693,4597418.724383004],[-10607586.727950251,4597160.8623784073],[-10607581.160673738,4597160.879844455],[-10607583.871961284,4596906.3814754663],[-10607586.591863474,4596651.2593583986],[-10607589.323984386,4596395.5165932747],[-10607592.063318232,4596139.1606062911],[-10607594.796049139,4595882.1975506218],[-10607597.534391137,4595624.6228908356],[-10607600.287354505,4595366.439344449],[-10607603.045628572,4595107.6481021298],[-10607605.19209337,4594849.9081428312],[-10607607.342665277,4594591.8425537366],[-10607609.499442594,4594333.951850364],[-10607611.656820156,4594076.0833569877],[-10607614.178616347,4593817.9877273077],[-10607616.697807608,4593560.0929228701],[-10607619.206685081,4593302.4023632333],[-10607621.71245691,4593044.9296440361],[-10607873.983085182,4593046.4835620169],[-10608120.474701814,4593047.9957863772],[-10608126.218873916,4593048.0233604107],[-10608378.431836706,4593049.5705370074],[-10608630.603252228,4593051.1102087889],[-10608886.620566225,4593052.9210644066],[-10609142.86924524,4593054.7277212124],[-10609399.34968981,4593056.5196210835],[-10609656.053590335,4593058.3082126267],[-10609659.579978757,4592801.2685314808],[-10609663.10716846,4592544.1197438361],[-10609666.643769735,4592286.8030927759],[-10609670.181372836,4592029.3369066725],[-10609927.091733569,4592031.3702024445],[-10610183.356556242,4592033.3930718461],[-10610438.970935289,4592035.401444695],[-10610693.941077759,4592037.3995183595],[-10610696.153188173,4591780.1897686282],[-10610698.365199672,4591522.7778300336],[-10610700.569403449,4591265.1647350891],[-10610702.774809716,4591007.3599100728],[-10610445.643955838,4591007.312204075],[-10610192.275805004,4591007.2609185856],[-10610189.583726404,4591007.2534280894],[-10609934.619750617,4591007.2001155131],[-10609680.740215041,4591007.1414560247],[-10609515.586245701,4591007.0969880316],[-10609425.119302509,4591005.1956933485],[-10609168.240278216,4590999.7957024761],[-10608911.956835708,4590994.4097010298],[-10608655.571677716,4590989.0153085776],[-10608655.744558385,4590724.8376975581],[-10608655.915020734,4590462.6366380248],[-10608656.074765639,4590201.0966486633],[-10608656.235402822,4589940.6697610747],[-10608656.242642196,4589936.7253946392],[-10608400.652329518,4589936.3849089183],[-10608145.115578163,4589936.0384460539],[-10607889.709976966,4589935.6726530297],[-10607634.407593871,4589935.3011369556],[-10607634.322127823,4589674.4914020626],[-10607634.2363574,4589414.1829016041],[-10607634.147479381,4589154.3769963905],[-10607634.059598455,4588895.073648436],[-10607633.207411435,4588639.7600917974],[-10607632.355325667,4588384.3295018682],[-10607631.512551675,4588128.7809971645],[-10607630.66877771,4587873.1102635274],[-10607630.191323223,4587617.3503645267],[-10607629.713168802,4587361.4996555476],[-10607629.242624067,4587105.5416159034],[-10607628.771880116,4586849.4757449729],[-10607628.768971371,4586593.3292537825],[-10607628.765469009,4586336.3259333177],[-10607628.756059071,4586079.4300561445],[-10607628.7471515,4585822.3214055682],[-10607882.806815414,4585823.1818131376],[-10608137.30257757,4585824.0382782482],[-10608392.259266291,4585824.8942329641],[-10608647.670674514,4585825.7466265],[-10608902.835800221,4585826.7720277943],[-10609158.027055975,4585827.7906917939],[-10609413.263163211,4585828.7949913675],[-10609668.545123002,4585829.7931891447],[-10609667.758382564,4586085.1925687362],[-10609666.973047717,4586340.0593743343],[-10609666.190920534,4586594.3908970375],[-10609665.410499295,4586848.1897671996],[-10609920.73949432,4586848.1130178617],[-10610176.108835477,4586848.0300389798],[-10610431.512515964,4586847.9323129011],[-10610686.946230801,4586847.8278488144],[-10610943.011045475,4586850.640249907],[-10611199.070654655,4586853.4461679701],[-10611203.713057898,4586853.4967455445],[-10611455.141276939,4586856.235178262],[-10611711.21590424,4586859.0192310344],[-10611717.433506984,4586859.0798450671],[-10611967.313358163,4586861.7831977168],[-10612223.383281026,4586864.5474193301],[-10612228.244934743,4586864.6033354606],[-10612479.472326076,4586867.320413392],[-10612526.124019001,4586867.8246631343],[-10612735.6055128,4586871.4523015674],[-10612734.055420518,4586830.1091671791],[-10612732.094034789,4586614.2089867191],[-10612729.752996769,4586356.6003513206],[-10612729.711282175,4586351.6959166303],[-10612727.424873753,4586099.0118573243],[-10612725.093348106,4585841.2932503549],[-10612980.278383611,4585844.6047329241],[-10613235.159472514,4585847.903760084],[-10613490.191033846,4585851.1893129684],[-10613745.228101971,4585854.468637893],[-10614000.151541084,4585857.7024559882],[-10614255.45791805,4585860.9329682058],[-10614511.12991312,4585864.1568695446],[-10614767.163922131,4585867.3792447448],[-10614769.116165388,4586124.6918997103],[-10614771.068408139,4586382.1383308107],[-10614773.023054603,4586639.4796760445],[-10614774.976500008,4586896.8237342583],[-10615014.554465409,4586903.0490339454],[-10615254.610477751,4586909.28259838],[-10615495.24375039,4586915.5211217562],[-10615736.377295373,4586921.7658757241],[-10615977.049013678,4586927.9966506828],[-10616218.981873458,4586934.2541209785],[-10616462.277991412,4586940.5359978527],[-10616706.884807475,4586946.8471125728],[-10616964.74731834,4586944.1628922271],[-10617125.118444009,4586942.4900417114],[-10617221.90722282,4586942.0822933735],[-10617478.389747905,4586940.9678927734],[-10617734.235945879,4586939.8490455635],[-10617732.854993429,4587197.7868287647],[-10617731.476746561,4587455.224908974],[-10617730.098797463,4587713.1156575251],[-10617728.720346864,4587971.1491323924],[-10617727.81794416,4588228.4264149247],[-10617726.918446904,4588485.2861781633],[-10617726.015653426,4588740.7133286167],[-10617725.107745335,4588997.7670100285],[-10617467.702120664,4588998.1229662197],[-10617211.74565242,4588998.4698876524],[-10617125.430269066,4589002.4936364917],[-10617019.878801834,4589005.8267630544],[-10616954.536612064,4589006.0863369787],[-10616697.434630064,4589007.1040137308],[-10616695.442831334,4589260.0868612723],[-10616693.427387839,4589516.1795526315],[-10616693.39411897,4589521.6644568034],[-10616691.384887138,4589776.900423659],[-10616689.604280015,4590003.0424153479],[-10616689.379630493,4590037.3128694687],[-10616687.661513915,4590295.5891475035],[-10616685.949409962,4590552.8052565092],[-10616684.247323155,4590808.9705286529],[-10616682.552250106,4591064.0792899728],[-10616681.95642329,4591321.0995671116],[-10616681.356583664,4591579.5737587027],[-10616680.757048076,4591837.3810620112],[-10616680.157011723,4592095.2146360204],[-10616679.558978673,4592352.8591375202],[-10616678.960243424,4592610.742455353],[-10616678.362113563,4592867.7818488497],[-10616677.765387781,4593124.3722326877],[-10616441.877304429,4593121.1479958603],[-10616206.821673956,4593117.9292254299],[-10615970.629844051,4593114.6817129338],[-10615733.965273743,4593111.4213558147],[-10615497.00266291,4593108.1526054163],[-10615259.913708003,4593104.8741887845],[-10615021.682947222,4593101.5760618588],[-10614782.59250335,4593098.2605129192],[-10614777.548939524,4593356.9169963058],[-10614772.50196996,4593615.7597043719],[-10614767.459003264,4593874.7667699866],[-10614763.744076107,4594065.565124413],[-10614762.887774488,4594133.9817121448],[-10614761.482956678,4594249.1912282053],[-10614759.501906268,4594392.469329536],[-10614755.93162779,4594650.7515821913],[-10614752.355843728,4594908.8379960405],[-10614748.782663427,4595166.7207953008],[-10614988.932563655,4595169.3323241826],[-10615228.719348604,4595171.9357126793],[-10615468.136510866,4595174.5228179647],[-10615707.181347305,4595177.1003833422],[-10615945.905917481,4595179.6737522893],[-10616184.267272258,4595182.239108054],[-10616422.239481987,4595184.7876717551],[-10616659.818441929,4595187.3259322429],[-10616662.060258506,4594929.6150875669],[-10616664.294861976,4594672.7152466048],[-10616666.533073181,4594415.123592603],[-10616668.7745889,4594157.3495646631],[-10616924.558545021,4594154.5989880031],[-10617180.37643962,4594151.8415422179],[-10617436.239885975,4594149.0805349695],[-10617692.096524186,4594146.312786052],[-10617689.83075464,4594404.1508781677],[-10617687.557172084,4594662.6961629344],[-10617685.279590826,4594920.0860604877],[-10617683.013730245,4595176.0610580873],[-10617682.15107871,4595431.4947679443],[-10617681.287323423,4595687.3787269844],[-10617680.417163594,4595942.7239196496],[-10617679.548005832,4596197.878574973],[-10617423.836783614,4596201.1504506301],[-10617168.41048724,4596204.4117646255],[-10616912.697762476,4596207.6616294319],[-10616656.892030781,4596210.9070424326],[-10616418.509381782,4596208.4236646313],[-10616179.753005235,4596205.930618749],[-10615940.622800998,4596203.4318493828],[-10615701.099246746,4596200.9226485863],[-10615461.252620658,4596198.7900946513],[-10615221.024257792,4596196.64863603],[-10614980.465216607,4596194.5028532343],[-10614739.553271674,4596192.3465114068],[-10614483.329585617,4596191.5688248696],[-10614227.389424367,4596190.784520017],[-10613971.414022887,4596189.9979249695],[-10613715.505197799,4596189.2054762933],[-10613713.303616766,4596446.3170714807],[-10613711.090713775,4596704.779218155],[-10613708.896541893,4596961.7028371468],[-10613706.714892928,4597217.2560480637],[-10613479.34266863,4597217.9263431281],[-10613451.306458864,4597217.7108025225],[-10613196.071539413,4597215.7511016959],[-10612941.334490422,4597213.7997972406],[-10612686.902190778,4597211.8439100049],[-10612687.350559596,4597470.518029388],[-10612687.80092098,4597730.6486688573],[-10612687.806940852,4597743.5520727923],[-10612685.567419969,4597988.9961201474],[-10612684.059477726,4598154.2666340191],[-10612683.638671944,4598246.7308624219],[-10612682.456975492,4598505.0727614136],[-10612681.277882954,4598763.2569356719],[-10612680.096989186,4599021.299156175],[-10612678.917197581,4599279.1892297314],[-10612932.107938115,4599278.8109514499],[-10613185.685622042,4599278.4268158665],[-10613439.654654443,4599278.0317316568],[-10613694.010830469,4599277.6297718929],[-10613948.752848662,4599277.2166089723],[-10614203.873000149,4599276.7959341416],[-10614459.387903936,4599276.3750024242],[-10614715.291352961,4599275.9455404729],[-10614711.924304985,4599533.4222543268],[-10614708.556555884,4599790.8792938013],[-10614705.190908857,4600048.3178031435],[-10614701.824460581,4600305.7366354121],[-10614446.664689157,4600306.2705531949],[-10614191.884452738,4600306.7958126254],[-10613937.496666135,4600307.3115225406],[-10613683.501329349,4600307.8188286126],[-10613429.896440746,4600308.2155125765],[-10613176.681398982,4600308.6051929258],[-10612923.854602182,4600308.9943617545],[-10612671.417652223,4600309.3766542673],[-10612669.537358163,4600567.0650549894],[-10612667.655561285,4600824.8806965621],[-10612665.778070271,4601082.525567486],[-10612663.902581731,4601340.1100313198],[-10612406.94350622,4601335.7471398888],[-10612150.10747242,4601331.3817030629],[-10611893.382566677,4601327.0146120843],[-10611636.792616321,4601322.6426840946],[-10611380.711650144,4601318.2713910043],[-10611124.494828906,4601313.8905522171],[-10610868.142553106,4601309.4963485179],[-10610611.6216847,4601305.0938724335],[-10610607.951083221,4601563.4638788784],[-10610604.264654713,4601822.9789228253],[-10610600.604663543,4602081.4688380472],[-10610596.948178187,4602339.6488347389],[-10610593.286989167,4602597.52627456],[-10610589.629706204,4602855.1226531425],[-10610585.968921259,4603112.3759398106],[-10610582.312543018,4603369.3376789605],[-10610577.325141562,4603625.7344663544],[-10610572.330728306,4603882.5512231663],[-10610572.261919964,4603886.5593658639],[-10610567.332006365,4604139.7856886694],[-10610562.315460125,4604397.4530484369],[-10610562.203592516,4604402.8028543796],[-10610557.290099906,4604655.5537170144],[-10610552.264435656,4604914.0642941156],[-10610552.213556379,4604916.9103648663],[-10610547.228055345,4605172.993725609],[-10610542.180658609,4605432.3445903063],[-10610798.224585591,4605435.6236012131],[-10611054.556443516,4605438.8990449188],[-10611311.176532784,4605442.1640440403],[-10611568.092361957,4605445.425475901],[-10611825.682180759,4605446.4457693947],[-10612083.010099187,4605447.4589326177],[-10612340.088431412,4605448.4587248834],[-10612596.848899035,4605449.4508778173],[-10612852.617424615,4605451.0064734342],[-10613108.775897969,4605452.5576089481],[-10613365.286275389,4605454.113454462],[-10613622.159068996,4605455.6653495021],[-10613617.203116223,4605712.6926124906],[-10613612.250166843,4605969.6251512049],[-10613607.300421163,4606226.4498396879],[-10613602.352177082,4606483.1903611384],[-10613859.451306572,4606484.4903053883],[-10614116.163291877,4606485.7831196105],[-10614372.488733629,4606487.0768281929],[-10614628.416619249,4606488.3617509808],[-10614623.383958718,4606743.9622555654],[-10614618.355604088,4606999.2986705182],[-10614613.327950988,4607254.4074073797],[-10614608.307006752,4607509.2191522261],[-10614602.237639554,4607766.9941182686],[-10614596.129516901,4608026.3975934479],[-10614590.046328206,4608284.8069145996],[-10614583.966643406,4608543.1004100693],[-10614577.900674153,4608801.2919577947],[-10614571.837508103,4609059.3507186649],[-10614565.769336049,4609317.314522638],[-10614559.702765588,4609575.1837448701],[-10614556.233076142,4609833.3239070373],[-10614552.763886398,4610091.5313101662],[-10614549.301603679,4610349.8097819518],[-10614545.836717028,4610608.1656990275],[-10614291.671265494,4610606.0374904945],[-10614037.165523302,4610603.8998555429],[-10613782.098136043,4610601.7575105],[-10613526.536080737,4610599.6045934055],[-10613270.624320392,4610597.9835407212],[-10613014.234711252,4610596.3524253992],[-10612757.564179637,4610594.7058942271],[-10612500.555760045,4610593.0509558665],[-10612505.715541242,4610334.9147500051],[-10612510.878726961,4610076.585346682],[-10612516.051123949,4609818.051038295],[-10612521.226925448,4609559.3235618919],[-10612264.299276033,4609557.3094581887],[-10612006.684737876,4609555.2851670515],[-10611749.189136671,4609553.2569255941],[-10611491.543163069,4609551.2209135154],[-10611234.886726523,4609549.189608546],[-10610975.84304796,4609547.1320751095],[-10610717.788706219,4609545.0802680682],[-10610459.564569781,4609543.0189068224],[-10610200.06879665,4609537.7467093682],[-10609945.18812551,4609532.5622652071],[-10609942.312121928,4609532.5083922911],[-10609686.247892138,4609527.2868830357],[-10609431.889923045,4609522.093520917],[-10609426.66885997,4609778.8475710051],[-10609421.45270337,4610035.4004553026],[-10609416.219719,4610292.9625100773],[-10609410.975916782,4610551.1393125514],[-10609155.491283411,4610545.5344147515],[-10608900.606139647,4610539.937415259],[-10608645.339358285,4610534.3238564702],[-10608390.019016242,4610528.7024005977],[-10608389.927974518,4610533.3735552002],[-10608385.256364003,4610790.4237293629],[-10608380.651358914,4611043.7600493394],[-10608380.58285341,4611047.1293764692],[-10608375.918255311,4611303.4746693298],[-10608371.259966005,4611559.5466188984],[-10608115.942502268,4611560.3893878534],[-10607861.780266283,4611561.2227179278],[-10607865.316004997,4611304.7930180617],[-10607868.854048122,4611048.0897377562],[-10607873.250079766,4610791.0133719696]]]},"attributes":{"objectid":344,"field_kid":"1000146321","approxacre":24759,"field_name":"COLONY-WELDA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":5009275.3899999997,"maxoilwell":612,"lastoilpro":4533.5,"lastoilwel":353,"lastodate":"2-2009","cumm_gas":73741,"maxgaswell":1,"lastgaspro":6011,"lastgaswel":1,"lastgdate":"3-1990","avgdepth":751.5,"avgdepthsl":-322.41699218999997,"polydate":1214179200000,"field_type":"O&G","field_kidn":1000146321}},{"geometry":{"rings":[[[-10559534.691971632,4577524.9277394619],[-10559790.934988542,4577525.0744814901],[-10559790.979174644,4577782.4610456275],[-10559791.024959249,4578040.234055086],[-10559791.067245908,4578297.3205507584],[-10559791.109140502,4578553.4596909489],[-10559535.528573921,4578554.6075771479],[-10559424.106345132,4578555.1056841305],[-10559285.800596086,4578554.4396280423],[-10559280.38182148,4578554.4153014896],[-10559142.117220093,4578553.7488638116],[-10559025.57917236,4578553.6720965393],[-10558778.172182174,4578553.5051365606],[-10558771.120316302,4578553.5015347479],[-10558517.014268838,4578553.3257606374],[-10558267.333245493,4578553.145488997],[-10558263.268739,4578553.133087418],[-10558009.867407681,4578552.9459994528],[-10557756.813979279,4578552.7531910902],[-10557502.115241269,4578553.0560696591],[-10557246.854852915,4578553.354381768],[-10556991.024404528,4578553.6429193281],[-10556734.662941273,4578553.926254929],[-10556734.338543236,4578296.9158003498],[-10556734.012244413,4578039.7526877606],[-10556733.701458298,4577783.1883771718],[-10556733.391370019,4577526.9667586396],[-10556988.650353594,4577526.4220332773],[-10557243.318352876,4577525.8714719303],[-10557497.457239535,4577525.3125335826],[-10557751.054599164,4577524.7490288634],[-10558004.806533335,4577524.6893971553],[-10558258.912978049,4577524.6242997535],[-10558513.356813552,4577524.5480211144],[-10558768.125325069,4577524.4655150333],[-10559023.278980443,4577524.6229387838],[-10559278.793253455,4577524.7750237584],[-10559534.691971632,4577524.9277394619]]]},"attributes":{"objectid":359,"field_kid":"1000146836","approxacre":477,"field_name":"FEAGINS WEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":13420,"maxoilwell":6,"lastoilpro":41,"lastoilwel":1,"lastodate":"2-1993","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146836}},{"geometry":{"rings":[[[-10546274.499790812,4557056.1653434001],[-10546529.762092374,4557055.82307899],[-10546529.168907644,4557312.0380586106],[-10546528.576925969,4557568.0767996162],[-10546527.997360159,4557823.9564039297],[-10546527.419197649,4558079.6582232928],[-10546271.958387677,4558080.3512123572],[-10546016.367327282,4558081.0378618902],[-10545760.868473601,4558081.7103126664],[-10545505.395750206,4558082.3754104376],[-10545505.273044592,4558337.3576529725],[-10545505.15258486,4558587.4709932776],[-10545505.1494346,4558592.7221964495],[-10545505.020032495,4558835.186821837],[-10545505.121139234,4558847.5875079418],[-10545505.858296091,4558937.1284675337],[-10545505.738858314,4559094.8004710507],[-10545505.73388716,4559102.1684654998],[-10545248.531203676,4559101.1660750536],[-10544990.901326591,4559100.157343003],[-10544734.810427804,4559099.137714358],[-10544479.568910446,4559098.1150468662],[-10544478.89246841,4558843.1234995555],[-10544478.216926329,4558588.2584005101],[-10544477.543291353,4558332.8385384558],[-10544476.866762789,4558076.3103090487],[-10544477.431470871,4557819.5254824692],[-10544477.994975125,4557563.0274206996],[-10544478.562889881,4557305.9240227481],[-10544479.132409284,4557048.511714044],[-10544736.256840827,4557050.6841313271],[-10544993.493301777,4557052.8512253268],[-10545250.853605818,4557055.0107142953],[-10545508.370390655,4557057.1637393078],[-10545763.80569198,4557056.8356735669],[-10546019.186330196,4557056.501396005],[-10546274.499790812,4557056.1653434001]]]},"attributes":{"objectid":415,"field_kid":"1031373809","approxacre":480,"field_name":"Fort Scott Townsite","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1031373809}},{"geometry":{"rings":[[[-10588291.552060427,4554262.7562985308],[-10588290.228598015,4554006.0248636948],[-10588198.095191516,4554006.4652516181],[-10587943.836299425,4554007.6583573213],[-10587784.879552808,4554008.399787371],[-10587689.604738791,4554008.8456336409],[-10587435.396404924,4554010.0232787216],[-10587278.853930956,4554010.7455661977],[-10587181.193777598,4554011.2035852643],[-10587181.661448063,4553756.4824897256],[-10587182.132629545,4553500.971563478],[-10587182.57738762,4553244.6761869192],[-10587183.022352936,4552987.5890683085],[-10587437.124757003,4552988.0081789223],[-10587691.27191251,4552988.4209536212],[-10587945.424274128,4552988.8180155437],[-10588199.603166264,4552989.2091217516],[-10588453.664423345,4552989.5955397971],[-10588707.495015571,4552989.9768898413],[-10588961.061604669,4552990.3526651151],[-10589214.395026032,4552990.7236258201],[-10589215.190992991,4552735.1439885702],[-10589215.987462115,4552479.3918424984],[-10589216.778429804,4552223.0924024843],[-10589217.569293799,4551967.2062469646],[-10589217.307946732,4551711.6314811418],[-10589217.0471994,4551456.1713184882],[-10589216.769537874,4551200.1236122278],[-10589216.494282266,4550943.7241773177],[-10589216.219028424,4550687.1306392802],[-10589215.944179608,4550430.0265540909],[-10589215.673135547,4550172.8833413962],[-10589215.400695961,4549915.057984543],[-10589294.753714534,4549916.7426082352],[-10589474.097878929,4549917.2443120023],[-10589732.837323355,4549917.9639570462],[-10589739.351704609,4549917.9890230456],[-10589991.640040424,4549918.6855021212],[-10590250.483103933,4549919.3941259217],[-10590259.063457942,4549919.4104459323],[-10590509.26910197,4549920.0945157893],[-10590768.089639654,4549920.7960456945],[-10590774.483782865,4549920.8166782465],[-10591026.903970281,4549921.489088173],[-10591285.735320522,4549922.1731364578],[-10591282.692497006,4549665.9662356498],[-10591279.666379461,4549411.2518859319],[-10591276.582723817,4549153.3835013667],[-10591273.52718056,4548897.7627318213],[-10591273.499182357,4548893.9323534882],[-10591270.438942604,4548637.3098451151],[-10591267.39371001,4548381.8259998104],[-10591264.317163626,4548123.8432833804],[-10591261.226912733,4547864.5962454509],[-10591504.561698625,4547862.8601440098],[-10591744.934282301,4547861.1388683161],[-10591748.270514192,4547861.1140364418],[-10591992.163741581,4547859.3671688782],[-10592231.818200532,4547857.6460222211],[-10592236.308257595,4547857.6205543941],[-10592480.725587139,4547855.8532951484],[-10592725.377085701,4547854.0799563592],[-10592970.251440229,4547852.3071240373],[-10593215.360364255,4547850.525679118],[-10593214.19359705,4547595.420733965],[-10593213.041319316,4547343.3704326563],[-10593213.036243154,4547340.0403757552],[-10593211.852861784,4547084.393996371],[-10593210.687266098,4546832.6505040377],[-10593210.66988327,4546828.4827550147],[-10593210.291784834,4546745.9003742328],[-10593212.622108057,4546572.3051444367],[-10593216.027478542,4546318.7499759085],[-10593216.047427563,4546315.8197785793],[-10593219.470747907,4546058.9941391181],[-10593222.898476556,4545801.8154616691],[-10593481.671244817,4545806.8417894021],[-10593738.965915697,4545811.831147084],[-10593995.348739432,4545816.7950566178],[-10594250.631099423,4545821.7319988273],[-10594254.638401326,4545821.8084737286],[-10594507.429900933,4545826.6840086812],[-10594764.161625411,4545831.6279165996],[-10594770.787634574,4545831.7540242849],[-10595020.842791744,4545836.5738528324],[-10595277.493322907,4545841.511940293],[-10595273.705888843,4545582.9622699302],[-10595272.932373932,4545530.1016544029],[-10595272.955834087,4545325.4533897908],[-10595272.95718478,4545286.4779209113],[-10595272.970607795,4545151.6718040342],[-10595273.05875035,4545068.9177392777],[-10595273.330652935,4544813.2561073201],[-10595273.384383246,4544760.9481480252],[-10595273.617604552,4544554.0573546374],[-10595273.78987219,4544401.157569197],[-10595274.137488035,4544298.8468079828],[-10595274.259123992,4544265.7798703862],[-10595274.605732607,4544175.3108597668],[-10595276.369512213,4544047.4254176226],[-10595279.786237011,4543799.6569447862],[-10595534.606303779,4543790.50072648],[-10595776.7572244,4543781.7922130395],[-10595787.449400509,4543781.4168130802],[-10596040.108185338,4543772.3350626118],[-10596280.683296246,4543763.6801251667],[-10596292.011101941,4543763.266997043],[-10596544.882375505,4543766.1104290299],[-10596790.534456367,4543768.8670242392],[-10596798.075618787,4543768.9415799063],[-10597051.493720375,4543771.7698184922],[-10597305.48818402,4543774.5976762306],[-10597560.420814073,4543776.508162397],[-10597815.147407429,4543778.4105461566],[-10598070.019467851,4543780.3079919377],[-10598324.924065622,4543782.1997403381],[-10598579.698714118,4543784.0860448517],[-10598834.781816879,4543785.9667780818],[-10599089.835986327,4543787.8372562984],[-10599345.790990479,4543789.706466645],[-10599343.448679807,4544047.9529047413],[-10599342.291815419,4544175.4795245361],[-10599342.02300507,4544286.1438927967],[-10599341.984788723,4544305.1983077591],[-10599341.307292042,4544561.3725806605],[-10599340.677718019,4544799.0331337964],[-10599340.650328169,4544816.5345253842],[-10599339.977855628,4545070.6939440174],[-10599339.342856511,4545310.4522194713],[-10599339.29678308,4545323.7685853112],[-10599338.82570512,4545515.6988062086],[-10599338.843982367,4545575.7847078796],[-10599338.923404088,4545826.574451508],[-10599593.441919444,4545827.8303050417],[-10599847.81186422,4545829.0785612715],[-10599850.630601542,4545829.0928641567],[-10600102.06257215,4545830.3132686168],[-10600356.18533319,4545831.5396188507],[-10600360.473558201,4545831.5636689262],[-10600610.148010287,4545832.7731873523],[-10600863.962917758,4545833.9951064391],[-10600870.63347901,4545834.0177584179],[-10601117.639166106,4545835.2001843182],[-10601371.184564153,4545836.40551583],[-10601371.401883891,4546092.5733385812],[-10601371.61940074,4546349.0906427475],[-10601371.623040538,4546356.1691546617],[-10601371.832609689,4546605.9380786782],[-10601372.048718832,4546863.1364400303],[-10601372.069961805,4546872.0895913905],[-10601372.286950182,4547120.6930982172],[-10601372.511362677,4547378.5835104361],[-10601372.527230488,4547384.1271215631],[-10601372.728663981,4547636.8126409259],[-10601372.93404901,4547895.3332731994],[-10601118.43788326,4547892.7552013341],[-10600862.959389428,4547890.160540672],[-10600608.175993904,4547887.5638524638],[-10600353.542170186,4547884.9617183479],[-10600099.059119591,4547882.360470999],[-10599844.720434804,4547879.7556775566],[-10599590.508395515,4547877.1425252389],[-10599336.455038482,4547874.5250668712],[-10599081.822089111,4547874.854582537],[-10598833.593695503,4547875.1710379142],[-10598827.714943731,4547875.1733314469],[-10598574.15783013,4547875.4844798855],[-10598328.588090187,4547875.7800312536],[-10598321.042323809,4547875.7861283002],[-10598071.753712637,4547876.0927072624],[-10598010.134041671,4547876.1668172795],[-10597822.385887988,4547878.8968934249],[-10597569.599729614,4547882.5658789454],[-10597314.608738784,4547886.2618482988],[-10597314.549168929,4548141.9292291421],[-10597314.489999374,4548397.6204941077],[-10597314.408103548,4548653.3365317509],[-10597314.327108542,4548909.0831705788],[-10597314.263633477,4549164.8563594986],[-10597314.201659981,4549420.6531871548],[-10597314.137884162,4549676.4844227973],[-10597314.073407302,4549932.3485489162],[-10597058.580092859,4549931.4352040533],[-10596802.649676487,4549930.5136262178],[-10596798.518832566,4549930.495014837],[-10596546.27124564,4549929.5855889572],[-10596289.477237538,4549928.6543858191],[-10596283.956797801,4549928.6272904621],[-10596032.256239222,4549927.7034219513],[-10595774.597538218,4549926.7515724814],[-10595770.38680259,4549926.7275141347],[-10595516.493225485,4549925.7954171151],[-10595257.890640497,4549924.8382496079],[-10595257.78421801,4550181.7503519496],[-10595257.680001402,4550438.2944427887],[-10595257.558868809,4550694.4612468518],[-10595257.439541636,4550950.2601114819],[-10595257.324222459,4551205.6865753345],[-10595257.21140961,4551460.7342762463],[-10595257.082882009,4551715.4206711352],[-10595256.953957308,4551969.7380046453],[-10595003.519619811,4551968.7473543016],[-10594749.879546082,4551967.7504960997],[-10594746.581859099,4551967.7383413846],[-10594496.018518694,4551966.7426153626],[-10594241.930530721,4551965.7278933031],[-10594237.5194651,4551965.7173887044],[-10593987.642112518,4551964.7170996414],[-10593733.146556554,4551963.6917357147],[-10593729.452214003,4551963.6846501948],[-10593478.433050314,4551962.6634582505],[-10593223.490581252,4551961.6195969619],[-10593224.265895693,4552217.1740656635],[-10593225.045303689,4552473.9845468802],[-10593225.84343884,4552730.1669170242],[-10593226.64177455,4552986.3164403113],[-10593227.435206553,4553242.2560882038],[-10593228.230935557,4553498.8337419815],[-10593228.995935421,4553754.726058865],[-10593229.142465804,4553803.9019724159],[-10593226.786919937,4554010.6354511138],[-10592983.60837107,4554009.6854247469],[-10592881.250931112,4554009.2832258428],[-10592740.189846642,4554008.7312170817],[-10592495.384529825,4554007.7599050971],[-10592372.083639968,4554007.2679152489],[-10592249.559636697,4554007.4020871371],[-10592002.207984978,4554007.643317597],[-10591857.108456759,4554007.7821156243],[-10591753.659859268,4554007.8851851001],[-10591503.922868358,4554008.1216066787],[-10591345.034505481,4554008.2685543736],[-10591344.583825368,4554263.5870599477],[-10591344.134147404,4554518.799926443],[-10591343.694081737,4554773.8777430682],[-10591343.253015839,4555028.8582687089],[-10591343.133714098,4555284.4488522084],[-10591343.014703706,4555541.0586784882],[-10591342.887887273,4555797.3457940435],[-10591342.759167543,4556053.7650920488],[-10591090.676602267,4556053.1466579009],[-10590839.107226336,4556052.5223915791],[-10590588.222536596,4556051.9031933518],[-10590337.876565501,4556051.2799374145],[-10590083.314140638,4556052.0078822551],[-10589829.758572061,4556052.7265711799],[-10589575.390770778,4556053.4460231327],[-10589320.803617666,4556054.1604056954],[-10589293.612893397,4556054.2390740784],[-10589066.063899817,4556053.6888862811],[-10588811.100826805,4556053.0665313015],[-10588556.029229203,4556052.4402473159],[-10588300.726466216,4556051.8052180549],[-10588299.41800854,4555796.4635393433],[-10588298.117948718,4555542.4672114849],[-10588296.799578497,4555287.2663035234],[-10588295.47900885,4555031.7177978298],[-10588294.175566202,4554775.3399903309],[-10588292.871323053,4554518.9193295371],[-10588291.552060427,4554262.7562985308]]]},"attributes":{"objectid":617,"field_kid":"1000146305","approxacre":10113,"field_name":"ELSMORE WEST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":601446.44999999995,"maxoilwell":76,"lastoilpro":36.990000000000002,"lastoilwel":44,"lastodate":"12-2008","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146305}},{"geometry":{"rings":[[[-10613164.008512065,4853833.4815634275],[-10613163.904411651,4853569.4207884111],[-10612915.121255072,4853569.0632854737],[-10612665.866059311,4853568.7001561634],[-10612417.286735578,4853568.3491854277],[-10612169.034285164,4853567.9926117798],[-10611921.120721769,4853567.628869297],[-10611673.368242312,4853567.2578222463],[-10611425.770739894,4853566.8914786046],[-10611178.337024515,4853566.5201798882],[-10610916.537008289,4853567.4792784164],[-10610654.406514592,4853568.4357568501],[-10610651.417700991,4853568.4607296009],[-10610391.935031541,4853569.4088018667],[-10610129.102435909,4853570.3609525785],[-10610124.866497882,4853570.3882381199],[-10609864.1318985,4853571.3332717484],[-10609600.688905694,4853572.2830552822],[-10609336.668553375,4853573.2219884703],[-10609072.866550418,4853574.1533577824],[-10608811.682738671,4853575.2108900566],[-10608549.499185041,4853576.2660436397],[-10608545.590420507,4853576.2608383922],[-10608286.364044519,4853577.3185589034],[-10608022.261899618,4853578.3881444894],[-10607759.963614952,4853579.4404235091],[-10607496.496595381,4853580.4909714926],[-10607234.266488461,4853581.5192363504],[-10606971.305947237,4853582.5435641333],[-10606705.154465599,4853584.2567033339],[-10606439.663838727,4853585.9591592783],[-10606174.372339312,4853587.661490838],[-10605909.433042124,4853589.3533911165],[-10605645.265025856,4853591.0408765161],[-10605381.699798038,4853592.7184600849],[-10605118.396569481,4853594.3948769113],[-10604855.418111833,4853596.0633415915],[-10604592.29560056,4853599.509540203],[-10604336.143550221,4853602.8585737478],[-10604329.634315968,4853602.9301708136],[-10604067.423846405,4853606.3655650746],[-10603814.554144893,4853609.6735822065],[-10603805.669998342,4853609.7893572692],[-10603543.000804789,4853613.207641731],[-10603290.159735896,4853616.4921675902],[-10603281.766049389,4853616.5843322389],[-10603208.655957736,4853617.5672635147],[-10603021.84994817,4853618.4502696693],[-10602763.186409291,4853619.667502054],[-10602502.695787961,4853619.7749820706],[-10602240.461986329,4853619.8772083325],[-10602237.843211321,4853619.8719380796],[-10602077.523585923,4853619.9602885405],[-10601976.477191234,4853619.3013274046],[-10601710.70015266,4853617.5642677285],[-10601446.861215649,4853615.825547711],[-10601183.798760589,4853614.0861897124],[-10600918.257088816,4853612.3262927495],[-10600737.019791931,4853611.1220581373],[-10600670.376982475,4853610.8252968909],[-10600651.330844492,4853610.641160191],[-10600653.243860025,4853342.400992048],[-10600655.104261959,4853081.1897635385],[-10600655.146469267,4853074.987580237],[-10600657.055291759,4852808.5012233704],[-10600658.904100925,4852550.3710175846],[-10600658.94650011,4852542.8947321465],[-10600660.836807346,4852277.2573595792],[-10600661.705294749,4852155.2522500688],[-10600663.11519902,4852018.2376105301],[-10600663.16621851,4852012.3640454384],[-10600665.859247083,4851748.0936249243],[-10600668.547674689,4851484.4464326864],[-10600669.428342,4851219.8616880113],[-10600670.3103106,4850955.2434013058],[-10600671.180168729,4850691.1247407207],[-10600672.049928978,4850427.3413890796],[-10600672.918989042,4850163.6468446124],[-10600673.787149495,4849900.1645301031],[-10600674.662019193,4849636.9265249223],[-10600675.535588959,4849373.918849282],[-10600675.226213053,4849110.7565883501],[-10600674.917236898,4848847.4974421859],[-10600674.605857199,4848584.1253719535],[-10600674.294376647,4848320.6510838959],[-10600673.749131685,4848057.3943177946],[-10600673.210009789,4847796.6093335804],[-10600673.182555696,4847793.1178917289],[-10600671.802156491,4847529.1717104344],[-10600670.419552218,4847264.859339322],[-10600670.971247097,4847000.5344642373],[-10600671.521543169,4846736.6336091179],[-10600672.071138972,4846472.8140987242],[-10600672.61853371,4846209.2131359316],[-10600673.176433675,4845944.5872432869],[-10600673.735531051,4845679.3590640249],[-10600674.285321124,4845414.6319722263],[-10600674.834711796,4845150.064375421],[-10600674.306176066,4844885.4388443502],[-10600673.778743086,4844621.054689317],[-10600673.245905109,4844356.8593385005],[-10600672.7156715,4844092.8922879742],[-10600672.18334165,4843829.8760439334],[-10600671.651410488,4843566.6041384982],[-10600671.130692149,4843303.3556249226],[-10600670.605562977,4843039.2347511025],[-10600672.80663069,4842774.4034513142],[-10600674.334763477,4842590.4955697916],[-10600674.322622161,4842510.0417650789],[-10600674.329007907,4842506.7590891002],[-10600674.319282472,4842245.2891590707],[-10600674.310436264,4841980.5056545725],[-10600674.315508666,4841975.4164610114],[-10600674.308589609,4841714.4461060604],[-10600674.301733322,4841447.7942487625],[-10600674.306013161,4841443.9779486461],[-10600674.294273015,4841180.6419046856],[-10600674.283605646,4840912.9756870922],[-10600420.834474348,4840912.1018667547],[-10600169.339566879,4840911.227178311],[-10599916.537872065,4840910.3289956609],[-10599663.519030007,4840909.4222043958],[-10599411.262355316,4840908.5293786982],[-10599158.779823486,4840907.6291174097],[-10598951.842523176,4840906.8760236902],[-10598906.370373968,4840906.614664237],[-10598653.061898272,4840905.1632310804],[-10598392.064571965,4840903.6305403328],[-10598131.441371256,4840902.0929045053],[-10598128.234421559,4840902.0667599486],[-10598014.208554989,4840901.385782768],[-10597870.104649227,4840899.238899325],[-10597608.267650245,4840895.3335477747],[-10597603.059422605,4840895.2406145111],[-10597586.104726363,4840894.9959381865],[-10597344.844169635,4840894.8351907805],[-10597081.212854713,4840894.6517733643],[-10597078.228258098,4840894.6335857036],[-10596817.187291091,4840894.4649576405],[-10596553.347438863,4840894.2871408118],[-10596413.80473979,4840894.4473029738],[-10596293.151038243,4840894.8491873695],[-10596031.961609798,4840895.7137719495],[-10595770.990029352,4840896.5794045795],[-10595644.967017686,4840896.9947242364],[-10595509.845853254,4840897.5399340149],[-10595248.663334159,4840898.5756793367],[-10594987.168759996,4840899.6073767329],[-10594910.983462948,4840899.8894319935],[-10594725.598697906,4840900.3567173975],[-10594463.859943178,4840901.0099805854],[-10594208.651102262,4840899.3765228493],[-10594201.131044615,4840899.4038572256],[-10593938.083502904,4840900.3734693825],[-10593763.920009315,4840901.0401973706],[-10593675.752271183,4840900.6562418565],[-10593413.806767482,4840899.5138192875],[-10593240.016988158,4840898.748312599],[-10593152.221376287,4840898.7321053715],[-10592891.040751323,4840898.6787106739],[-10592758.145816129,4840898.647267974],[-10592630.206710381,4840897.297367],[-10592590.031988077,4840896.8743534777],[-10592369.693042131,4840896.9620230282],[-10592106.584810222,4840895.2320502326],[-10591845.052371452,4840893.5052419137],[-10591582.372426447,4840891.7493376732],[-10591319.431083759,4840889.9861274632],[-10591055.964443138,4840888.2222535266],[-10590791.522392239,4840886.4448001795],[-10590528.44068921,4840884.6595563591],[-10590265.902204201,4840882.8711963436],[-10590005.130430643,4840881.2138862442],[-10589750.736715518,4840879.5911358194],[-10589744.933511132,4840879.5546338633],[-10589485.047445327,4840877.9065993512],[-10589295.036301229,4840876.6977669401],[-10589295.033188881,4840863.6450441284],[-10589231.167302145,4840862.8339383546],[-10589225.610577956,4840862.7642008271],[-10588966.21966067,4840859.4283079347],[-10588711.744337598,4840856.1507974174],[-10588707.290368324,4840856.0786082288],[-10588448.830710391,4840852.7557734633],[-10588190.851098478,4840849.4319073446],[-10587937.529021017,4840850.1313722944],[-10587682.268037094,4840850.8288378827],[-10587666.6103187,4840850.8598974627],[-10587425.050426668,4840851.5381216174],[-10587165.916135192,4840852.2580511877],[-10587145.189148167,4840852.3179347292],[-10586904.971783893,4840852.9770271974],[-10586642.163211109,4840853.6917894892],[-10586626.588186843,4840853.7233724156],[-10586377.448969478,4840854.3791334257],[-10586223.441010302,4840854.7797349617],[-10586110.863684626,4840853.4801122677],[-10586064.086544206,4840852.6291149799],[-10585849.156481953,4840856.0678794114],[-10585588.31517897,4840860.2354732137],[-10585326.68157495,4840864.4323819047],[-10585192.219174834,4840866.585308942],[-10585064.810790138,4840867.3824142888],[-10584802.858400727,4840869.0072273668],[-10584540.747030454,4840870.6239551604],[-10584278.412005611,4840872.2202121895],[-10584015.863537941,4840873.8107291246],[-10583752.358269693,4840874.1118533332],[-10583492.707087366,4840874.4034188604],[-10583489.43646544,4840874.4111658847],[-10583227.092318509,4840874.7012362145],[-10582969.834459711,4840874.9781258823],[-10582965.337342015,4840874.9849324739],[-10582704.128486961,4840875.2597768698],[-10582446.880539361,4840875.5231096251],[-10582443.487077624,4840875.5279859714],[-10582183.425828267,4840875.768181338],[-10581923.927619614,4840876.0016109468],[-10581661.019094063,4840872.4626594679],[-10581619.598752059,4840871.9037837414],[-10581401.569047963,4840873.5170853138],[-10581398.42136598,4840873.5279637352],[-10581136.284971148,4840875.4430836262],[-10580878.94843835,4840877.3165988531],[-10580874.654551998,4840877.3292762013],[-10580613.162790915,4840879.2272048388],[-10580355.223372255,4840881.0928861657],[-10580352.360314282,4840881.1136783101],[-10580092.229902662,4840883.0051213605],[-10579832.803292025,4840884.886152436],[-10579569.584257884,4840885.9693046259],[-10579306.679781714,4840887.0442516841],[-10579044.067638069,4840888.0940465201],[-10578781.783167325,4840889.1366793821],[-10578522.81056552,4840890.1722182035],[-10578262.77385281,4840891.205516981],[-10578004.263376841,4840892.2177326921],[-10577746.420760879,4840893.2196655488],[-10577484.364555646,4840894.7846517507],[-10577228.600110127,4840896.3040257879],[-10577223.61203395,4840896.3315482754],[-10576964.123550875,4840897.8795169387],[-10576710.327845918,4840899.3875955474],[-10576705.912220987,4840899.3937522676],[-10576446.087455343,4840900.9294605339],[-10576189.601389,4840902.43852174],[-10576186.37141335,4840902.4454875989],[-10575926.745474277,4840903.9865460619],[-10575667.11643173,4840905.5206959406],[-10575665.588341491,4840642.6108093113],[-10575664.070379172,4840381.2861641487],[-10575662.562012048,4840118.4769284446],[-10575661.050035605,4839855.1897436352],[-10575659.533761831,4839592.6430806927],[-10575658.014579492,4839329.6132663311],[-10575656.510409322,4839066.1321408516],[-10575655.003230993,4838802.2177252499],[-10575652.59541893,4838537.5124133518],[-10575650.194823923,4838273.6774031827],[-10575647.769587805,4838008.6214958355],[-10575645.339040173,4837743.0689628711],[-10575642.923715504,4837478.0811210265],[-10575640.507488355,4837212.9809618872],[-10575640.490638224,4837210.0261721089],[-10575638.083251014,4836947.8038073545],[-10575635.649401229,4836682.5104421014],[-10575633.453647578,4836419.6310481457],[-10575631.331970967,4836165.6242392603],[-10575631.261903482,4836157.2518918235],[-10575629.053545211,4835895.3505226029],[-10575626.927682178,4835643.1412659651],[-10575626.847994706,4835633.9089232134],[-10575624.641146798,4835372.8801541878],[-10575622.497347077,4835119.1655380148],[-10575622.4534257,4835112.3551210379],[-10575620.26280546,4834852.2513166638],[-10575620.256691551,4834851.588063091],[-10575618.077595804,4834592.5926790424],[-10575619.18119536,4834329.4424109003],[-10575620.286091603,4834065.8332468076],[-10575620.305872019,4834061.8141789623],[-10575621.381972967,4833801.7821573894],[-10575622.475547168,4833537.296472555],[-10575622.509527868,4833531.7607130613],[-10575623.572519781,4833272.288953457],[-10575623.598382752,4833265.9435214875],[-10575624.858002381,4833006.8237319747],[-10575624.862758383,4833002.1080939053],[-10575626.094023591,4832740.8747882303],[-10575627.348661127,4832474.4568806402],[-10575627.291943839,4832211.7851340957],[-10575627.235422868,4831948.7475554785],[-10575627.183803428,4831685.3307592487],[-10575627.13468294,4831421.5497523276],[-10575627.150960241,4831417.6136678606],[-10575627.159142572,4831157.420453568],[-10575627.167880191,4830892.9065547008],[-10575627.162739519,4830889.5849629892],[-10575627.16710311,4830628.0316570252],[-10575627.170827489,4830362.8144111782],[-10575629.160023376,4830098.4318017941],[-10575631.119925402,4829837.8117039083],[-10575631.131398946,4829834.0397931673],[-10575632.323317563,4829677.8319840077],[-10575632.95708902,4829569.6152948411],[-10575634.481221575,4829309.7433932172],[-10575634.519791916,4829305.1930969432],[-10575636.074999765,4829041.6041707322],[-10575637.627312815,4828778.5401395177],[-10575639.21693716,4828513.5446978882],[-10575640.812049953,4828247.4477113271],[-10575902.62711693,4828247.7272952152],[-10576157.292633321,4828247.9910731493],[-10576163.786035432,4828247.9786107494],[-10576424.19600017,4828248.2329015844],[-10576675.00081501,4828248.4706726307],[-10576683.901961945,4828248.4617870459],[-10576810.186024046,4828248.5571955172],[-10576943.536431905,4828248.0466113295],[-10577193.957289863,4828247.0824407553],[-10577201.879420165,4828247.0368159898],[-10577458.846340192,4828246.0505500343],[-10577714.365009297,4828245.0622940054],[-10577974.908411313,4828244.374779596],[-10578236.095446963,4828243.6782983094],[-10578242.221129667,4828243.651765761],[-10578497.936827898,4828242.9366570646],[-10578760.441765349,4828242.1964647854],[-10578767.138198996,4828242.1885642866],[-10579022.554656425,4828241.4873782359],[-10579284.582149945,4828240.7613644358],[-10579289.154962819,4828240.7599191647],[-10579478.990662299,4828240.2121130293],[-10579546.642378418,4828239.8802927295],[-10579808.337284135,4828238.5892370809],[-10580071.690187817,4828237.8003741009],[-10580330.234510031,4828237.0201107943],[-10580334.929662442,4828237.023355552],[-10580597.688088568,4828236.2353884643],[-10580853.190042799,4828235.4627283802],[-10580860.092110967,4828235.4612125158],[-10581121.727056421,4828234.6693106648],[-10581378.67806248,4828233.8847097708],[-10581382.680624958,4828233.8620286044],[-10581642.923583593,4828233.0624095518],[-10581902.410280103,4828232.2587350858],[-10582163.102842702,4828230.8862825371],[-10582424.058405116,4828229.506936417],[-10582685.292284489,4828228.0993456366],[-10582946.808685949,4828226.6856429288],[-10582951.91320459,4828226.6593445735],[-10583208.797326054,4828225.2843204085],[-10583470.661023725,4828223.8754434334],[-10583473.887201348,4828223.8656313932],[-10583732.402782317,4828222.4544553589],[-10583994.023002274,4828221.0205750437],[-10584256.220783032,4828219.7394245379],[-10584513.04563918,4828218.4789671591],[-10584518.475629017,4828218.4630924724],[-10584780.761810401,4828217.1585094072],[-10585034.966679864,4828215.8874391951],[-10585043.133088775,4828215.845465919],[-10585305.519884966,4828214.533594423],[-10585559.951212665,4828213.254067257],[-10585567.137604492,4828213.2190992711],[-10585827.971830886,4828211.9002876123],[-10586088.037681427,4828210.5793730998],[-10586345.182208199,4828209.6966098212],[-10586603.843564,4828208.8006056463],[-10586610.703884529,4828208.7936205771],[-10586863.9851074,4828207.914143214],[-10587125.651889205,4828206.9998585964],[-10587133.368986294,4828206.9824800817],[-10587387.95549689,4828206.0740030492],[-10587650.931370743,4828205.1288961563],[-10587656.036189727,4828205.1002543075],[-10587874.820088219,4828204.3351139668],[-10587914.561278882,4828203.389244305],[-10587941.383446509,4828202.7510784212],[-10588178.853652779,4828202.3795955945],[-10588178.879389718,4827936.8019448547],[-10588178.904338557,4827672.12690611],[-10588178.924677666,4827407.1458014343],[-10588178.943916917,4827142.2693672022],[-10588178.964359213,4826877.5169910891],[-10588178.984595964,4826612.3994796528],[-10588178.990629356,4826348.1876894282],[-10588178.999172734,4826084.4816839751],[-10588179.829866376,4825821.6742688119],[-10588180.644611947,4825563.7778479792],[-10588180.666776948,4825559.5578816421],[-10588181.493985927,4825298.1063065864],[-10588182.296673013,4825044.083553995],[-10588182.325409232,4825037.3239167919],[-10588183.160455218,4824777.8422644837],[-10588183.971985472,4824526.1396840774],[-10588183.992798595,4824518.3959888304],[-10588184.82554258,4824258.962052213],[-10588185.659287756,4823999.5338165918],[-10588185.678455373,4823736.719326253],[-10588185.697733242,4823474.620704365],[-10588185.721241368,4823214.308708854],[-10588185.744569642,4822955.4280926585],[-10588185.762944419,4822693.205026322],[-10588185.783115212,4822430.5663575511],[-10588185.810688363,4822167.5082157888],[-10588185.838656204,4821904.0539236115],[-10588185.68964207,4821642.0030099936],[-10588185.618946716,4821514.9954894921],[-10588184.965366768,4821379.6255058022],[-10588184.943148922,4821373.1519723199],[-10588184.706812376,4821319.480884566],[-10588185.388555281,4821163.0630894685],[-10588185.226311099,4821116.9391654432],[-10588184.300897432,4820853.9611370824],[-10588184.291771702,4820845.8911455879],[-10588183.436754739,4820591.0690009044],[-10588182.552783202,4820327.7535786834],[-10588182.524961283,4820321.4439888075],[-10588181.655991578,4820064.0683692573],[-10588181.522468379,4820024.1250606496],[-10588180.615530485,4819800.0097566862],[-10588180.321057675,4819538.5450220006],[-10588180.028601231,4819278.0731041953],[-10588179.724721562,4819016.8967426457],[-10588179.420039011,4818755.5908969427],[-10588179.136780038,4818494.2328365119],[-10588178.864185521,4818243.5369501831],[-10588178.910182934,4818232.6865212182],[-10588179.906781314,4817971.0898524318],[-10588180.90447852,4817709.3243277306],[-10588182.503061475,4817447.5443442632],[-10588184.106142253,4817185.2506347811],[-10588185.716531869,4816922.9894285761],[-10588187.329021964,4816660.5917989155],[-10588187.401687812,4816645.4030878125],[-10588184.974278275,4816397.904750905],[-10588182.402794555,4816135.7583961254],[-10588179.818079893,4815872.5262644207],[-10588177.226848874,4815608.691235113],[-10588176.015402945,4815345.5398452235],[-10588174.803154916,4815082.3198412675],[-10588174.770029267,4815076.1784293903],[-10588173.64654517,4814838.3267703792],[-10588173.788830848,4814818.9684339846],[-10588175.740691582,4814555.4383624662],[-10588175.783537509,4814548.2350606937],[-10588177.681339424,4814291.8987259492],[-10588179.491012761,4814047.5919244224],[-10588179.213220805,4814028.383059334],[-10588179.141366715,4814023.346315694],[-10588177.443907904,4813903.0615662979],[-10588176.673554288,4813765.0410550795],[-10588175.201010613,4813501.9974691216],[-10588175.058375316,4813315.1351024481],[-10588176.610970598,4813274.7082920065],[-10588176.424176041,4813241.0617374908],[-10588175.703396607,4813111.2766009346],[-10588175.698479328,4812991.5945885684],[-10588175.682097878,4812980.2155841999],[-10588175.664749352,4812719.5035098353],[-10588175.649428681,4812474.5672174934],[-10588175.656212822,4812458.9328995142],[-10588175.630568154,4812199.1667876169],[-10588175.607080899,4811950.2404957339],[-10588175.608328968,4811939.5185565213],[-10588175.6037107,4811679.9320472442],[-10588175.601619845,4811596.8447312675],[-10588177.630513558,4811420.3646601187],[-10588179.054378798,4811157.3866965696],[-10588180.474849898,4810895.0880942736],[-10588181.872184688,4810632.098467581],[-10588183.270717788,4810368.894043861],[-10588182.905854326,4810106.9830823084],[-10588182.540582495,4809844.5288875131],[-10588182.167195207,4809581.6513154777],[-10588181.793400662,4809318.3077773135],[-10588180.521167567,4809054.1535564894],[-10588179.269014677,4808794.0146771939],[-10588179.235939406,4808791.3954906426],[-10588177.98546955,4808529.9507013652],[-10588176.742126608,4808269.8307790617],[-10588175.478945078,4808008.6128317835],[-10588174.214454811,4807746.9023994803],[-10588172.961972123,4807484.7760451436],[-10588171.707680734,4807222.2004120145],[-10588173.452034539,4806960.83551386],[-10588175.195391061,4806699.7370054396],[-10588175.21783947,4806694.3383800192],[-10588176.919127841,4806438.8235426899],[-10588178.654180568,4806178.1175851543],[-10588178.710920211,4806169.3670369508],[-10588179.642251328,4806027.260067747],[-10588179.716353402,4805916.6716010477],[-10588179.892607346,4805654.8128596088],[-10588180.047718145,4805447.5314941043],[-10588180.021398777,4805392.3838435942],[-10588179.944955489,4805234.7633149819],[-10588181.468797863,4805129.9501673095],[-10588178.861584524,4804869.2006868217],[-10588178.081574246,4804791.0682052514],[-10588177.043664904,4804607.8513178267],[-10588176.271798067,4804476.2188373106],[-10588175.859774917,4804346.8375116177],[-10588175.274068927,4804162.6738892198],[-10588174.20814939,4804085.793228549],[-10588171.989295395,4803923.9774606824],[-10588173.26371523,4803823.5472776014],[-10588176.594768876,4803561.1625424875],[-10588179.936932517,4803298.5762444139],[-10588183.283197818,4803035.7663220689],[-10588442.484357599,4803034.7193203606],[-10588700.020412898,4803033.6709959051],[-10588957.51231773,4803032.6190344729],[-10589114.355406066,4803031.9745672541],[-10589114.977561187,4802795.1579140266],[-10589114.769591313,4802743.513167005],[-10589113.607653618,4802453.6442219885],[-10589112.975482007,4802295.0158445612],[-10589112.141450569,4802162.5707035819],[-10589110.304505762,4801870.2709011752],[-10589109.453944005,4801737.0347611941],[-10589108.879098263,4801575.6278704805],[-10589108.453616705,4801456.076933288],[-10589106.933072481,4801279.4039768958],[-10589105.88788664,4801160.192853543],[-10589104.949286928,4800982.0326366322],[-10589104.952182457,4800981.483681689],[-10589106.347835684,4800682.1702144556],[-10589104.256843258,4800421.2091254322],[-10589102.165449785,4800160.2254941184],[-10589101.12096216,4800026.7595864907],[-10589099.241106793,4799899.5146608595],[-10589095.395311762,4799638.9957251847],[-10589095.303810194,4799632.165346426],[-10589095.708466778,4799377.8506292989],[-10589096.123850845,4799117.5609343052],[-10589096.555647064,4798856.8082174016],[-10589096.982587209,4798599.5491641434],[-10589097.188939096,4798339.7703423845],[-10589097.398146125,4798076.6043653376],[-10589097.388071401,4798072.1487100543],[-10589097.589740895,4797814.0005705059],[-10589097.795341173,4797550.660848856],[-10589097.817506842,4797546.451775806],[-10589098.032588098,4797288.0616210746],[-10589098.25121332,4797025.4404610358],[-10589098.233849952,4797022.3742499873],[-10589098.428989006,4796762.6295602852],[-10589098.626292426,4796500.2041189773],[-10589100.086241638,4796237.8032123679],[-10589101.505948056,4795982.6811437281],[-10589101.542289983,4795975.6545755826],[-10589102.849281583,4795735.6336256573],[-10589102.77449337,4795714.3029596666],[-10589101.889117287,4795463.1772402367],[-10589101.852939636,4795453.5737452079],[-10589101.660623509,4795193.0424610106],[-10589101.476051314,4794942.0393241988],[-10589101.476433493,4794933.703301847],[-10589101.305063529,4794674.7509075971],[-10589101.134136613,4794418.8045710875],[-10589100.26002123,4794157.0004670611],[-10589099.382084858,4793894.0374295563],[-10589098.482331736,4793631.6669472866],[-10589098.197727971,4793548.6573311007],[-10589099.179866316,4793369.268664781],[-10589100.624723749,4793107.0283899056],[-10589102.068780197,4792844.7211553007],[-10589103.501423445,4792582.4467265951],[-10589104.936569862,4792319.6274392083],[-10589105.62025529,4792057.3832088383],[-10589106.304641163,4791795.5303176334],[-10589106.332175145,4791792.3461439218],[-10589107.019662209,4791533.4870972168],[-10589107.714660268,4791271.4610990416],[-10589107.742295278,4791267.0920553347],[-10589108.429280698,4791009.4829329588],[-10589109.129484763,4790747.2560916962],[-10589109.12928728,4790743.7025944712],[-10589109.806662358,4790485.0999172721],[-10589110.493151158,4790222.1774688186],[-10589111.494299045,4789960.6007415317],[-10589112.490540447,4789700.0461795861],[-10589112.512471536,4789692.2883644672],[-10589113.491887463,4789439.6988798818],[-10589114.475408437,4789186.5585028445],[-10589114.503946299,4789179.8224730883],[-10589114.546603402,4789169.0835064985],[-10589115.126601061,4788995.5553867258],[-10589115.421997275,4788920.1792177791],[-10589116.436558466,4788660.7637804626],[-10589116.481015828,4788652.3533274457],[-10589117.4747463,4788401.7593715983],[-10589118.50182146,4788142.594502259],[-10589120.276853548,4787882.0154410945],[-10589122.049883103,4787621.5633433303],[-10589123.833425151,4787360.3329119971],[-10589125.621372456,4787098.6390143475],[-10589127.411622927,4786836.0660178298],[-10589129.204076111,4786573.0485780248],[-10589130.982913719,4786309.8458931521],[-10589132.758647274,4786047.1157871783],[-10589132.259775167,4785788.7262725346],[-10589131.762204384,4785530.606052164],[-10589131.292666638,4785271.2915470051],[-10589130.822829133,4785011.2657203199],[-10589130.342179816,4784750.5881257495],[-10589129.859829215,4784489.0957482392],[-10589129.387790857,4784227.090017152],[-10589128.912349377,4783964.135072968],[-10589127.958059527,4783702.1776437908],[-10589127.010475945,4783442.1476022741],[-10589126.058788806,4783180.7542271642],[-10589125.104599098,4782919.0846033273],[-10589125.045646768,4782899.4943834422],[-10589124.323306285,4782658.5884520561],[-10589123.537809635,4782396.918826079],[-10589122.739698499,4782135.432781796],[-10589121.929376507,4781870.0019792141],[-10589123.713214464,4781612.5614674902],[-10589125.523885846,4781351.3721202677],[-10589126.893652435,4781090.9301072396],[-10589126.895755632,4781089.9006005656],[-10589127.507154698,4780830.0195592958],[-10589128.118454017,4780569.5942983562],[-10589128.725647323,4780310.8293490373],[-10589129.358470704,4780051.0017576544],[-10589129.989992291,4779791.5045322012],[-10589130.993940016,4779531.365177325],[-10589132.000591269,4779270.5593853649],[-10589133.000735335,4779009.3246775568],[-10589134.001680644,4778747.5587435989],[-10589134.99812109,4778485.327952248],[-10589135.997965865,4778222.4228700558],[-10589137.007321643,4777959.2348866407],[-10589138.020882778,4777695.235390068],[-10588870.877812037,4777693.591097218],[-10588605.40955529,4777691.9486208744],[-10588338.783175265,4777690.3004441718],[-10588071.945554003,4777688.6457911897],[-10587805.368030105,4777686.9811651008],[-10587538.279722674,4777685.3061762881],[-10587271.271607039,4777683.6152555505],[-10587002.500577038,4777681.9051620364],[-10586742.626913017,4777681.428254975],[-10586483.74207901,4777680.9457793953],[-10586480.369725328,4777680.95147443],[-10586224.048821233,4777680.4687433653],[-10585964.169651063,4777679.9731837399],[-10585958.686285112,4777679.9449377926],[-10585703.349806022,4777679.461560701],[-10585441.958007427,4777678.9612066001],[-10585437.652187092,4777678.9341280507],[-10585179.979138047,4777678.4361107256],[-10584917.429916937,4777677.9229314784],[-10584656.646913609,4777677.7870898275],[-10584396.693157909,4777677.6439953744],[-10584136.304705461,4777677.5135948071],[-10583875.914250754,4777677.3763289182],[-10583615.803215364,4777677.2301255548],[-10583356.112159928,4777677.0760211674],[-10583095.627397528,4777676.9087032303],[-10582834.725258213,4777676.7336126994],[-10582574.878123626,4777677.0402631983],[-10582313.263969801,4777677.3406936042],[-10582053.042807765,4777677.6382760219],[-10581793.142712614,4777677.9273095047],[-10581532.625211919,4777678.2155648684],[-10581272.128234664,4777678.4966957932],[-10581011.38247313,4777678.7580075068],[-10580750.423367793,4777679.0147851594],[-10580489.88714841,4777677.9961658446],[-10580233.722024048,4777676.9895994691],[-10580229.70042851,4777676.9697753219],[-10579969.891740697,4777675.9366499111],[-10579729.533479311,4777674.9744062023],[-10579716.168006299,4777674.9492586935],[-10579710.398213012,4777674.9486033181],[-10579450.923605176,4777674.763411657],[-10579196.928458875,4777674.5758957313],[-10579192.094635164,4777674.5668218853],[-10579090.691659531,4777674.5107278153],[-10578933.404823603,4777674.614922856],[-10578676.327554449,4777674.7810318004],[-10578415.314487934,4777674.8698034296],[-10578152.070171727,4777674.9509295346],[-10577975.259725757,4777675.0097614238],[-10577890.751055567,4777675.0000631912],[-10577629.971456138,4777674.9665546622],[-10577369.635563666,4777674.9628396211],[-10577110.067548692,4777674.9516126215],[-10576851.206541689,4777674.9204382794],[-10576592.803357873,4777674.8822697131],[-10576592.128998168,4777453.6521233246],[-10576592.263664261,4777413.0158745404],[-10576593.134383084,4777150.8683637055],[-10576593.172648771,4777142.9161558049],[-10576593.996693041,4776888.4347057948],[-10576594.040180255,4776874.8463401832],[-10576592.611035209,4776625.7476902092],[-10576592.638093604,4776615.797265104],[-10576593.555741617,4776362.4720200673],[-10576594.509058941,4776098.7837488959],[-10576594.546817612,4776093.1581829675],[-10576595.400355989,4775852.9703317005],[-10576595.360160612,4775834.6677562902],[-10576594.763008842,4775570.1573590506],[-10576600.072283696,4775530.4624665761],[-10576604.116408713,4775311.2404542258],[-10576608.895082399,4775052.2088728109],[-10576613.647525812,4774793.1544378037],[-10576618.401270276,4774534.1224736851],[-10576619.477061471,4774475.2358633094],[-10576622.481043881,4774275.3384219082],[-10576626.362388784,4774017.1883938378],[-10576630.267063834,4773757.6606800761],[-10576634.181551753,4773497.4200102743],[-10576635.787106983,4773235.5580311753],[-10576637.390860083,4772973.6822832022],[-10576638.992308959,4772712.3414626047],[-10576640.591354001,4772451.3550506281],[-10576642.201214967,4772189.0301534403],[-10576643.814381197,4771926.1222759839],[-10576645.442363238,4771663.5752041666],[-10576647.071846724,4771401.0793864308],[-10576646.846004972,4771141.0990350423],[-10576646.622963788,4770882.0861558653],[-10576646.419046909,4770622.1896327473],[-10576646.213428874,4770362.0208796393],[-10576646.106901247,4770255.3032695716],[-10576646.333981792,4770102.3645621855],[-10576646.719537774,4769842.5037089987],[-10576647.127617883,4769583.2150463443],[-10576647.307440111,4769468.1539231529],[-10576645.800516509,4769324.2646615822],[-10576649.849458929,4769062.5249883067],[-10576653.88157901,4768801.8114332836],[-10576657.902388671,4768540.0808157157],[-10576661.929005604,4768277.9973637648],[-10576665.956022156,4768016.105661842],[-10576669.988845926,4767753.8841864727],[-10576671.066369085,4767683.5454978906],[-10576670.165169068,4767491.5290259225],[-10576668.936789315,4767229.1865324136],[-10576670.569271661,4766967.692327911],[-10576672.198549625,4766706.4216488302],[-10576673.817214759,4766445.3690433465],[-10576675.432074828,4766184.5382465897],[-10576677.045332855,4765923.7428002898],[-10576678.658591043,4765662.8455591379],[-10576680.277152922,4765402.7675610101],[-10576681.893911179,4765143.2153243991],[-10576419.954691976,4765149.0604546154],[-10576353.811836407,4765150.5349048553],[-10576157.516216502,4765150.06250815],[-10576154.188320246,4765150.0640794272],[-10575894.450830402,4765149.463315038],[-10575630.663921343,4765148.8466608524],[-10575626.078290358,4765148.8448755341],[-10575379.187655451,4765148.2497314103],[-10575366.224983508,4765148.2694663117],[-10575101.097363025,4765148.6468577283],[-10575097.56683992,4765148.642478141],[-10574835.271346757,4765149.0124800075],[-10574568.777369337,4765149.3799171457],[-10574309.632869145,4765148.942485204],[-10574051.204084529,4765148.4989688676],[-10573792.382151848,4765148.0673569823],[-10573533.548505826,4765147.6278534094],[-10573274.697940569,4765147.1615697313],[-10573015.853181932,4765146.6871355427],[-10572756.984295746,4765146.2269325079],[-10572498.03551851,4765145.7583206799],[-10572237.884368423,4765146.306716172],[-10571977.140843347,4765146.8491637632],[-10571972.148454338,4765146.8719604025],[-10571715.815755555,4765147.4086917778],[-10571453.891184704,4765147.9497227361],[-10571447.23720232,4765147.9536398984],[-10571191.14237267,4765149.2613037974],[-10570927.988599172,4765150.5981150065],[-10570923.606305439,4765150.6015023999],[-10570663.808055716,4765151.9362257076],[-10570400.500306865,4765153.2832586467],[-10570141.565239782,4765155.0709128873],[-10569881.4594387,4765156.8584444644],[-10569876.912857676,4765156.8967634914],[-10569622.078363547,4765158.6475249575],[-10569362.783086292,4765160.4219861804],[-10569357.504571175,4765160.4732465064],[-10569104.130941935,4765162.2158502731],[-10568952.028014695,4765163.2604557704],[-10568845.711461835,4765164.4246133761],[-10568841.490251545,4765164.4749623844],[-10568587.564290561,4765167.3147844765],[-10568329.71125463,4765170.191500077],[-10568068.153692735,4765175.1568399454],[-10567829.359771719,4765179.6838714955],[-10567807.757054092,4765180.073919829],[-10567548.541361405,4765184.9895727606],[-10567317.230468225,4765189.370376382],[-10567290.470173169,4765189.8961658785],[-10567139.315028826,4765189.8849517712],[-10567033.296516392,4765190.8895934932],[-10566796.347703617,4765193.1278739162],[-10566777.35075579,4765193.3264357885],[-10566522.408238608,4765195.7209681366],[-10566269.170764526,4765198.0938864844],[-10566012.84517741,4765197.6482870961],[-10565761.927752977,4765197.2066690437],[-10565734.945706522,4765197.1492437273],[-10565518.224456184,4765193.2868018113],[-10565279.745613251,4765189.030536483],[-10565029.852563828,4765184.5593158184],[-10564798.268577119,4765180.4103966402],[-10564563.504967084,4765176.2115581296],[-10564403.61337262,4765173.3479668573],[-10564371.537431488,4765063.3385594292],[-10564325.685142469,4764926.2959029069],[-10564299.345759735,4764856.8341952013],[-10564292.619320082,4764843.4419306619],[-10564259.415808462,4764777.3350913441],[-10564216.085878307,4764699.8309588972],[-10564188.213587238,4764662.1728811683],[-10564190.148857107,4764575.2629492823],[-10564195.709170777,4764323.1890237061],[-10564198.685418019,4764188.2655302463],[-10564199.819749024,4764062.4258934287],[-10564201.97206644,4763817.1384145571],[-10564201.997000251,4763814.2889621183],[-10564199.607835716,4763572.3052703943],[-10564197.300547661,4763339.1529252212],[-10564195.225780018,4763129.5097413734],[-10564193.340130331,4762865.7329236269],[-10564191.459685273,4762602.6018251153],[-10564189.588048944,4762340.120792591],[-10564187.719915306,4762078.2880938407],[-10564187.036520602,4761980.9573922465],[-10564188.048083168,4761817.4320362909],[-10564189.564876566,4761572.087225412],[-10564189.66341695,4761557.2660896787],[-10564191.298472093,4761297.7419694094],[-10564192.931423739,4761038.845530007],[-10564196.990146087,4760777.1132149752],[-10564201.049068887,4760515.3769656261],[-10564205.129617451,4760253.1635067696],[-10564209.068587463,4760000.1164541235],[-10564209.132778628,4759990.6295959558],[-10564211.160287805,4759728.0354263876],[-10564213.192403128,4759465.0289083719],[-10564216.475927461,4759264.1570209581],[-10564217.400700742,4759201.4241344081],[-10564221.293839671,4758937.6089147236],[-10564224.742166387,4758676.5687003974],[-10564228.196300421,4758415.2615469731],[-10564228.258478727,4758411.3546354165],[-10564231.670056673,4758154.1288480787],[-10564235.133901767,4757893.0235989634],[-10564235.221214218,4757886.2278730907],[-10564238.582330337,4757631.4582955418],[-10564239.674132444,4757548.6756123062],[-10564242.152645642,4757369.7546406249],[-10564242.216646999,4757364.6683400264],[-10564245.750309218,4757107.8850465529],[-10564249.356283652,4756845.8650646564],[-10564250.835521065,4756585.9958814261],[-10564252.317662761,4756325.9976719636],[-10564253.786389979,4756065.8948759446],[-10564255.25471746,4755805.7067602286],[-10564256.730358534,4755544.6220226651],[-10564258.20149179,4755284.0598721802],[-10564259.683139613,4755023.0816957699],[-10564261.15857394,4754763.2939911783],[-10564262.809901044,4754504.9680644413],[-10564264.474052856,4754244.8880651603],[-10564266.146415848,4753984.5312393662],[-10564267.822587697,4753723.4166230345],[-10564269.481237561,4753462.7057432532],[-10564271.143493989,4753201.604893188],[-10564272.825574905,4752940.2200614084],[-10564274.510761419,4752678.5180619173],[-10564274.922703745,4752415.1862730095],[-10564275.319677157,4752161.1422101622],[-10564275.318524968,4752152.3540259162],[-10564275.70463236,4751890.0301965652],[-10564276.072551433,4751639.8034206806],[-10564276.093139773,4751628.2073806878],[-10564276.48314677,4751366.783860784],[-10564276.859288475,4751114.2202754533],[-10564276.883963518,4751105.8388016783],[-10564277.27797002,4750845.3529168433],[-10564277.342685625,4750802.1293814462],[-10564277.64754614,4750585.3268166678],[-10564278.929573094,4750323.7699904628],[-10564280.211299876,4750062.2223975211],[-10564281.483019177,4749800.0068890117],[-10564282.75694366,4749537.354221696],[-10564284.021457653,4749274.6935347645],[-10564285.289276816,4749011.822165112],[-10564286.572515296,4748748.6867843028],[-10564287.856856661,4748485.2995540975],[-10564289.240101008,4748223.7467704294],[-10564290.62474722,4747962.1875895448],[-10564292.008993194,4747700.6296317521],[-10564293.393840151,4747439.0620484985],[-10564294.779187895,4747177.4963342398],[-10564296.16453591,4746915.9242237443],[-10564297.549683871,4746654.3617304545],[-10564298.935032235,4746392.8114361987],[-10564300.197632756,4746132.6407036381],[-10564301.463740852,4745871.8727462329],[-10564301.492509037,4745865.5708253589],[-10564302.746871805,4745610.5364046795],[-10564304.036813894,4745348.6428274335],[-10564304.057584107,4745340.3486472433],[-10564305.292620057,4745086.2314387793],[-10564306.569353607,4744823.2427571565],[-10564306.595117934,4744817.0221866751],[-10564307.852397695,4744559.7013586387],[-10564309.144355355,4744295.5955376523],[-10564313.458651721,4744034.8256676057],[-10564317.776153082,4743773.9313631114],[-10564322.080240399,4743512.920250563],[-10564326.3847294,4743251.8055063915],[-10564330.718553387,4742990.5515093803],[-10564335.054180741,4742729.1800861526],[-10564338.116622183,4742544.3596268417],[-10564339.575121641,4742467.6580698723],[-10564344.550784331,4742206.001605154],[-10564349.350750554,4741943.6564504933],[-10564354.153521854,4741681.1074586017],[-10564358.939372651,4741418.8870602846],[-10564362.150637304,4741242.8812538898],[-10564363.975509817,4741156.8146631913],[-10564369.370299462,4740905.2054082146],[-10564369.656884393,4740895.0895268442],[-10564374.956303332,4740707.9105717894],[-10564376.637146164,4740633.4688567398],[-10564382.579820694,4740371.9152361043],[-10564388.525900651,4740110.2435888732],[-10564648.108799845,4740111.0023389766],[-10564655.740637615,4740111.0244767843],[-10564907.006914802,4740111.7785167694],[-10565142.772745542,4740112.4422109509],[-10565148.269147392,4739888.0000615185],[-10565153.780670643,4739662.9749533394],[-10565153.877603671,4739659.1981095672],[-10565155.469108103,4739593.7029314069],[-10565156.045979915,4739437.5070938785],[-10565156.878850901,4739211.7305734186],[-10565156.900805194,4739206.7343224855],[-10565157.727445079,4738985.088338932],[-10565158.574840989,4738757.9365889318],[-10565158.58407243,4738754.3606063277],[-10565159.417735014,4738530.2477445705],[-10565160.266038341,4738302.0494545354],[-10565163.387134936,4738041.3478514738],[-10565166.508933544,4737780.5218822779],[-10565166.567222605,4737776.70393831],[-10565169.646251259,4737519.550526022],[-10565172.771956876,4737258.4534047013],[-10565172.836660659,4737253.3764507733],[-10565175.914583044,4736997.2398167346],[-10565179.055108348,4736735.8433307996],[-10565179.093077246,4736731.4976126384],[-10565182.158792643,4736474.3234335892],[-10565184.400760338,4736286.3152788579],[-10565182.8493127,4736212.6810575891],[-10565187.59857882,4735951.9942150069],[-10565189.208039997,4735863.6004758934],[-10565190.256347619,4735691.465551951],[-10565191.852102313,4735430.4671055004],[-10565193.448659122,4735169.3087381795],[-10565195.050722487,4734908.1546629556],[-10565196.654489165,4734646.8126934683],[-10565198.271667698,4734386.1167032272],[-10565199.886841949,4734125.8071401455],[-10565198.360713167,4733865.7470315993],[-10565196.864587456,4733611.0155805685],[-10565196.840388218,4733606.1403623633],[-10565195.486351032,4733347.0037327949],[-10565194.169814499,4733095.0845059659],[-10565194.133211961,4733088.3405901771],[-10565192.773862788,4732830.1612150297],[-10565191.45021495,4732578.7303229365],[-10565191.428024655,4732572.718326577],[-10565190.081079954,4732316.1560394],[-10565188.739238782,4732059.9659619713],[-10565189.889574299,4731800.7122344831],[-10565191.041312607,4731541.2915895693],[-10565192.185043067,4731281.6754151648],[-10565193.331477929,4731021.8710755799],[-10565194.486228595,4730761.0295525594],[-10565195.643585688,4730499.6350621497],[-10565196.796440564,4730237.7718369318],[-10565197.95029979,4729975.3963367175],[-10565198.037525229,4729714.6942088893],[-10565198.127052668,4729454.1108244983],[-10565198.124468712,4729450.8619704368],[-10565198.2053666,4729193.6438539382],[-10565198.287484257,4728933.2962529641],[-10565198.285307178,4728928.9520803122],[-10565198.361192504,4728672.9147410803],[-10565198.437001694,4728412.7929650005],[-10565198.425305612,4728409.8294527838],[-10565198.507002663,4728152.9450838147],[-10565198.589916902,4727893.3712050579],[-10564945.202266721,4727894.7299323762],[-10564691.896210458,4727896.0811828943],[-10564440.291007405,4727897.4154024264],[-10564189.851843467,4727898.7368498016],[-10563940.033092093,4727900.0527485991],[-10563692.781989207,4727901.3478699392],[-10563445.7006815,4727902.63422463],[-10563350.145461587,4727903.1311529828],[-10563264.681331908,4727902.9627411431],[-10563199.577071477,4727904.3207980786],[-10562943.408537645,4727904.1722208234],[-10562685.389679281,4727904.0146387136],[-10562680.012204811,4727904.0171400644],[-10562536.76863193,4727903.9275311157],[-10562472.157244269,4727904.0015023286],[-10562425.468137898,4727903.5296744909],[-10562163.581751293,4727900.8802765617],[-10562158.531152483,4727900.8144588796],[-10562139.010039181,4727900.6155015482],[-10561900.137662007,4727900.9982021041],[-10561636.341767328,4727901.4151740586],[-10561632.66154154,4727901.4400871349],[-10561462.356394485,4727901.7063705986],[-10561372.077942818,4727900.2992975088],[-10561107.253188413,4727896.1681207707],[-10560852.489567593,4727895.9082915839],[-10560597.597399175,4727895.6395697333],[-10560341.256767571,4727895.3730532611],[-10560083.898467476,4727895.0971371802],[-10559827.241672868,4727894.8101290977],[-10559569.917912427,4727894.5175849413],[-10559313.132269898,4727894.2055720314],[-10559261.115544042,4727894.1400823193],[-10559056.514812773,4727895.7182334345],[-10558794.7256127,4727898.4213158591],[-10558534.140595743,4727901.1038923208],[-10558271.996689193,4727903.7958939699],[-10558009.219656056,4727906.4888045546],[-10557747.29900671,4727909.1547676474],[-10557485.593104346,4727911.8128663544],[-10557223.174784342,4727914.472648141],[-10556960.345893316,4727917.128696355],[-10556699.128873473,4727914.1606544852],[-10556445.059760222,4727911.2665316006],[-10556438.231019763,4727911.1703112992],[-10556177.651631277,4727908.1838330841],[-10555943.638144534,4727905.4957538135],[-10555917.368582657,4727905.1916816123],[-10555657.083130861,4727902.1994024096],[-10555415.460606897,4727899.4173038499],[-10555397.274726361,4727899.2147246487],[-10555137.919641968,4727896.228496843],[-10554879.039902946,4727893.2407187736],[-10554620.888483966,4727895.5122142062],[-10554363.36098172,4727897.7708141319],[-10554104.192695746,4727900.0564988367],[-10553844.159116548,4727902.3439968601],[-10553585.565591261,4727904.5934563708],[-10553327.670067763,4727906.8307930278],[-10553068.915858639,4727909.0647869958],[-10552811.017232239,4727911.2849808931],[-10552607.070150726,4727914.6642153012],[-10552601.728917601,4727914.7844000105],[-10552567.175541693,4727915.4189132834],[-10552327.405626288,4727919.8165325299],[-10552321.943254098,4727919.9324648278],[-10552168.153966233,4727922.7017845921],[-10552076.650499796,4727923.5305854985],[-10551835.805856509,4727925.7045992762],[-10551830.830143265,4727925.758913679],[-10551585.918230141,4727927.9713788852],[-10551340.779757176,4727930.1802374711],[-10551093.869349988,4727932.3806063132],[-10550845.674067782,4727934.5875617499],[-10550584.285836957,4727937.2050571637],[-10550335.460431358,4727939.6896659052],[-10550323.730462816,4727939.8073349716],[-10550063.919043275,4727942.3891112031],[-10549834.26525151,4727944.6661373638],[-10549804.900935,4727944.9577325489],[-10549545.594095536,4727947.5415671291],[-10549318.751031702,4727949.7965251664],[-10549286.635256035,4727950.1029704837],[-10549028.015306022,4727952.6540591177],[-10548769.74555848,4727955.1938017393],[-10548509.922431029,4727955.3015072532],[-10548248.067070195,4727955.4038187675],[-10547987.78051067,4727955.5050838459],[-10547727.844553722,4727955.6032519639],[-10547546.78135849,4727955.6642920244],[-10547467.476224758,4727955.5334522594],[-10547207.040672876,4727955.099333154],[-10546946.49088989,4727954.6456217151],[-10546685.806652572,4727954.1858522985],[-10546426.230083877,4727956.2876757495],[-10546167.975032149,4727958.3723541247],[-10545908.769889824,4727960.4388596844],[-10545649.374629257,4727962.5007255804],[-10545389.683729298,4727964.5785757089],[-10545129.924250605,4727966.6516571036],[-10545122.603346942,4727966.6912400508],[-10544869.666501475,4727967.3758179871],[-10544609.889404114,4727968.0723939221],[-10544350.775568314,4727968.5805194248],[-10544089.466012059,4727969.0868437141],[-10543829.403687514,4727969.571124495],[-10543569.447184447,4727970.0494758058],[-10543309.679097675,4727970.5142925102],[-10543050.155691776,4727970.97292173],[-10542790.498632437,4727971.4431520207],[-10542530.82365253,4727971.9083553208],[-10542268.489519341,4727973.105319134],[-10542010.381737577,4727974.2745634504],[-10542006.863398867,4727974.2994462121],[-10541745.937582294,4727975.4674059609],[-10541490.628513183,4727976.6023592614],[-10541485.695150193,4727976.6125497585],[-10541226.171943653,4727977.7739337748],[-10540971.036273571,4727978.9087581364],[-10540967.355848812,4727978.9260361372],[-10540709.209522823,4727980.0481042434],[-10540451.728360377,4727981.1589572644],[-10540450.771874046,4727720.099470661],[-10540449.831600718,4727463.7439228315],[-10540449.83370813,4727459.5618953658],[-10540448.877420805,4727199.5486399252],[-10540447.941350006,4726945.1361988122],[-10540447.938152397,4726940.0618548654],[-10540446.990674026,4726681.0375741962],[-10540446.060009791,4726426.3528210232],[-10540446.046699023,4726422.5766743533],[-10540445.095815608,4726164.530261009],[-10540444.725910718,4726064.2585937958],[-10540443.903353829,4725907.3819599403],[-10540444.600864999,4725647.3084178511],[-10540445.300379341,4725386.5066332305],[-10540445.292374851,4725382.5695346408],[-10540445.979070073,4725125.4616995845],[-10540446.677984478,4724864.0342102563],[-10540446.682195611,4724858.7583427671],[-10540447.367388299,4724602.3333354648],[-10540448.069106709,4724340.2503449945],[-10540448.061602848,4724336.2725491729],[-10540448.741792208,4724077.8301078957],[-10540449.432999369,4723815.0705886744],[-10540446.875774901,4723554.7890826659],[-10540444.713855932,4723334.9259560928],[-10540444.514373979,4723295.5546368118],[-10540443.432743141,4723035.3970143693],[-10540442.350311795,4722774.9156163465],[-10540443.142532412,4722514.2819358362],[-10540443.934953468,4722253.477179083],[-10540444.747197654,4721992.3632616149],[-10540445.559842493,4721731.0932442816],[-10540446.338703563,4721674.9286849685],[-10540445.904686684,4721469.1907425439],[-10540445.351303721,4721206.9180192947],[-10540445.192198219,4721130.3120618602],[-10540445.174801407,4721007.7029783549],[-10540445.181888824,4720949.6056995438],[-10540445.108578185,4720944.8047208944],[-10540444.379876344,4720896.7105610268],[-10540443.486569935,4720682.7447016425],[-10540442.787933627,4720513.460772315],[-10540442.400073474,4720420.1655554976],[-10540441.309871163,4720157.2893734658],[-10540440.427247193,4719937.9048112379],[-10540439.993215254,4719895.5425933786],[-10540437.310693458,4719634.0593857709],[-10540436.495623348,4719374.1383071207],[-10540435.679152437,4719114.3575717546],[-10540435.150210295,4718854.3659779765],[-10540434.903963776,4718734.0872820169],[-10540434.186068293,4718594.2820200715],[-10540432.89485413,4718334.7567966804],[-10540431.782742646,4718110.9425907647],[-10540431.610546896,4718075.0409354931],[-10540430.503442794,4717815.284982306],[-10540429.393632203,4717554.9084625067],[-10540429.040785268,4717293.6626528231],[-10540428.689745383,4717033.3202540167],[-10540428.572739998,4716929.8573351158],[-10540428.365431646,4716772.1641031401],[-10540428.023596577,4716510.7862689085],[-10540427.823207786,4716337.087586429],[-10540427.587853236,4716249.3117843205],[-10540426.888407506,4715987.8552411916],[-10540426.190716611,4715735.9655073639],[-10540426.163131732,4715726.3221403593],[-10540425.426544726,4715465.1011526044],[-10540424.825522481,4715205.5576311443],[-10540424.637359606,4715124.5813754424],[-10540424.658010397,4714948.3611162389],[-10540424.646681961,4714945.5631030453],[-10540424.621216889,4714685.4911769805],[-10540424.604714781,4714507.4145701174],[-10540424.701095073,4714429.4896833608],[-10540424.708179468,4714425.1917638388],[-10540425.052238064,4714165.1127086803],[-10540425.39171082,4713908.5620955015],[-10540425.371167336,4713904.9530478278],[-10540424.591436742,4713644.8089400213],[-10540423.812907925,4713384.7330262633],[-10540424.135126291,4713121.9335814165],[-10540424.455641184,4712858.8698859634],[-10540424.455907237,4712852.6672604624],[-10540424.617058758,4712737.9896451775],[-10540425.539530063,4712595.5810852135],[-10540426.133504814,4712503.8993603271],[-10540424.690901915,4712332.0852178494],[-10540424.635995517,4712324.2192119379],[-10540424.582790624,4712316.2711017048],[-10540426.135066636,4712116.4051412763],[-10540425.38482137,4712082.8929711739],[-10540425.427086582,4712067.8192482404],[-10540426.161469758,4711803.6735378653],[-10540426.195075169,4711797.6765653007],[-10540426.898857443,4711539.7357150195],[-10540426.931929138,4711527.7456886712],[-10540426.931736639,4711275.6677047722],[-10540428.038667835,4711015.3551036939],[-10540428.469201442,4710913.9791107746],[-10540429.301596137,4710758.3709211703],[-10540429.305382784,4710755.1684638718],[-10540430.668306567,4710494.7398891812],[-10540431.608291278,4710315.0225980105],[-10540432.09552718,4710238.5235541295],[-10540432.144659555,4710234.1891929889],[-10540433.87470492,4709973.9482009662],[-10540435.545130799,4709722.5774753317],[-10540435.567230159,4709717.877277554],[-10540435.588234093,4709714.2315055961],[-10540435.955021039,4709454.7961513754],[-10540436.31941193,4709196.5835215123],[-10540438.415082827,4708937.6119475421],[-10540440.511251723,4708678.2065968653],[-10540441.746630711,4708526.7827129811],[-10540442.855503622,4708418.5959852943],[-10540445.515815813,4708158.6741233105],[-10540448.01273058,4707915.0422617812],[-10540448.160710597,4707898.8398305466],[-10540450.528487144,4707638.92368099],[-10540452.933704946,4707378.7448167456],[-10540453.517224416,4707315.5863715596],[-10540455.08943559,4707118.3720772741],[-10540455.491761032,4706858.7462824425],[-10540455.893084573,4706598.9948945921],[-10540456.293506421,4706339.1354161259],[-10540456.612228302,4706132.3880113512],[-10540456.593512477,4706079.1538356785],[-10540456.626511287,4705818.9422526965],[-10540456.658110561,4705559.1122444635],[-10540456.653082781,4705518.9664665805],[-10540456.661474884,4705298.8173940191],[-10540456.671846103,4705038.325369142],[-10540456.347737081,4704778.3705151416],[-10540456.021923931,4704518.0241632396],[-10540455.830598375,4704336.0642560357],[-10540455.607507225,4704257.3079478974],[-10540454.867515584,4703996.2312850608],[-10540454.27025407,4703783.3612076631],[-10540453.392983854,4703735.3843067689],[-10540453.152635392,4703722.1570593733],[-10540455.261984952,4703475.093733673],[-10540455.5095849,4703441.8911556602],[-10540456.758554069,4703213.8545737024],[-10540457.823597537,4703019.2717164857],[-10540457.81902173,4702952.2846035035],[-10540456.067282008,4702693.1612591213],[-10540454.307828175,4702433.0701828534],[-10540454.242010677,4702425.4545880388],[-10540452.535955725,4702172.1679200651],[-10540450.773088874,4701910.3988632234],[-10540450.71467291,4701901.5284524616],[-10540449.017127508,4701648.1753858421],[-10540447.254154282,4701385.2450286588],[-10540447.211365623,4701378.0755547239],[-10540445.474858534,4701121.6065608505],[-10540443.686148291,4700857.2804775927],[-10540443.676370343,4700772.8950196616],[-10540443.312080126,4700596.9680803036],[-10540442.777539406,4700338.6796518695],[-10540442.258809561,4700079.0834143003],[-10540441.739678169,4699819.2918655174],[-10540441.220950803,4699560.1450174944],[-10540440.703124147,4699300.9397348035],[-10540440.208123457,4699041.7046843739],[-10540439.713122683,4698782.4554203236],[-10540439.724039694,4698710.9617668437],[-10540440.237683224,4698522.1539746216],[-10540440.935259921,4698265.1379106855],[-10540440.931138851,4698262.1822945755],[-10540441.61588617,4698002.5253182501],[-10540442.300334875,4697743.1963870134],[-10540443.005404793,4697483.4513914511],[-10540443.71247381,4697223.1439919695],[-10540444.422443453,4696962.3670125268],[-10540445.134210771,4696700.8115701657],[-10540445.897113396,4696633.8561735731],[-10540446.419940911,4696440.3480241839],[-10540447.119910099,4696181.6052765176],[-10540447.841491513,4695920.6195954978],[-10540448.566271449,4695658.7199858185],[-10540449.294768199,4695399.1070944443],[-10540450.025962638,4695138.5343825072],[-10540450.544000024,4694947.8654247923],[-10540448.399261514,4694878.4238018133],[-10540445.099594463,4694771.5739879915],[-10540441.979158768,4694615.2478870386],[-10540442.747248771,4694581.12273438],[-10540445.894561173,4694510.8755085785],[-10540445.591466194,4694357.6349519771],[-10540445.077143831,4694098.5767081538],[-10540444.565623885,4693839.3750101328],[-10540444.055911485,4693581.1638087751],[-10540443.530873256,4693321.4543843614],[-10540443.00573316,4693061.4295468805],[-10540442.484902678,4692802.2498918287],[-10540441.965676637,4692543.5414378028],[-10540440.986521142,4692284.2305945242],[-10540440.010872139,4692025.3615213223],[-10540439.02580967,4691766.0014547426],[-10540438.043649659,4691506.4784590146],[-10540437.063791167,4691246.7488792185],[-10540436.085536528,4690987.378978706],[-10540435.095766991,4690727.6911507361],[-10540434.105396233,4690467.9002718879],[-10540433.905134913,4690209.1590490295],[-10540433.705579044,4689951.2619350655],[-10540433.519023262,4689690.6976521593],[-10540433.332583182,4689432.9517083038],[-10540433.33896675,4689428.6646013223],[-10540433.142805705,4689169.1424854733],[-10540432.947063416,4688912.926959238],[-10540432.9518512,4688909.7315029809],[-10540432.74938421,4688650.4469249183],[-10540432.546216993,4688391.2699955544],[-10540432.570607338,4688131.6251165457],[-10540432.575305331,4688076.1081120148],[-10540434.911803285,4687954.4726747954],[-10540434.604993841,4687871.6384034548],[-10540433.617526285,4687611.8289519101],[-10540432.63236193,4687352.1168937059],[-10540431.644394204,4687092.3685768303],[-10540430.656827191,4686832.6616724003],[-10540429.651239472,4686572.927882025],[-10540428.645151183,4686313.1904428238],[-10540428.444172557,4686051.5248659644],[-10540428.348068021,4685926.0673611192],[-10540427.22903676,4685789.8481725585],[-10540425.054356307,4685528.1313904533],[-10540422.878574617,4685266.4613765711],[-10540420.700390194,4685004.8720124848],[-10540418.522305885,4684743.2627938166],[-10540416.359939566,4684481.7455120236],[-10540414.198974876,4684220.2950046081],[-10540415.078186437,4683961.9626848856],[-10540415.954795353,4683704.5456662429],[-10540416.838612298,4683446.5686832108],[-10540417.723029913,4683188.5400951365],[-10540418.591028744,4682930.4550293945],[-10540419.461230049,4682672.2756346278],[-10540420.335335797,4682414.0406707656],[-10540421.210042208,4682155.7557879165],[-10540421.394959796,4681896.5076482771],[-10540421.581279043,4681637.4284134516],[-10540421.77500681,4681378.4976695618],[-10540421.96883475,4681119.735420675],[-10540422.156455452,4680860.5840570163],[-10540422.344776919,4680601.3389499122],[-10540422.538304316,4680342.0357723553],[-10540422.731331116,4680082.687357788],[-10540424.077376662,4679825.4528011344],[-10540425.424423227,4679567.8711788952],[-10540426.761257971,4679309.8850470986],[-10540428.09869325,4679051.5030309996],[-10540428.145040952,4679036.918556639],[-10540427.396664115,4678977.8177427966],[-10540426.190418059,4678792.0296449745],[-10540424.505998848,4678532.8128608791],[-10540422.807563661,4678273.7315729177],[-10540421.112032004,4678015.2490652483],[-10540677.402389688,4678014.8991909288],[-10540802.771795636,4678014.72674766],[-10540934.350198891,4678014.5311047323],[-10541192.081603795,4678014.1726405621],[-10541322.164898043,4678013.9876397708],[-10541322.892431745,4677743.2003051788],[-10541323.623168578,4677470.9491606262],[-10541323.657604259,4677460.7704432057],[-10541324.387943784,4677197.2291930672],[-10541325.15011549,4676922.0434702709],[-10541325.172736278,4676908.0276323762],[-10541325.890761795,4676644.6914912099],[-10541326.649127735,4676365.6121572973],[-10541326.69727898,4676355.1112381564],[-10541327.44063092,4676084.8024041532],[-10541328.218117459,4675802.2675038604],[-10541328.779465346,4675543.0031199353],[-10541329.340512773,4675283.4051251179],[-10541329.339110056,4675280.3343776781],[-10541329.90476373,4675023.4686721284],[-10541330.476823496,4674763.1963512329],[-10541330.473718485,4674759.1570247486],[-10541331.02335396,4674502.6062670993],[-10541331.583599977,4674241.6794678504],[-10541331.581496477,4674238.6499352828],[-10541332.137338433,4673980.4258516654],[-10541332.702189479,4673718.8573672641],[-10541333.403296527,4673457.9977807058],[-10541334.072972011,4673209.196758667],[-10541334.092790751,4673198.3745997902],[-10541334.201401955,4673162.5991087174],[-10541334.90622708,4672939.9665774051],[-10541335.675818775,4672696.7018671809],[-10541335.737283994,4672682.7731079804],[-10541335.731885228,4672426.8507582042],[-10541335.726790728,4672181.7496111747],[-10541335.717977006,4672171.6556456899],[-10541335.691254405,4671917.2233522832],[-10541335.663631046,4671663.5498471633],[-10541335.929341139,4671404.7597095016],[-10541336.195351813,4671146.6494541233],[-10541336.466568409,4670888.4508716865],[-10541336.739286777,4670630.4224928813],[-10541336.996487336,4670372.2152995057],[-10541337.253687903,4670114.0182219408],[-10541337.527807821,4669855.8540724013],[-10541337.803429462,4669597.7224637344],[-10541339.537217434,4669338.3260740321],[-10541341.26389768,4669080.0336460834],[-10541342.996184111,4668821.1318602087],[-10541344.728470528,4668562.2084430726],[-10541346.465362195,4668303.2385364259],[-10541347.834953817,4668099.0060414141],[-10541348.400981015,4668044.2576396298],[-10541351.04240662,4667785.2798514208],[-10541353.682530725,4667526.2733903974],[-10541354.451715844,4667266.2607409228],[-10541355.199078515,4667013.1328294761],[-10541355.200778203,4667006.9175086394],[-10541355.939829374,4666748.2769547421],[-10541356.654656064,4666498.5219670273],[-10541356.691695435,4666490.3310824558],[-10541357.43445169,4666234.0377730196],[-10541358.162993412,4665982.5262211058],[-10541358.189622113,4665977.7260362552],[-10541358.919463582,4665721.4035598729],[-10541359.648704359,4665465.0622739559],[-10541359.730807409,4665214.2666562097],[-10541359.813310381,4664961.9790442744],[-10541359.801591124,4664945.7990691913],[-10541359.862174353,4664708.1978830174],[-10541359.928557819,4664452.9471096033],[-10541359.915134018,4664429.5856606541],[-10541359.968810275,4664194.5670189727],[-10541360.027483001,4663934.0126211047],[-10541360.04419562,4663916.1008526431],[-10541360.114387205,4663671.2698647277],[-10541360.192180175,4663406.273468283],[-10541360.753427692,4663146.5985693522],[-10541361.299460569,4662894.5333415484],[-10541361.296454549,4662887.3914644867],[-10541361.859604936,4662629.6471117893],[-10541362.402935902,4662380.8418191941],[-10541362.415547973,4662374.3467937056],[-10541362.989310799,4662117.4803281035],[-10541363.551962882,4661866.0072706221],[-10541363.543951944,4661861.0863337824],[-10541364.090183651,4661605.1898748344],[-10541364.637216453,4661349.7856635936],[-10541366.295518089,4661090.4449574789],[-10541367.854912374,4660846.8622391736],[-10541367.929592567,4660832.5868563205],[-10541369.577483382,4660576.2307112562],[-10541371.094031453,4660340.2936825547],[-10541371.228578402,4660321.3829394067],[-10541372.85955094,4660067.9708289709],[-10541374.389313467,4659830.2446785429],[-10541374.461190486,4659816.051761738],[-10541376.068236733,4659565.5845287116],[-10541377.665472301,4659316.5902761593],[-10541380.607742101,4659058.63631933],[-10541382.283103967,4658911.7724732691],[-10541382.932205569,4658800.3379460266],[-10541382.972850522,4658796.1861177161],[-10541384.512117852,4658541.7444691453],[-10541386.077112975,4658282.8596295845],[-10541386.090326089,4658277.3758576633],[-10541387.599859718,4658023.7400315693],[-10541389.143930722,4657764.3149030991],[-10541389.184976151,4657760.2038186993],[-10541390.707323719,4657504.6245898651],[-10541392.25509876,4657244.6696236646],[-10541394.388443308,4656985.1490468932],[-10541396.469230011,4656731.7874227213],[-10541396.522288676,4656726.305506207],[-10541398.656134274,4656468.1175749497],[-10541400.726410063,4656217.8021596055],[-10541400.766853675,4656210.5875070654],[-10541402.880476613,4655953.6415315242],[-10541404.944344861,4655702.7534185499],[-10541404.994099777,4655697.3540918129],[-10541407.082494322,4655441.6661382662],[-10541409.16588337,4655186.6027099863],[-10541411.5005586,4654928.6304747313],[-10541413.82392125,4654671.6240229448],[-10541416.135370098,4654414.1164953569],[-10541418.446318358,4654156.5884431303],[-10541420.757767195,4653899.0643086899],[-10541423.069816699,4653641.4976422032],[-10541425.36284446,4653383.918516418],[-10541427.657874491,4653126.311705919],[-10541427.737475237,4652877.3336633341],[-10541427.818677286,4652626.8959105397],[-10541427.805355471,4652608.7201364525],[-10541427.881958324,4652375.0199209861],[-10541427.964560928,4652121.7010672502],[-10541427.96795395,4652091.7589855315],[-10541428.037250189,4651862.8692477793],[-10541428.115345269,4651603.0318795964],[-10541428.107526327,4651575.4282844774],[-10541428.180923907,4651337.3007921558],[-10541428.264719069,4651059.7292169007],[-10541431.088855572,4650806.7503189174],[-10541433.936318038,4650551.8463131106],[-10541434.020612115,4650545.563847675],[-10541436.736028459,4650303.9567705262],[-10541436.796495205,4650295.8172046309],[-10541438.704501092,4650038.3173640408],[-10541438.74154135,4650031.1869859174],[-10541440.592884338,4649780.5474531883],[-10541442.505795205,4649521.8379021222],[-10541442.552747315,4649516.522236526],[-10541444.419907028,4649262.1891653826],[-10541446.332616825,4649001.5987562248],[-10541447.195626087,4648738.4774901764],[-10541448.035811245,4648482.349929681],[-10541448.052928874,4648475.7443576744],[-10541448.897417057,4648213.4000960402],[-10541449.703064313,4647963.0459446525],[-10541449.751516294,4647951.4881571075],[-10541450.621334139,4647692.0083527071],[-10541451.453011606,4647443.6511312826],[-10541451.469827671,4647432.9375564288],[-10541452.306007801,4647176.3387809284],[-10541453.126571329,4646924.1988761267],[-10541455.267841684,4646664.8751315186],[-10541457.362760555,4646411.0756920623],[-10541457.384383885,4646406.4045577934],[-10541459.497922733,4646148.7455345904],[-10541461.553196935,4645898.0968428152],[-10541461.594141878,4645891.8959547179],[-10541463.708581936,4645635.8713562749],[-10541465.777471412,4645385.3070559967],[-10541465.798193721,4645380.6758961724],[-10541467.879496094,4645126.2852207478],[-10541469.954491351,4644872.701315606],[-10541471.315268604,4644612.3143764194],[-10541472.645512726,4644358.1305538407],[-10541472.654221069,4644352.7356179599],[-10541473.984964298,4644093.9611437488],[-10541475.272660607,4643843.1004723618],[-10541475.309800912,4643835.9745298577],[-10541476.633936867,4643578.793101999],[-10541477.926238105,4643327.4514816729],[-10541477.962678229,4643322.4211457418],[-10541479.28941744,4643066.8428776516],[-10541480.611351307,4642812.0731935389],[-10541481.45223435,4642552.7043630034],[-10541482.293217534,4642293.6206020704],[-10541483.142209822,4642034.6279965574],[-10541483.991302215,4641775.7996466737],[-10541484.833787149,4641517.4826628789],[-10541485.674670264,4641259.4121976364],[-10541486.513250809,4641001.7414647844],[-10541487.350229513,4640744.2572685899],[-10541489.774119068,4640483.8662294056],[-10541492.116517991,4640232.1090717074],[-10541492.191801518,4640224.0208180845],[-10541494.60778196,4639964.5578086311],[-10541496.911637865,4639717.2100631017],[-10541497.004740648,4639705.5413194587],[-10541499.400097681,4639447.6999237034],[-10541501.708858486,4639199.1586666796],[-10541501.803463886,4639190.5487440322],[-10541504.188409133,4638934.1910978565],[-10541506.566146195,4638678.5584402848],[-10541508.958598951,4638419.8462921372],[-10541511.354555415,4638160.7585192565],[-10541511.403609775,4638155.3679911811],[-10541513.758520709,4637901.236124116],[-10541516.16799199,4637641.2968979795],[-10541516.217846937,4637634.8599182228],[-10541518.565449493,4637381.7347432403],[-10541520.974119581,4637122.0618742276],[-10541521.003852034,4637117.1935025109],[-10541523.376782602,4636862.2749776645],[-10541525.796965402,4636602.3712518625],[-10541527.702160927,4636344.3045205669],[-10541529.60935853,4636086.0461515412],[-10541529.634285526,4636081.3000062909],[-10541531.506144047,4635827.5612871842],[-10541533.41554375,4635568.8631011164],[-10541533.462195039,4635562.5094247339],[-10541535.335555354,4635309.9290012261],[-10541537.255466627,4635050.7817404708],[-10541537.281895317,4635045.9960953658],[-10541539.168970384,4634791.4081793623],[-10541541.093486493,4634531.801821365],[-10541541.676672669,4634273.6259283535],[-10541542.261660878,4634015.5176992845],[-10541542.841142656,4633757.0690949969],[-10541543.423327411,4633498.4143611193],[-10541544.003009191,4633239.5160958981],[-10541544.584492885,4632980.2933555795],[-10541545.184197251,4632720.8665832244],[-10541545.601918111,4632539.8993229205],[-10541539.812590813,4632461.3197830543],[-10541541.319529803,4632201.1002635043],[-10541542.828170627,4631940.9109562775],[-10541544.351828478,4631680.7742037987],[-10541545.876387261,4631420.6882143747],[-10541547.391334923,4631160.4637653884],[-10541548.906482613,4630899.9308046801],[-10541550.431942176,4630640.1529861242],[-10541551.956000147,4630380.7671639593],[-10541554.813779084,4630122.3624888575],[-10541557.67035649,4629864.147632244],[-10541560.51041493,4629606.1783664394],[-10541563.34797038,4629348.4376947563],[-10541566.187227692,4629091.1073766183],[-10541569.025183329,4628833.8394099837],[-10541571.86734367,4628576.9426928973],[-10541574.169303177,4628368.8575473838],[-10541574.166084176,4628319.6058986904],[-10541574.942503549,4628108.5640688529],[-10541575.106875332,4628058.5132414419],[-10541575.944851385,4627804.3444550335],[-10541575.952057948,4627799.0375988884],[-10541576.776116678,4627540.4139447371],[-10541577.577151284,4627288.7796741677],[-10541577.605081286,4627282.9110029079],[-10541578.425035806,4627026.1696756054],[-10541579.228573218,4626774.7691602614],[-10541579.238983715,4626770.3875942752],[-10541580.062843164,4626515.5577958273],[-10541580.884199997,4626261.7099440936],[-10541581.623061575,4626004.0763115268],[-10541582.363925248,4625746.016149723],[-10541583.094577091,4625487.5404648809],[-10541583.828031953,4625228.6597518204],[-10541584.572499156,4624969.3043709118],[-10541585.318267684,4624709.6410006378],[-10541586.064436529,4624449.6927588191],[-10541586.811706502,4624189.5252489038],[-10541587.160322413,4623930.0270098234],[-10541587.508537792,4623670.3690730007],[-10541587.869767914,4623410.5435404005],[-10541588.232399551,4623150.5573138287],[-10541586.065549638,4622890.9548893981],[-10541583.89689777,4622631.1944470396],[-10541581.75557724,4622371.5839497549],[-10541579.611353451,4622111.6209052214],[-10541582.572546819,4621856.5341345184],[-10541585.538745558,4621601.0713910703],[-10541585.560970047,4621598.4404820595],[-10541588.488324892,4621344.766230166],[-10541591.453621693,4621087.7759874258],[-10541591.486257635,4621083.859221899],[-10541594.438640309,4620829.4009765116],[-10541597.442680217,4620570.5499426145],[-10541600.430701502,4620311.2088917308],[-10541603.424328819,4620051.443161333],[-10541603.580225177,4619794.3405725341],[-10541603.736121505,4619537.2011708142],[-10541603.906634398,4619279.8261388093],[-10541604.076646648,4619022.2837212002],[-10541604.236947788,4618764.6244299514],[-10541604.397849558,4618506.827742896],[-10541604.57146574,4618248.8810460297],[-10541604.743980614,4617990.7983771088],[-10541604.535161441,4617733.0835430017],[-10541604.325541204,4617474.8629583092],[-10541604.102305418,4617216.4232920446],[-10541603.878368739,4616957.6688068146],[-10541603.654331984,4616698.9642995279],[-10541603.431196023,4616439.4763294365],[-10541603.211764457,4616180.5281961132],[-10541602.99263308,4615921.0493344655],[-10541860.883877633,4615923.7821117006],[-10541949.606566228,4615924.7216396444],[-10542118.177542185,4615926.4970412059],[-10542175.259515779,4615927.1114504999],[-10542374.892648032,4615928.3733486691],[-10542462.11993444,4615928.9230148178],[-10542630.997459237,4615929.9993953565],[-10542886.703817016,4615931.6167730084],[-10542974.509662045,4615932.1702645719],[-10543141.667629704,4615933.2305809464],[-10543395.867873374,4615934.8234806275],[-10543485.699724583,4615935.38475079],[-10543484.98232943,4615627.9332098104],[-10543484.266135762,4615320.5790623063],[-10543484.241003327,4615313.9924760414],[-10543483.548540553,4615013.2252888363],[-10543483.07317969,4614806.8198784906],[-10543483.188763382,4614705.9048495656],[-10543483.203061469,4614696.2689375384],[-10543483.412076999,4614510.4607120054],[-10543483.288793538,4614397.7667619409],[-10543482.952830086,4614089.3193542846],[-10543482.954393577,4614082.0511708539],[-10543482.645201754,4613780.5332108373],[-10543482.32746462,4613471.4282452241],[-10543482.805009022,4613212.2702709753],[-10543483.260628033,4612964.955961871],[-10543483.287451819,4612953.9768144414],[-10543483.746360663,4612696.5446242942],[-10543484.178906625,4612454.7736691115],[-10543484.19354892,4612439.9826844856],[-10543484.263085047,4612397.9572515972],[-10543484.536310775,4612184.3153986251],[-10543484.845531711,4611940.7544784723],[-10543484.880666843,4611929.5573555212],[-10543485.235026503,4611675.7339747045],[-10543485.550215999,4611448.4772934085],[-10543485.542324008,4611422.9296744801],[-10543485.878974734,4611167.8132592263],[-10543486.216533625,4610911.8714495394],[-10543486.223203789,4610904.5071339728],[-10543486.535978071,4610655.2151644705],[-10543486.812056199,4610435.8729831455],[-10543486.648993578,4610397.8211393831],[-10543486.586805398,4610388.0848980397],[-10543485.969221648,4610267.9818143565],[-10543486.147313859,4610139.7759447535],[-10543486.507422579,4609881.0430629207],[-10543486.513592178,4609873.6791014299],[-10543486.868938912,4609621.6187226372],[-10543487.235967761,4609361.4780042926],[-10543487.894899042,4609104.9432508294],[-10543488.555533389,4608848.3003465524],[-10543489.231988097,4608591.4087804509],[-10543489.907343531,4608334.3087000595],[-10543490.57669316,4608077.1100591132],[-10543491.246345472,4607819.6603819644],[-10543491.898078652,4607562.0793012269],[-10543492.095671928,4607483.5204994874],[-10543489.700362107,4607304.2207176387],[-10543489.701004518,4607264.0204332927],[-10543491.096056404,4607045.2496952694],[-10543492.678875333,4606796.7904178016],[-10543492.722805113,4606787.4235236645],[-10543493.378945041,4606529.7203402612],[-10543494.03367921,4606272.5298842033],[-10543494.710544018,4606014.7313025147],[-10543495.389014544,4605756.5014192415],[-10543495.428172844,4605743.1442006202],[-10543493.761852678,4605498.1743264999],[-10543493.002134735,4605386.4671582198],[-10543495.283994773,4605239.0378644234],[-10543493.328553753,4604981.1648758994],[-10543491.384713979,4604724.6590597332],[-10543489.662554238,4604500.2506564166],[-10543489.652415864,4604468.114029998],[-10543489.58676145,4604253.9702537768],[-10543489.579410441,4604211.9339780929],[-10543489.507713966,4603954.88087657],[-10543489.434717679,4603697.6355324658],[-10543489.356216311,4603440.2519494593],[-10543489.349017531,4603415.6181649817],[-10543489.32702701,4603340.979019016],[-10543486.195191514,4603182.8199016312],[-10543486.897578666,4602925.9058801513],[-10543487.600668699,4602668.772380637],[-10543488.296351762,4602411.4872813718],[-10543488.992937541,4602154.0294588748],[-10543489.695330253,4601896.5621431349],[-10543490.396221993,4601639.0317366859],[-10543491.088405184,4601381.3605861999],[-10543491.780389654,4601123.5373719735],[-10543491.51737375,4600866.6397133032],[-10543491.255057123,4600609.9204268577],[-10543490.980925763,4600353.3434746051],[-10543490.707393698,4600096.9289580304],[-10543490.452082509,4599840.5111345323],[-10543490.196271166,4599584.0435448624],[-10543489.93575005,4599328.090437266],[-10543489.675326224,4599072.4686179804],[-10543487.690440303,4598815.3675512644],[-10543485.706856068,4598558.1969021885],[-10543483.704049325,4598301.0378741622],[-10543481.70094192,4598043.8695944687],[-10543479.707645945,4597786.631613398],[-10543477.711948564,4597529.1892942982],[-10543475.720853509,4597272.0471009417],[-10543474.416590568,4597103.6613862514],[-10543473.262020791,4597015.0566314552],[-10543472.706267532,4596758.1804668959],[-10543472.151205821,4596502.3830076968],[-10543471.589339603,4596246.190551104],[-10543471.026371215,4595990.0955516873],[-10543470.456293829,4595734.0915129362],[-10543469.887116324,4595478.2141811466],[-10543469.329251003,4595222.4207967985],[-10543468.77218559,4594966.7383261034],[-10543468.035317263,4594710.6582383169],[-10543467.296648996,4594454.3150377301],[-10543466.520840386,4594197.6929685064],[-10543465.745534617,4593940.7896342818],[-10543465.728054591,4593936.0805911208],[-10543464.989252687,4593683.636350438],[-10543464.235676048,4593426.211255352],[-10543464.21267963,4593422.6855002455],[-10543463.475794282,4593168.5249273935],[-10543462.728328867,4592910.5772588337],[-10543462.65833924,4592652.8294999637],[-10543462.587151175,4592394.7409179807],[-10543462.501248976,4592136.3332885252],[-10543462.415950192,4591877.6084161066],[-10543462.333653437,4591619.0551074818],[-10543462.251958596,4591360.3613655893],[-10543462.185081813,4591101.5500935689],[-10543462.13614727,4590910.7813544646],[-10543462.865464628,4590842.5906518744],[-10543462.91640017,4590586.5048574861],[-10543462.96579488,4590335.0211483994],[-10543462.949215692,4590330.3334589088],[-10543462.99364531,4590074.0800231956],[-10543463.03832202,4589824.0905098142],[-10543463.044983653,4589817.7417586856],[-10543463.10883702,4589561.3357114],[-10543463.171750162,4589309.5416085208],[-10543463.155071184,4589304.8145828834],[-10543463.148400325,4589229.9180790829],[-10543462.773113808,4589048.2288616402],[-10543462.241684994,4588791.5938114058],[-10543462.701098364,4588534.5866048662],[-10543463.157400228,4588278.5302296784],[-10543463.58178262,4588055.7448423319],[-10543463.431999236,4588021.7783585051],[-10543462.298680045,4587764.9425856546],[-10543461.953467956,4587684.3981203167],[-10543463.041517504,4587508.2046049563],[-10543464.628626261,4587251.4651146624],[-10543466.237861671,4586994.6319426587],[-10543467.846297359,4586737.7066212958],[-10543468.267910007,4586487.6009275271],[-10543468.692841433,4586235.75297336],[-10543468.701667398,4586222.1404080866],[-10543469.104772985,4585982.1495383941],[-10543469.533839263,4585726.7992684096],[-10543469.560324384,4585708.6234261552],[-10543469.970429773,4585469.6365755312],[-10543470.412141552,4585210.6837117076],[-10543470.422969837,4585197.0727488603],[-10543470.472082188,4585167.0082201418],[-10543470.067263164,4584949.9474185081],[-10543469.575530557,4584687.4626584891],[-10543721.872344239,4584693.8013493763],[-10543975.525117366,4584700.1681374386],[-10544229.84525728,4584706.5494207796],[-10544485.059224674,4584712.947106597],[-10544740.786681848,4584719.3403489403],[-10544997.34399285,4584725.747578661],[-10545254.658373853,4584732.1712105284],[-10545512.897517916,4584738.6098469086],[-10545768.924898244,4584736.2172146402],[-10546025.022860438,4584733.8172112349],[-10546281.368908795,4584731.4167007692],[-10546537.905977692,4584729.0083111087],[-10546794.448353352,4584726.5884828437],[-10547051.427432431,4584724.1575985095],[-10547308.84121261,4584721.7190898871],[-10547548.436578464,4584719.442967888],[-10547566.653995285,4584718.4657459036],[-10547823.966849182,4584715.5118583348],[-10548077.503727684,4584712.5927076461],[-10548080.136278164,4584712.5541692926],[-10548335.149967754,4584709.6133966884],[-10548583.805790268,4584706.7381455228],[-10548588.951052207,4584706.6764494758],[-10548842.316531785,4584703.7409049887],[-10549090.585906319,4584700.8565067649],[-10549094.534181273,4584700.809566563],[-10549345.94599678,4584697.8945055734],[-10549362.562750917,4584697.7012711708],[-10549568.238716166,4584700.7948181583],[-10549596.029494364,4584702.8055645507],[-10549852.60201513,4584707.2483148379],[-10550109.898775212,4584711.6960177422],[-10550114.559173962,4584711.7763005998],[-10550367.287742402,4584716.143087009],[-10550624.962541034,4584720.5874870494],[-10550630.899017984,4584720.696228452],[-10550882.691302415,4584725.0365921762],[-10551140.625702396,4584729.4766737064],[-10551145.048526037,4584729.544375889],[-10551398.772448724,4584733.9116717782],[-10551657.126335267,4584738.3503565807],[-10551914.3373629,4584736.1604805794],[-10552171.498732923,4584733.9653938608],[-10552428.608142629,4584731.7686553439],[-10552685.670397624,4584729.5659434637],[-10552942.699714325,4584727.3638674617],[-10553199.68097529,4584725.1549283937],[-10553456.622089701,4584722.9358214838],[-10553713.533069115,4584720.7118849857],[-10553963.359045299,4584717.9009285374],[-10554205.936322218,4584715.1670689108],[-10554212.996102408,4584715.0936601758],[-10554462.40169118,4584712.2855046233],[-10554702.088218294,4584709.579763975],[-10554711.580216698,4584709.4796394072],[-10554960.478417374,4584706.6623379104],[-10555202.267380407,4584703.9200981772],[-10555209.165873749,4584703.8423695667],[-10555457.582315952,4584701.0232938658],[-10555705.754875448,4584698.2026955774],[-10555963.548432788,4584700.6218310799],[-10556221.084992563,4584703.0346150231],[-10556478.389884109,4584705.4434621045],[-10556735.459002702,4584707.8446863666],[-10556992.285840858,4584710.2325682025],[-10557248.877206415,4584712.6115561584],[-10557505.245013112,4584714.9887679117],[-10557761.378648713,4584717.3574670702],[-10558018.428207265,4584712.9515405325],[-10558276.019993942,4584708.5285777533],[-10558281.046518516,4584708.4370133374],[-10558534.148302134,4584704.0873077726],[-10558792.814733647,4584699.6342128487],[-10558799.437307578,4584699.5220418805],[-10559051.800034447,4584695.1681512557],[-10559311.444298647,4584690.6807308001],[-10559316.550815856,4584690.5919619584],[-10559571.664630191,4584686.1733504618],[-10559832.42749018,4584681.6500778953],[-10560089.431851348,4584682.0888244268],[-10560345.984889708,4584682.5210932847],[-10560602.108630762,4584682.9466300569],[-10560857.826101216,4584683.3632737342],[-10561113.443856189,4584683.7766138138],[-10561368.713608051,4584684.1836022977],[-10561466.218776152,4584684.3379529826],[-10561623.667291971,4584684.7948490316],[-10561878.263460634,4584685.5292625967],[-10562133.398351992,4584686.4399633603],[-10562388.870834572,4584687.3467208147],[-10562396.086194044,4584687.3746118201],[-10562644.653977063,4584688.2608474381],[-10562900.754587499,4584689.1672178563],[-10562910.36101719,4584689.2046178635],[-10563157.185380543,4584690.0735852541],[-10563413.953364376,4584690.970670999],[-10563421.128076784,4584690.9969101036],[-10563671.032609005,4584691.8556790827],[-10563928.427319225,4584692.7347104056],[-10564183.650690272,4584696.4174138773],[-10564435.601570468,4584700.0468954686],[-10564438.829209683,4584700.0869010398],[-10564693.979997139,4584703.7616017563],[-10564944.809078231,4584707.3680927167],[-10564949.112463655,4584707.4271532092],[-10565204.217598744,4584711.0892751468],[-10565456.048541006,4584714.6984293042],[-10565459.276280345,4584714.7376723355],[-10565714.318242813,4584718.3828941053],[-10565969.320659766,4584722.018585464],[-10566212.733525168,4584716.3380536577],[-10566447.590175439,4584710.8513151733],[-10566455.728205649,4584710.6706197448],[-10566698.303299731,4584704.9963284517],[-10566929.647479268,4584699.5794087993],[-10566940.459908679,4584699.3172134245],[-10567182.216153413,4584693.6420446569],[-10567415.414981648,4584688.1621941971],[-10567423.554513561,4584687.9811176937],[-10567664.481897246,4584682.3189258436],[-10567905.012621019,4584676.6602988811],[-10568160.52366464,4584675.5428053914],[-10568415.876825308,4584674.4208647562],[-10568671.108244849,4584673.3005775809],[-10568926.221327251,4584672.1760970624],[-10569181.154501272,4584671.035857412],[-10569431.782787481,4584669.9096418647],[-10569435.929491911,4584669.9013388911],[-10569690.56462053,4584668.7543655168],[-10569945.079710061,4584667.6007838594],[-10570199.754524995,4584674.1903487546],[-10570454.305697147,4584680.7700062823],[-10570463.306723978,4584680.9981950074],[-10570708.742437216,4584687.3346721772],[-10570963.056535611,4584693.8946418893],[-10570971.739393933,4584694.1107592769],[-10571217.234877244,4584700.435425682],[-10571471.291578326,4584706.9764703121],[-10571477.822443673,4584707.1532071838],[-10571725.220031234,4584713.5137085058],[-10571979.008922968,4584720.0317607401],[-10572233.715210928,4584722.1344596446],[-10572488.837681228,4584724.2334692338],[-10572744.334885901,4584726.3210365437],[-10573000.262589505,4584728.4051685948],[-10573256.523879739,4584730.4872644953],[-10573513.162106842,4584732.5659256615],[-10573770.160751687,4584734.6400083164],[-10574027.538135475,4584736.7116730558],[-10574282.811589491,4584737.7146641547],[-10574534.933492273,4584738.7002734952],[-10574537.882809335,4584738.7055826224],[-10574792.749392178,4584739.6912921201],[-10575043.206466377,4584740.6534041893],[-10575047.43146139,4584740.6655643163],[-10575301.868146338,4584741.6422542185],[-10575380.406126205,4584741.9422094123],[-10575553.579317205,4584741.7581924396],[-10575556.130544424,4584741.7481366377],[-10575810.142886695,4584741.462483977],[-10576063.769786799,4584741.1685717376],[-10576319.0548898,4584740.826223217],[-10576574.041550444,4584740.4780296246],[-10576828.720057542,4584740.1302191392],[-10577083.117141796,4584739.7774532083],[-10577337.277955076,4584739.411724003],[-10577591.277082913,4584739.0393863153],[-10577844.673919795,4584738.6575192567],[-10578097.603120189,4584738.2705707159],[-10578322.149049565,4584738.6423439803],[-10578548.184688136,4584739.0142358467],[-10578775.705630887,4584739.3821790051],[-10579004.70767297,4584739.7476987196],[-10579235.04614836,4584740.1186763169],[-10579467.008987468,4584740.4859586125],[-10579700.416684406,4584740.8410306256],[-10579935.848603824,4584741.1943116337],[-10580191.29726984,4584744.1526144575],[-10580446.360093109,4584747.1012601266],[-10580701.640465964,4584750.0352881337],[-10580956.952274799,4584752.964359466],[-10581212.600869877,4584755.9000389259],[-10581468.381316135,4584758.8306340389],[-10581724.339966793,4584761.7543650623],[-10581980.449991029,4584764.6741555771],[-10582237.639466697,4584765.891752379],[-10582494.58856659,4584767.1013429826],[-10582751.300193977,4584768.3091555219],[-10583007.772546839,4584769.5093431724],[-10583264.005224766,4584770.6959320148],[-10583519.999729425,4584771.8764212141],[-10583775.754559062,4584773.0548781455],[-10584031.269913947,4584774.2253288692],[-10584285.016346881,4584774.4193697982],[-10584539.698453397,4584774.6060333084],[-10584550.460901491,4584774.6235124329],[-10584795.307323189,4584774.7971401848],[-10585051.872890761,4584774.9729890153],[-10585066.223856239,4584774.9750679946],[-10585309.187217517,4584775.1347249253],[-10585567.556354495,4584775.2973445402],[-10585578.318902718,4584775.3120273575],[-10585826.735120339,4584775.4655521484],[-10586087.424018933,4584775.6186256511],[-10586344.751156934,4584776.2084506853],[-10586589.683674287,4584776.7633925136],[-10586600.566360332,4584776.781252264],[-10586700.412216142,4584776.9946005996],[-10586855.567520561,4584778.489994918],[-10587095.111841608,4584780.7946937084],[-10587109.536790844,4584780.9351895172],[-10587362.82107516,4584783.3735247431],[-10587604.41594856,4584785.6944819968],[-10587615.214837817,4584785.7894949485],[-10587866.751316903,4584788.1905991305],[-10588117.34741709,4584790.5745498613],[-10588372.55651273,4584792.6076647155],[-10588628.194900861,4584794.6368371015],[-10588884.270890979,4584796.6667698547],[-10589140.795996336,4584798.6923787128],[-10589293.82165898,4584799.9175617239],[-10589397.545658791,4584800.7739127716],[-10589654.825328942,4584802.8928129664],[-10589912.671649162,4584805.0090409918],[-10590171.085620599,4584807.1233594641],[-10590426.227992255,4584802.7811356094],[-10590680.971206123,4584798.4394246228],[-10590935.28642915,4584794.0951761371],[-10591189.180469112,4584789.7509322315],[-10591443.047177866,4584785.4103766931],[-10591696.550169501,4584781.0698253894],[-10591949.831006469,4584776.7254643803],[-10592171.572252298,4584772.9162690891],[-10592202.48641674,4584773.474082646],[-10592456.086488999,4584772.8033036217],[-10592710.361736022,4584772.123496417],[-10592964.938028602,4584771.4294518679],[-10593219.950922221,4584770.726253395],[-10593475.205593301,4584770.0196218221],[-10593730.816573275,4584769.3058704548],[-10593986.775152193,4584768.5819488531],[-10594243.156516274,4584767.8511612955],[-10594500.009723956,4584766.8678143034],[-10594756.430235263,4584765.8797670817],[-10595012.515662177,4584764.8898153733],[-10595268.226659587,4584763.8938920544],[-10595523.605375895,4584762.8862771885],[-10595778.630987156,4584761.8742158571],[-10596033.318009997,4584760.860631384],[-10596287.677457074,4584759.8426003],[-10596543.781197077,4584759.774792498],[-10596794.268392997,4584759.7034577746],[-10596799.64896635,4584759.705842101],[-10597055.275258735,4584759.6183358468],[-10597303.529392725,4584759.5299818609],[-10597310.664579252,4584759.5294327894],[-10597565.811922181,4584759.4353198353],[-10597815.382666875,4584759.3364087055],[-10597820.723294422,4584759.3363782736],[-10598075.412612012,4584759.2242191155],[-10598329.864857648,4584759.1067229332],[-10598584.898452872,4584760.9177791271],[-10598840.592105363,4584762.725654114],[-10598845.81289508,4584762.7613407243],[-10599096.951521691,4584764.5269160476],[-10599353.950471705,4584766.3286829228],[-10599360.843980486,4584766.378468602],[-10599611.564527374,4584768.1310819797],[-10599869.858062599,4584769.9299184158],[-10599874.999261023,4584769.9620465543],[-10600128.752687486,4584771.7189645329],[-10600388.2776355,4584773.5074987942],[-10600644.537647234,4584774.231932289],[-10600900.390992425,4584774.9484876078],[-10601155.869908085,4584775.6539869551],[-10601410.949065126,4584776.35135388],[-10601665.632167852,4584777.036393906],[-10601919.91350965,4584777.7136828341],[-10602173.823825732,4584778.3913551765],[-10602427.324471829,4584779.0602596328],[-10602697.560199989,4584781.7328729061],[-10602966.827817442,4584784.3882059176],[-10603210.332175771,4584786.7812157925],[-10603235.068819387,4584786.9716453031],[-10603502.308746701,4584789.0334697254],[-10603768.563249223,4584791.0844945172],[-10604033.818411103,4584793.1190000111],[-10604298.065722607,4584795.1397825303],[-10604561.303982375,4584797.1444270909],[-10604816.480363375,4584796.2089167777],[-10605072.04328567,4584795.2665413776],[-10605327.999456946,4584794.3138690544],[-10605584.335561989,4584793.353314843],[-10605841.139100671,4584792.3876747089],[-10606098.481254293,4584791.4146604631],[-10606355.884377493,4584790.4298254065],[-10606613.465804197,4584789.4385074386],[-10606867.586565493,4584790.0818965379],[-10607121.864606498,4584790.7219802663],[-10607376.309438111,4584791.3541828282],[-10607630.92136066,4584791.9800294694],[-10607885.701275157,4584792.6009183507],[-10608140.636166755,4584793.215451357],[-10608395.724633867,4584793.8219761467],[-10608650.909911655,4584794.4222724019],[-10608906.014085175,4584796.5258361548],[-10609161.084120065,4584798.6221553721],[-10609416.11420971,4584800.7103403257],[-10609671.101751123,4584802.7919162754],[-10609926.056455407,4584804.8639597846],[-10610180.978923228,4584806.9300297694],[-10610435.855138529,4584808.9968628315],[-10610690.698016101,4584811.0577223916],[-10610946.531740619,4584811.013721766],[-10611193.854747178,4584810.96594257],[-10611201.607299516,4584810.9554884806],[-10611455.909675632,4584810.8855646998],[-10611699.085246591,4584810.8133982383],[-10611709.448880356,4584810.8086532596],[-10611962.078045964,4584810.728440796],[-10612206.389413899,4584810.6436863486],[-10612214.001005169,4584810.6492480459],[-10612465.226668254,4584810.5560765946],[-10612715.744823506,4584810.4552817438],[-10612970.781214396,4584813.8760347581],[-10613225.891490182,4584817.2913228516],[-10613481.083559945,4584820.6927570738],[-10613736.357623853,4584824.089616064],[-10613991.879471222,4584827.4805010045],[-10614247.543181097,4584830.8663020441],[-10614503.368275736,4584834.2529930323],[-10614759.346445674,4584837.6361253355],[-10615001.210781539,4584844.0573834553],[-10615243.951418793,4584850.4952923758],[-10615248.014157221,4584850.6057303175],[-10615487.564452915,4584856.962816868],[-10615732.043376578,4584863.4430519976],[-10615737.838192627,4584863.5881827977],[-10615977.392594874,4584869.9274817025],[-10616223.620717514,4584876.4366970453],[-10616227.921427693,4584876.5545063894],[-10616470.729446508,4584882.9623090979],[-10616718.705266459,4584889.4988523889],[-10616975.585805869,4584886.9337031869],[-10617125.245005941,4584885.4357890626],[-10617232.173910206,4584884.5105329836],[-10617488.444049947,4584882.3045882843],[-10617744.408240031,4584880.0952136079],[-10618000.05236432,4584877.887239024],[-10618255.386434264,4584875.6755802575],[-10618510.410550011,4584873.4542633593],[-10618765.12781507,4584871.2306604441],[-10619020.131102484,4584869.7967629787],[-10619275.358245349,4584868.3553656945],[-10619530.777807724,4584866.9118071208],[-10619786.403805656,4584865.4608758977],[-10620042.246550925,4584863.9978690986],[-10620298.306644211,4584862.5273625022],[-10620554.559557462,4584861.0536777899],[-10620811.006592203,4584859.5719849812],[-10621067.792510243,4584858.8763099881],[-10621324.334449615,4584858.173136875],[-10621580.624901738,4584857.4661517255],[-10621836.66476764,4584856.7556087403],[-10622092.467863098,4584856.0416349834],[-10622348.019471304,4584855.3219426041],[-10622603.328902934,4584854.5889052758],[-10622858.396358166,4584853.8519287696],[-10623114.604820052,4584852.0967083881],[-10623366.564630214,4584850.3652743762],[-10623370.351354221,4584850.3431426836],[-10623625.631755916,4584848.5772500914],[-10623875.150378086,4584846.8456997164],[-10623880.472154941,4584846.8116139146],[-10624134.820391724,4584845.0485222684],[-10624384.671092601,4584843.3108703308],[-10624388.678368477,4584843.2755188448],[-10624642.066608597,4584841.5050598569],[-10624894.950472536,4584839.732950977],[-10625152.067668492,4584838.4564074492],[-10625409.801268136,4584837.1703287913],[-10625419.905806245,4584837.1241486259],[-10625668.15697797,4584835.8813244412],[-10625927.141505668,4584834.5797344055],[-10625940.635714335,4584834.517271054],[-10626186.774373524,4584833.2686091214],[-10626447.034056963,4584831.9409579197],[-10626457.119072758,4584831.8922357718],[-10626707.911645778,4584830.6107623726],[-10626969.357683513,4584829.2710319189],[-10627226.794438398,4584829.6717638383],[-10627479.517410908,4584830.0610754741],[-10627484.159811864,4584830.0637258077],[-10627741.451200929,4584830.4443757329],[-10627992.408657646,4584830.8095446015],[-10627998.665401924,4584830.8205772946],[-10628255.820936011,4584831.1854667533],[-10628508.108611785,4584831.5363944592],[-10628512.891172774,4584831.5440013036],[-10628769.867602477,4584831.8989773011],[-10629026.758834966,4584832.2481068019],[-10629243.156539824,4584827.7203909997],[-10629280.445618739,4584827.6533823544],[-10629534.362356143,4584827.1931210048],[-10629788.586944997,4584826.7359089702],[-10630043.175449336,4584826.2725944733],[-10630297.124923958,4584825.7923777131],[-10630552.029088642,4584825.3065645099],[-10630588.719584012,4584825.2415920235],[-10630807.93089469,4584823.4411532767],[-10630996.788445173,4584821.8852604991],[-10631040.690864963,4584826.4225903992],[-10631064.651616646,4584831.5120504191],[-10631195.251004776,4584833.0593813779],[-10631323.146340197,4584833.9549411815],[-10631345.176619548,4584834.1104658693],[-10631581.14200379,4584834.086690031],[-10631793.414230503,4584834.0603100508],[-10631838.536088301,4584834.0211771242],[-10632095.30666887,4584833.8013640456],[-10632353.073274268,4584833.5811615605],[-10632610.890636975,4584833.3546034209],[-10632868.727321481,4584833.1228338229],[-10633126.594340239,4584832.8834376764],[-10633381.920290168,4584831.8508010851],[-10633637.741198985,4584830.8081192495],[-10633645.255585287,4584830.7752652634],[-10633893.976075217,4584829.7616209518],[-10634142.132528076,4584828.7445494151],[-10634150.642638924,4584828.6608454483],[-10634159.03541727,4584828.5719311461],[-10634405.732122922,4584826.0596112693],[-10634662.60021534,4584823.4353572093],[-10634672.368346922,4584823.3288913229],[-10634921.225191645,4584820.7846516129],[-10635181.612357812,4584818.1166460151],[-10635438.563545695,4584812.4279007893],[-10635677.794721004,4584807.1256998712],[-10635693.348586714,4584806.7898906227],[-10635945.925433394,4584801.1829145839],[-10636140.69639688,4584796.8564787367],[-10636180.748228114,4584797.5923424596],[-10636196.323918013,4584797.8783280961],[-10636279.793982277,4584799.3903205553],[-10636449.428154886,4584799.8938028747],[-10636687.553576635,4584800.5957750427],[-10636700.863908367,4584800.6317646969],[-10636950.652201394,4584801.3636389785],[-10637198.707437305,4584802.0815459155],[-10637451.722773664,4584805.7685741978],[-10637705.820733009,4584809.4657635987],[-10637961.004018387,4584813.164598099],[-10638217.278035913,4584816.8729581563],[-10638239.686041929,4584817.1977830445],[-10638471.994595259,4584818.9165147608],[-10638726.824683035,4584820.7943263836],[-10638981.614225194,4584822.6690882854],[-10639236.634327913,4584824.5405440489],[-10639276.816607395,4584820.8853204306],[-10639481.956378501,4584825.0640053023],[-10639727.282433722,4584830.0540577648],[-10639735.170241702,4584830.2061383082],[-10639972.94366792,4584835.0406783698],[-10640218.916454418,4584840.035688078],[-10640229.510919163,4584840.2478675013],[-10640465.185375798,4584845.0206567897],[-10640711.746327432,4584850.0082950303],[-10640720.608335678,4584850.1893479796],[-10640958.605916785,4584855.001271978],[-10641205.770250749,4584859.9917070428],[-10641460.637084153,4584865.687516938],[-10641698.868931342,4584871.005072373],[-10641715.747893468,4584870.9798957836],[-10641970.909257965,4584870.605027264],[-10642225.968206761,4584870.2227874473],[-10642297.808639169,4584870.1046325928],[-10642480.823025092,4584870.0388336936],[-10642549.751468908,4584870.0113285994],[-10642735.54158867,4584868.3406745028],[-10642748.35736201,4584868.2339291973],[-10642990.097268555,4584867.3213865915],[-10643244.499675281,4584866.3547215713],[-10643501.908079887,4584869.8702765629],[-10643518.07033276,4584870.0902921306],[-10643752.041270664,4584876.1273028823],[-10643758.511678103,4584876.2949025771],[-10644014.374440406,4584882.8888436183],[-10644260.97954802,4584889.2372961417],[-10644269.542919222,4584889.4653814109],[-10644524.008905267,4584896.0078651328],[-10644771.275060626,4584902.3606427228],[-10644777.786714716,4584902.5283696596],[-10644955.545270529,4584907.0871065045],[-10645030.828893667,4584908.7302301228],[-10645184.126723928,4584912.0737808868],[-10645282.995582549,4584913.0778796831],[-10645536.184628209,4584919.0734528536],[-10645790.853045192,4584925.0987607157],[-10645801.546121724,4584925.3475478981],[-10646046.973302402,4584931.1446518889],[-10646304.546000542,4584937.222184672],[-10646318.64472341,4584937.5489878682],[-10646563.404151022,4584943.3219546145],[-10646823.735365743,4584949.4573063916],[-10646834.388997819,4584949.7036795262],[-10647085.510812119,4584955.6096827751],[-10647348.721580137,4584961.7925571734],[-10647605.962095102,4584960.3835318089],[-10647856.683847953,4584959.0044293702],[-10647862.463174842,4584958.970953553],[-10648118.206298431,4584957.5520262104],[-10648365.502482336,4584956.1749854153],[-10648373.195870863,4584956.1347574554],[-10648627.459122883,4584954.7157152053],[-10648875.217027962,4584953.3255789094],[-10648880.996755281,4584953.291848884],[-10649133.778533909,4584951.8645569207],[-10649385.809664657,4584950.4360000798],[-10649642.411959691,4584950.0678557428],[-10649899.587101627,4584949.6916990532],[-10649903.114485297,4584949.6911620665],[-10650157.329984702,4584949.3155377554],[-10650415.637104947,4584948.9266612297],[-10650420.320494156,4584948.9193782425],[-10650674.52057606,4584948.5367631838],[-10650933.978095429,4584948.1393611887],[-10650937.466234777,4584948.1385703078],[-10651194.006859867,4584947.7306420878],[-10651454.611374477,4584947.3103516232],[-10651718.907156166,4584946.1528136805],[-10651979.231352443,4584945.0071288468],[-10651982.478920082,4584944.9990948355],[-10652245.300636774,4584943.8274601195],[-10652503.033706501,4584942.6727718292],[-10652507.376911478,4584942.6546875425],[-10652768.686119791,4584941.4863699563],[-10653025.976889776,4584940.3274908485],[-10653029.22535843,4584940.3193297368],[-10653289.009444088,4584939.1404747907],[-10653470.040190041,4584938.3151050322],[-10653520.268119577,4584940.0301264906],[-10653548.071018487,4584939.8522065589],[-10653804.412220489,4584940.4906200515],[-10654060.67052892,4584941.1230602777],[-10654064.018309794,4584941.1368877767],[-10654316.863363452,4584941.7492729044],[-10654572.991825303,4584942.3609959818],[-10654577.375275787,4584942.3646465819],[-10654829.237819929,4584942.9669983946],[-10655085.271975368,4584943.5712231109],[-10655088.301496793,4584943.5764099387],[-10655341.106104938,4584944.165662311],[-10655596.736504458,4584944.7542563276],[-10655849.179606924,4584946.1772035193],[-10656086.675928999,4584947.5101534668],[-10656090.183390221,4584947.5274115624],[-10656101.241078388,4584947.5569378529],[-10656352.936334698,4584948.3822365217],[-10656589.119772516,4584949.1495732004],[-10656604.243853139,4584949.1921585612],[-10656854.865797384,4584949.9980188422],[-10657093.617035303,4584950.7625385923],[-10657104.973560989,4584950.797400956],[-10657354.566543287,4584951.5944994437],[-10657603.651652059,4584952.3816878265],[-10657862.547055008,4584957.5929991947],[-10658121.514239505,4584962.7980846995],[-10658380.404137183,4584967.9941491913],[-10658639.25909587,4584973.1844970789],[-10658870.977111187,4584977.8265996696],[-10658897.961562375,4584977.8168901484],[-10659156.51046,4584977.7250062833],[-10659414.917195067,4584977.6229554554],[-10659672.958212011,4584977.5159515627],[-10659929.06191661,4584978.2045321306],[-10660185.357039943,4584978.8880263688],[-10660190.47799477,4584978.9080516649],[-10660441.842781125,4584979.5782552334],[-10660698.53305601,4584980.2555169808],[-10660705.327724403,4584980.2821330158],[-10660955.367996186,4584980.9343024874],[-10661212.385244654,4584981.5969434362],[-10661217.506199477,4584981.6167145306],[-10661469.588105258,4584982.2702593915],[-10661726.975777028,4584982.9309897628],[-10661981.381643735,4584985.1603826853],[-10662235.781403113,4584987.38316675],[-10662490.15082749,4584989.6081126314],[-10662744.527459767,4584991.8277205881],[-10662998.879964113,4584994.0393217048],[-10663253.194424627,4584996.2443143101],[-10663507.465335006,4584998.4409189783],[-10663761.682383457,4585000.6300255423],[-10664006.675594145,4585006.7654130012],[-10664252.023209153,4585012.9039782593],[-10664497.765374366,4585019.0364420209],[-10664743.861142978,4585025.1725920253],[-10664990.49432517,4585031.3290773258],[-10665237.7098723,4585037.492805358],[-10665484.892180527,4585043.6397596607],[-10665732.217851773,4585049.7862080364],[-10665987.735276919,4585048.6954186866],[-10666243.393062687,4585047.5956031196],[-10666499.148760544,4585046.4882871173],[-10666755.026097624,4585045.3725806596],[-10667010.940977784,4585044.2553485082],[-10667266.956272904,4585043.1302345796],[-10667523.052460659,4585041.9954595603],[-10667779.247261321,4585040.8535654331],[-10668032.687713571,4585040.1743751122],[-10668286.969027253,4585039.4883115087],[-10668293.066198004,4585039.4703207482],[-10668542.112326518,4585038.7913069194],[-10668798.117611371,4585038.0879372442],[-10668806.786922794,4585038.0591133991],[-10669055.008608941,4585037.3733721087],[-10669312.753883287,4585036.6551112216],[-10669319.270733848,4585036.6280910913],[-10669571.37856313,4585035.9120544149],[-10669830.878543805,4585035.1678437861],[-10670087.317927297,4585040.8182131732],[-10670343.684526742,4585046.4600706594],[-10670599.884635001,4585052.0906209201],[-10670855.953792715,4585057.7111346163],[-10671111.980100607,4585063.3236444611],[-10671367.9054923,4585068.9281511102],[-10671623.722859662,4585074.5217311168],[-10671879.440912656,4585080.1078163041],[-10672136.400786046,4585080.8026277367],[-10672393.820885502,4585081.4923497653],[-10672651.687495325,4585082.1842277218],[-10672785.863193642,4585082.5429457938],[-10672910.013930319,4585083.6977302367],[-10673168.781268621,4585086.0956496214],[-10673321.990025872,4585087.5110620959],[-10673428.041170971,4585086.6067640781],[-10673434.798095971,4585086.5419898918],[-10673687.755393116,4585086.5115654618],[-10673947.898705786,4585086.4729253473],[-10674206.155963525,4585084.968617171],[-10674464.165738558,4585083.4589733174],[-10674721.889286594,4585081.9362405986],[-10674979.335718041,4585080.4103333829],[-10675234.695864528,4585078.8920762241],[-10675490.997988179,4585077.3626230406],[-10675748.254202871,4585075.8121863268],[-10676006.447989708,4585074.248647023],[-10676263.174701715,4585071.2140979925],[-10676511.347834975,4585068.2743415199],[-10676517.806218769,4585068.2008002689],[-10676770.343542008,4585065.203542375],[-10677015.370779471,4585062.2912779087],[-10677020.791977473,4585062.2305862978],[-10677272.158062527,4585059.240460895],[-10677518.575189902,4585056.3021248337],[-10677522.642239753,4585056.2460243655],[-10677772.224786585,4585053.2638009964],[-10678020.923723629,4585050.2851472227],[-10678276.284862841,4585054.5205750577],[-10678531.967669182,4585058.7537133954],[-10678787.707640262,4585062.9844380869],[-10679043.588972336,4585067.2113500033],[-10679299.624079596,4585071.4364827313],[-10679555.808757242,4585075.65818391],[-10679812.138600254,4585079.8676830763],[-10680068.627524529,4585084.0728608025],[-10680079.399639143,4585084.3677590648],[-10680324.254163813,4585087.7340248311],[-10680579.745147889,4585091.2384668179],[-10680835.091365945,4585094.7450727466],[-10681090.288913531,4585098.2443094952],[-10681345.349604173,4585101.7307112413],[-10681600.275540268,4585105.2084725238],[-10681855.080737855,4585108.6758136749],[-10682109.685305588,4585112.1337524336],[-10682110.651996437,4585367.7518541953],[-10682111.622488104,4585624.442767079],[-10682112.576665871,4585879.6005144818],[-10682113.52734164,4586134.0951304743],[-10682114.487221861,4586390.453806363],[-10682115.448902925,4586647.1549594142],[-10682116.411383703,4586904.1973439213],[-10682117.374664173,4587161.5823838869],[-10682118.72608608,4587419.5718767131],[-10682120.081910489,4587678.2968267528],[-10682121.437137067,4587936.0723799653],[-10682122.78956151,4588193.455496205],[-10682124.151699807,4588449.9173289333],[-10682125.516238434,4588707.0793950167],[-10682126.859657004,4588962.908897615],[-10682128.203875065,4589219.1264604926],[-10682128.570571361,4589476.9952300163],[-10682128.935469307,4589733.6917281458],[-10682129.29085633,4589990.3982852679],[-10682129.646745108,4590246.7209227365],[-10682130.0040337,4590503.5957496678],[-10682130.359420124,4590760.4574989295],[-10682130.717709867,4591017.3082045177],[-10682131.075298777,4591274.1591851786],[-10682129.4590351,4591530.8792032795],[-10682127.839366378,4591788.0468212646],[-10682126.227207774,4592044.8093619449],[-10682124.615350138,4592301.4604942296],[-10682122.998987958,4592558.002626773],[-10682121.382626448,4592814.4184518112],[-10682119.772572769,4593070.7152107712],[-10682118.163921358,4593326.8820820991],[-10682115.290927956,4593583.0101534622],[-10682112.419236844,4593839.0266416455],[-10682109.553353177,4594094.9237780161],[-10682106.688171145,4594350.6973555079],[-10682103.816481305,4594606.730569276],[-10682100.944791827,4594862.7931542164],[-10682098.082012858,4595118.8828223357],[-10682095.219534537,4595375.0162436608],[-10682092.878150126,4595631.3693872672],[-10682090.537166387,4595887.7708802633],[-10682088.192879084,4596144.2225077776],[-10682085.850193856,4596400.7124395575],[-10682083.505706826,4596657.2388970656],[-10682081.160018623,4596913.8186806785],[-10682079.447269425,4597101.9376573218],[-10682079.138600267,4597170.4334663553],[-10682077.982067756,4597427.1093401732],[-10682075.91860375,4597683.1910425862],[-10682073.855240354,4597939.2206777744],[-10682071.784268819,4598195.1846241308],[-10682069.715500288,4598451.0950950235],[-10682067.647933604,4598706.9583231062],[-10682065.580067113,4598962.7558494741],[-10682063.505293237,4599218.5028160159],[-10682061.43202161,4599474.1812717151],[-10682061.200244341,4599730.9673447274],[-10682060.970267663,4599988.231674986],[-10682060.738590797,4600244.9596277],[-10682060.508216111,4600501.484175629],[-10682060.276640723,4600757.8193069268],[-10682060.046267357,4601013.961443007],[-10682059.814392986,4601269.8994938498],[-10682059.584020939,4601525.6622166522],[-10682060.048023826,4601786.3596043698],[-10682060.505430296,4602043.5375183905],[-10682060.505520372,4602046.7046677629],[-10682060.96021482,4602306.69203276],[-10682061.382533697,4602547.3080305327],[-10682061.855526146,4602561.8107112385],[-10682062.002379008,4602566.3240865394],[-10682070.32483012,4602825.6335957907],[-10682078.516443929,4603080.89708101],[-10682078.626557861,4603084.4884302914],[-10682086.931389432,4603342.8665270368],[-10682095.22010294,4603600.7745993193],[-10682351.486403637,4603604.0381217059],[-10682603.89090962,4603607.2441216297],[-10682607.781236311,4603607.3035552017],[-10682864.101597618,4603610.5487432182],[-10683120.464106426,4603613.789602695],[-10683376.871866228,4603617.0346652009],[-10683633.304654066,4603620.2718338687],[-10683889.788199224,4603623.4961423511],[-10684146.288162608,4603626.7137030968],[-10684402.356534699,4603629.8556305058],[-10684654.105691666,4603632.9392750142],[-10684658.575377578,4603632.990554315],[-10684914.953701494,4603636.1180924345],[-10685165.516007148,4603639.168004903],[-10685171.4838978,4603639.237226204],[-10685428.160760529,4603642.3591613621],[-10685680.520210216,4603645.4214127865],[-10685684.990296558,4603645.4730741754],[-10685941.958189599,4603648.5773093738],[-10686199.077354336,4603651.6774696885],[-10686457.389581811,4603653.5130333956],[-10686700.632361887,4603655.2365398593],[-10686715.142864054,4603655.2981426716],[-10686718.616263412,4603655.3026892869],[-10686972.343608098,4603656.4556620521],[-10687228.97279392,4603657.612933265],[-10687233.523633851,4603657.6239624461],[-10687485.001988923,4603658.7377402],[-10687740.467835147,4603659.8625535406],[-10687743.781350333,4603659.8845471302],[-10687995.316871013,4603660.9931040406],[-10688249.507949252,4603662.1081267707],[-10688475.093269788,4603667.3428307902],[-10688695.00826153,4603672.4405840924],[-10688701.034399472,4603672.5895041302],[-10688927.328835512,4603677.830446871],[-10689145.917299131,4603682.8876003521],[-10689153.977879411,4603683.0657863263],[-10689380.967915379,4603688.315642043],[-10689602.254584566,4603693.4285470471],[-10689608.29864309,4603693.5769579243],[-10689835.978272106,4603698.8270677309],[-10690063.997992218,4603704.080615432],[-10690318.904691424,4603705.2563796155],[-10690573.753323702,4603706.4252684927],[-10690828.530273311,4603707.5951771671],[-10691083.229833728,4603708.7573193703],[-10691337.871127043,4603709.9008711278],[-10691592.447245235,4603711.036910939],[-10691846.963794706,4603712.1752438024],[-10692101.404957304,4603713.3064468242],[-10692356.360709934,4603714.8542958079],[-10692611.459827505,4603716.3978142105],[-10692866.693800204,4603717.9394215792],[-10693122.074641891,4603719.4744062303],[-10693377.603553955,4603721.0014947737],[-10693633.268222218,4603722.5218333937],[-10693889.06664438,4603724.0323659666],[-10694145.001223207,4603725.5361485975],[-10694399.3508894,4603724.9899245454],[-10694653.518546121,4603724.4365714379],[-10694907.508698607,4603723.8693402763],[-10695161.317842772,4603723.29536206],[-10695414.952886505,4603722.7259698575],[-10695668.396309689,4603722.1513587749],[-10695921.673441572,4603721.5607047612],[-10696174.779076075,4603720.9645769726],[-10696429.349778106,4603723.3741345322],[-10696684.291206772,4603725.7805055808],[-10696693.651383711,4603725.8635568134],[-10696939.611771833,4603728.1726115486],[-10697195.320183191,4603730.5680250917],[-10697207.733575433,4603730.6812227545],[-10697451.325536203,4603732.9638183871],[-10697707.708523788,4603735.3592265472],[-10697717.067799656,4603735.4412592053],[-10697964.4322035,4603737.739351307],[-10698221.512793923,4603740.1190911476],[-10698477.863137849,4603743.2878321065],[-10698734.124278793,4603746.4482984906],[-10698990.301522801,4603749.6105500031],[-10699246.395170292,4603752.7635081345],[-10699502.402518144,4603755.9084463185],[-10699758.325768892,4603759.0458738497],[-10700014.150005402,4603762.1713340255],[-10700269.900456659,4603765.2922122376],[-10700495.763232792,4603763.179894099],[-10700615.912982736,4603762.0549577605],[-10700717.340768427,4603761.9699485283],[-10700722.172631936,4603761.9630201561],[-10700949.178910771,4603761.7856105175],[-10701170.440775454,4603761.6066073319],[-10701176.78858448,4603761.5948237255],[-10701404.289432926,4603761.400599923],[-10701629.489432193,4603761.2029627189],[-10701632.863517171,4603761.2003795803],[-10701862.389597671,4603760.9874150315],[-10702093.248813236,4603760.7670504041],[-10702348.471865764,4603762.6133958921],[-10702603.125762856,4603764.4496883163],[-10702857.613468457,4603766.2796161938],[-10703111.804532383,4603768.0998700792],[-10703366.87550924,4603769.9227892337],[-10703622.118884439,4603771.7423963305],[-10703877.530953774,4603773.5504143126],[-10704133.092895538,4603775.3528283574],[-10704386.986697245,4603779.5263253618],[-10704640.924849624,4603783.6962587358],[-10704894.89343676,4603787.8490032777],[-10705148.897564419,4603791.9971655319],[-10705402.938734276,4603796.1495319502],[-10705657.029560933,4603800.2956605153],[-10705731.738871321,4603801.5115902098],[-10705911.154033113,4603803.5812270949],[-10706165.310745103,4603806.5088419486],[-10706420.631398967,4603809.1993382741],[-10706667.503225379,4603811.794930866],[-10706675.665823065,4603811.8806703286],[-10706930.407409828,4603814.5483812662],[-10707173.947199646,4603817.092311739],[-10707184.864568962,4603817.2010702332],[-10707439.021582182,4603819.8597485283],[-10707686.418412134,4603822.4410777101],[-10707692.884556655,4603822.5087532364],[-10707946.46150168,4603825.1401891569],[-10708199.748813011,4603827.764116196],[-10708454.599231554,4603829.520711666],[-10708709.307886748,4603831.2714515813],[-10708963.863065153,4603833.0090776561],[-10709218.268771354,4603834.7391928248],[-10709472.504581796,4603836.4656175021],[-10709726.590919999,4603838.1869507367],[-10709980.509765305,4603839.8946608836],[-10710234.274933569,4603841.5937140789],[-10710489.418470746,4603845.2215828337],[-10710744.387506712,4603848.840286795],[-10710999.181640958,4603852.4555562893],[-10711253.802074922,4603856.0625523431],[-10711508.088423967,4603859.6560556889],[-10711762.479593385,4603863.2445934415],[-10712016.254052537,4603866.8146751868],[-10712270.419761805,4603870.3844998628],[-10712514.414979259,4603872.0268725287],[-10712759.521275816,4603873.6708892137],[-10712776.926114492,4603873.7785603059],[-10713005.234070688,4603875.2984728841],[-10713251.259124866,4603876.9320387626],[-10713268.742554015,4603877.0389450332],[-10713497.94534027,4603878.5520998733],[-10713745.091985617,4603880.1754674362],[-10713754.013957668,4603880.234585356],[-10713992.700462565,4603881.7969204141],[-10714240.761660621,4603883.4169683019],[-10714497.373138893,4603881.5088052144],[-10714531.866757317,4603881.2532429919],[-10714750.793165544,4603878.9715207908],[-10714753.628643826,4603878.9332917379],[-10715009.52249177,4603876.2513704207],[-10715261.165125079,4603873.6064181738],[-10715265.038102699,4603873.5726363277],[-10715520.334160229,4603870.8809156138],[-10715771.893998479,4603868.2247583885],[-10715775.168884652,4603868.1953117587],[-10716030.294645917,4603865.4977352312],[-10716037.64204054,4603865.4206246883],[-10716283.067537598,4603858.0155911781],[-10716346.576743176,4603859.2666298375],[-10716537.306116575,4603860.7771393238],[-10716793.853472058,4603862.8039081674],[-10716798.343562324,4603862.8434690563],[-10717050.12851261,4603864.8227852434],[-10717306.991332496,4603866.8379647164],[-10717312.54014666,4603866.878279726],[-10717434.323121311,4603867.8310481878],[-10717523.36733789,4603869.8122787308],[-10717564.759786842,4603869.9957704144],[-10717822.498328043,4603871.1363629764],[-10717825.651773425,4603871.1447378527],[-10718080.254890034,4603872.2695699334],[-10718337.769872667,4603873.4003600478],[-10718592.359007753,4603871.3368178466],[-10718847.46994639,4603869.2623193637],[-10719102.885437377,4603867.1822149772],[-10719358.687775899,4603865.0912829153],[-10719613.637929475,4603863.0008682217],[-10719868.486065397,4603860.9042147407],[-10720123.232784428,4603858.7953374339],[-10720377.86527166,4603856.6828956269],[-10720635.084347099,4603854.7634789329],[-10720892.145840608,4603852.8399887448],[-10720895.201373082,4603852.8248063736],[-10721149.039840585,4603850.9252866376],[-10721405.766847847,4603848.9986159727],[-10721409.859879909,4603848.9657233907],[-10721662.336873982,4603847.0589579279],[-10721918.750219218,4603845.1163724577],[-10721921.803649267,4603845.1011901023],[-10722175.004781118,4603843.1716236379],[-10722431.093351472,4603841.2149062641],[-10722688.115757974,4603842.9666124657],[-10722944.57641504,4603844.7064818833],[-10723200.49154133,4603846.4416454639],[-10723455.864540838,4603848.1672642035],[-10723710.704724289,4603849.8867762201],[-10723964.996974252,4603851.5963614061],[-10724218.759612,4603853.2893978171],[-10724471.975017061,4603854.9733987674],[-10724712.238268957,4603855.0025913473],[-10724953.691997137,4603855.0273157749],[-10725196.344711456,4603855.0460438766],[-10725440.199715739,4603855.0582662476],[-10725685.280937616,4603855.0664021503],[-10725931.558042061,4603855.0676503526],[-10726179.047848621,4603855.0536061618],[-10726427.726829983,4603855.0330563448],[-10726424.16301026,4604111.0437626429],[-10726420.578147594,4604368.5794441607],[-10726416.987190695,4604625.1260485351],[-10726413.401241826,4604881.5288798213],[-10726409.828110594,4605137.7414418552],[-10726406.257785186,4605393.7828247491],[-10726402.692367902,4605649.6635870337],[-10726399.128554951,4605905.3812969085],[-10726397.116528815,4606161.6458901828],[-10726395.0988872,4606418.6528118057],[-10726393.077031877,4606676.3910355885],[-10726391.047458554,4606934.8789591556],[-10726389.034411334,4607192.829052968],[-10726387.020060275,4607450.9891602341],[-10726384.997497173,4607709.3767492166],[-10726382.97403075,4607967.969415986],[-10726380.926233131,4608226.8331671702],[-10726378.933484264,4608478.8985377681],[-10726378.888958246,4608484.8730302993],[-10726376.859002544,4608742.0763308611],[-10726374.898136597,4608990.4949666858],[-10726374.834263455,4608998.4552372713],[-10726372.816142673,4609254.0022984575],[-10726370.851769254,4609502.7384171588],[-10726370.808244416,4609508.7131206412],[-10726368.806263551,4609762.6006382778],[-10726366.810300386,4610015.6493730871],[-10726364.967258506,4610273.1518152449],[-10726363.12541822,4610530.6592870764],[-10726361.293189196,4610788.1748472704],[-10726359.458857706,4611045.7153174123],[-10726357.619121136,4611303.1843596883],[-10726355.780188197,4611560.4577178992],[-10726353.944154162,4611818.1089848708],[-10726352.106316745,4612075.8863613429],[-10726349.791528417,4612333.7127546435],[-10726347.464210387,4612592.7861915687],[-10726345.148316128,4612851.0370605038],[-10726342.832423912,4613109.1492284108],[-10726340.512529176,4613367.1189886723],[-10726338.193437323,4613624.9576748041],[-10726335.867539583,4613882.6636200706],[-10726333.543145146,4614140.2698289473],[-10726330.540892059,4614404.0326199923],[-10726327.532326803,4614668.2198994132],[-10726327.470482171,4614674.0974023165],[-10726325.960203577,4614805.4713739036],[-10726324.528580496,4614932.8407572247],[-10726321.548361493,4615197.9049459444],[-10726321.46613769,4615205.7284034127],[-10726318.57825377,4615463.1873255689],[-10726315.59703161,4615729.0223161569],[-10726315.531433608,4615735.0614606142],[-10726312.604796069,4615995.1573988525],[-10726309.598140245,4616262.3945428003],[-10726242.161162471,4616259.819070599],[-10726241.488540694,4616517.0164352702],[-10726240.817422101,4616773.8497027569],[-10726240.152110599,4617030.6076443959],[-10726239.487400422,4617287.2230579546],[-10726239.803020373,4617543.961916863],[-10726240.1202431,4617800.4425843395],[-10726240.440867776,4618057.4562877305],[-10726240.723062441,4618283.3794950126],[-10726242.210261879,4618314.7223875104],[-10726241.658677144,4618572.7443838082],[-10726241.106191324,4618830.8077886188],[-10726240.543594008,4619088.8520282544],[-10726239.981497364,4619346.8987820493],[-10726239.42340409,4619605.3087241882],[-10726238.864610774,4619863.5377967115],[-10726238.316230191,4620121.5936386408],[-10726237.765547752,4620379.4601662541],[-10726237.010221794,4620503.3964228043],[-10726236.267077399,4620636.1845742268],[-10726234.8486121,4620889.4682737272],[-10726234.835083384,4620893.0420449525],[-10726233.393978626,4621150.0211087512],[-10726231.98172587,4621401.9528269572],[-10726231.955176326,4621407.1123354193],[-10726230.521781836,4621663.8307417203],[-10726229.112129891,4621916.4703968689],[-10726229.088788249,4621920.4860287551],[-10726227.648686992,4622177.0593117671],[-10726226.209587347,4622433.5629591644],[-10726225.732089261,4622691.7749749431],[-10726225.251786584,4622950.3813082343],[-10726224.78380282,4623207.724578701],[-10726224.314520186,4623464.3746120166],[-10726223.837226706,4623721.4911292326],[-10726223.358128773,4623979.2763970681],[-10726222.896361113,4624234.2740677958],[-10726222.438403921,4624487.6372859627],[-10726218.730798261,4624742.9501101561],[-10726215.010675177,4624999.2210665774],[-10726214.951088903,4625004.0404014699],[-10726211.289748156,4625256.4516305886],[-10726207.543388829,4625514.646723534],[-10726207.410501776,4625523.9437558586],[-10726207.303352308,4625531.0721882032],[-10726207.404277569,4625774.1032347512],[-10726207.511046898,4626034.2310448335],[-10726207.515027475,4626040.7799409246],[-10726207.618814448,4626295.1589739239],[-10726207.723977434,4626556.5194013109],[-10726206.951041615,4626814.6853546361],[-10726206.187328471,4627069.5960943038],[-10726206.178306017,4627072.8894416196],[-10726205.396260919,4627330.7963745259],[-10726204.629852124,4627583.7416835427],[-10726204.610212002,4627588.5233007055],[-10726203.834973618,4627846.8051517736],[-10726203.081585148,4628098.3565398911],[-10726203.068149749,4628103.8000932625],[-10726202.298025113,4628360.0027820934],[-10726201.533915885,4628613.9209482167],[-10726205.492529137,4628870.5907771522],[-10726205.549380993,4628874.2860382237],[-10726204.779658612,4629130.0149267893],[-10726203.977890763,4629388.1283199377],[-10726203.177424204,4629646.3337276848],[-10726202.382663909,4629904.6552856416],[-10726201.586902207,4630163.0803635726],[-10726200.799149569,4630421.5820308002],[-10726200.011496909,4630680.1549309073],[-10726199.04123796,4630937.7611806057],[-10726198.066869913,4631196.605239219],[-10726197.095107138,4631454.8677064469],[-10726196.121842669,4631713.1620744662],[-10726195.147677196,4631971.4900057642],[-10726194.174613113,4632229.8251981204],[-10726193.200147428,4632488.1994486339],[-10726193.008139445,4632539.3774422482],[-10726189.883690218,4632746.5846714964],[-10726187.86542812,4633004.2239637002],[-10726185.847767789,4633261.6492962092],[-10726183.838718396,4633518.865378282],[-10726181.828869063,4633775.8935223138],[-10726181.780991411,4633782.0843935795],[-10726180.946613854,4634033.3937474135],[-10726180.092493601,4634290.2121500699],[-10726179.231768383,4634546.3498288104],[-10726178.371646415,4634801.824358888],[-10726174.249067429,4635059.9123178134],[-10726170.117877256,4635318.5109198689],[-10726170.04737322,4635324.8220226262],[-10726169.304471105,4635420.3081810474],[-10726167.180657195,4635577.6053843545],[-10726164.802383032,4635753.5730080558],[-10726163.765386708,4635837.1926861843],[-10726163.678160544,4635844.308859271],[-10726160.555654721,4636096.2359840116],[-10726157.347425142,4636355.2164513804],[-10726157.280629799,4636360.3229193892],[-10726154.129685268,4636614.1467307052],[-10726152.052188963,4636781.5566396024],[-10726151.351650879,4636873.0347381625],[-10726151.266812589,4637130.9804378273],[-10726151.181469416,4637390.1165478397],[-10726151.090319725,4637649.2201042157],[-10726150.99916866,4637908.7114482373],[-10726150.911720447,4638168.5935480567],[-10726150.825272167,4638428.821713767],[-10726150.741825787,4638689.4804302454],[-10726150.658477996,4638950.5675581871],[-10726149.982159745,4639208.9063866567],[-10726149.304842062,4639466.802942479],[-10726148.636336247,4639724.2515697991],[-10726147.968833301,4639981.2560686944],[-10726147.299530113,4640237.7922530193],[-10726146.631029582,4640493.8827076694],[-10726145.96112925,4640749.5078460546],[-10726145.291330775,4641004.685653666],[-10726142.559151614,4641263.972758498],[-10726139.890167555,4641517.158040259],[-10726139.838788835,4641522.5890279571],[-10726137.112522049,4641780.5511548258],[-10726134.469279606,4642030.6215425432],[-10726134.398271797,4642037.8626686735],[-10726131.691432752,4642294.5317010423],[-10726129.047388397,4642545.0770770246],[-10726128.993606808,4642550.5478502167],[-10726126.294381971,4642805.9207821339],[-10726123.601266867,4643060.6443130765],[-10726120.292734006,4643318.8022243809],[-10726117.027863741,4643573.6370530613],[-10726116.980297498,4643576.8563119853],[-10726113.680876682,4643834.8252324676],[-10726110.436335102,4644088.4282225864],[-10726110.387063116,4644092.6928715277],[-10726107.076631233,4644350.4837677237],[-10726103.80846039,4644604.9329468515],[-10726103.761194369,4644608.192545766],[-10726100.461476406,4644865.7832735125],[-10726097.163361095,4645123.2749924008],[-10726094.444804786,4645382.3304768065],[-10726091.729253026,4645641.1857559858],[-10726089.007495087,4645899.8899144912],[-10726086.289242107,4646158.4385934919],[-10726083.574694378,4646416.8134959172],[-10726080.861549197,4646675.0340454597],[-10726078.144200191,4646933.088210172],[-10726075.427953446,4647190.9694556985],[-10726072.780176967,4647451.207932733],[-10726070.214224648,4647703.1528230319],[-10726070.137909962,4647710.67866595],[-10726067.502954461,4647969.3883752851],[-10726064.978064524,4648217.2936004819],[-10726064.870304948,4648227.2751031704],[-10726062.255479043,4648484.3809932042],[-10726059.723678045,4648733.3505162271],[-10726059.64896567,4648740.7571463343],[-10726057.043656664,4648996.4042753],[-10726054.447561057,4649251.3667088067],[-10726053.381501054,4649510.9462082544],[-10726052.335181303,4649765.6910757208],[-10726052.308932757,4649770.8035846194],[-10726051.241169382,4650030.8649241924],[-10726050.192144142,4650286.3614464207],[-10726050.171302652,4650291.2342402292],[-10726050.126004277,4650304.0392588582],[-10726050.59314641,4650551.7605606215],[-10726051.085265083,4650812.476359047],[-10726051.59360146,4651073.409616638],[-10726052.102838203,4651334.511736488],[-10726052.979724044,4651588.5713586528],[-10726053.858108928,4651843.2985880785],[-10726053.907909613,4651857.3566934476],[-10726054.737291912,4652098.7289141035],[-10726055.617773604,4652354.8501068363],[-10726055.667562816,4652371.7683242941],[-10726056.492946504,4652611.6504471237],[-10726057.380130287,4652869.16632389],[-10726057.411021423,4652880.2040440915],[-10726058.266710514,4653127.3965116562],[-10726059.16420042,4653386.3275011983],[-10726317.145996159,4653387.6613044497],[-10726569.872876903,4653388.9629884856],[-10726575.629065614,4653389.0025295485],[-10726834.622318994,4653390.3496410325],[-10727086.558094095,4653391.6552916793],[-10727094.137069289,4653391.6917626187],[-10727354.135573281,4653393.0322211552],[-10727602.439290976,4653394.3047298221],[-10727614.654272737,4653394.3571973797],[-10727684.348747609,4653394.7188331317],[-10727875.669343362,4653394.9464250673],[-10728033.673803704,4653395.1307528699],[-10728137.17808166,4653394.9027809883],[-10728394.170056658,4653393.2051715553],[-10728446.517377894,4653392.8575376952],[-10728650.688888364,4653391.9305856824],[-10728906.736179937,4653390.7564454386],[-10729162.319640629,4653389.5791062238],[-10729417.436767684,4653388.3720810944],[-10729672.086659968,4653387.1616010945],[-10729926.241886092,4653385.943187736],[-10730179.887328755,4653384.7199119655],[-10730435.732486717,4653384.1190162236],[-10730692.053989992,4653383.5087799327],[-10730696.405871376,4653383.5179947168],[-10730948.851538084,4653382.9237512546],[-10731206.127133517,4653382.3121079458],[-10731211.882921945,4653382.3090395741],[-10731463.701871444,4653381.6861337293],[-10731721.863080775,4653381.0419900417],[-10731725.975287836,4653381.0454466986],[-10731980.602652019,4653380.4277883898],[-10732239.926692396,4653379.7924742894],[-10732498.505467957,4653381.8421915378],[-10732756.277419975,4653383.8796250178],[-10733013.24234822,4653385.903751092],[-10733269.398851093,4653387.9146976946],[-10733525.004523421,4653389.9193745814],[-10733779.913798612,4653391.911767723],[-10734034.123272751,4653393.8950760327],[-10734287.642556841,4653395.866996293],[-10734545.861241501,4653393.0795835657],[-10734794.293824052,4653390.3896699119],[-10734804.064608833,4653390.2638932802],[-10735062.271880694,4653387.4544736473],[-10735292.019574745,4653384.9500896297],[-10735307.448436504,4653384.7351301322],[-10735320.489164516,4653384.5531822676],[-10735578.690932894,4653381.1630992545],[-10735827.102694593,4653377.8955949387],[-10735836.873479394,4653377.7680270839],[-10736095.038706109,4653374.3853677893],[-10736353.195623448,4653370.9966957057],[-10736385.878326746,4653372.575047899],[-10736607.713450786,4653372.9300972493],[-10736862.998563446,4653373.3319934988],[-10736877.699290715,4653373.3433881644],[-10737119.016615171,4653373.7080429718],[-10737375.781121301,4653374.0903626243],[-10737393.892051976,4653374.1274779867],[-10737633.2779656,4653374.4928996777],[-10737891.510051554,4653374.8812339585],[-10737904.066123946,4653374.8876373824],[-10738150.482485035,4653375.2492235592],[-10738410.188458135,4653375.6229715263],[-10738667.524921326,4653375.4941070005],[-10738920.141481854,4653375.3611457767],[-10738924.394349923,4653375.364474535],[-10739180.782928258,4653375.2055399157],[-10739430.776486475,4653375.0462185675],[-10739436.693459423,4653375.0409750193],[-10739692.119235663,4653374.8866463918],[-10739942.654513964,4653374.7296285015],[-10739947.067565383,4653374.73398099],[-10740201.546057437,4653374.5541886939],[-10740455.556613911,4653374.3659510938],[-10740713.647835057,4653375.47659723],[-10740971.858192567,4653376.5805898272],[-10741230.159253983,4653377.6619343376],[-10741488.560930565,4653378.7368811993],[-10741747.099363571,4653379.8294861717],[-10742005.804587483,4653380.9168451214],[-10742264.520323517,4653381.9810441304],[-10742362.460630089,4653382.3829988418],[-10742523.28944337,4653381.0211511422],[-10742780.248413257,4653380.9890673477],[-10743037.226204749,4653380.9514815025],[-10743294.22071553,4653380.8877926525],[-10743551.244860314,4653380.8154028878],[-10743808.294133822,4653380.7595195435],[-10744065.362529272,4653380.6969825439],[-10744322.457755603,4653380.6087264428],[-10744579.581514675,4653380.513176946],[-10744835.880818879,4653382.3857179182],[-10745084.640382949,4653384.1964328624],[-10745091.638602499,4653384.24942852],[-10745346.86207372,4653386.117360305],[-10745592.486645134,4653387.9086167021],[-10745601.551733276,4653387.9590596911],[-10745855.695567241,4653389.8070275122],[-10746102.459344067,4653391.5941934139],[-10746109.319205062,4653391.644117726],[-10746362.396116327,4653393.4745527878],[-10746593.882886525,4653395.1448475355],[-10746614.840814423,4653393.1239716075],[-10746870.628034567,4653394.3810432637],[-10747127.281947885,4653395.6359424833],[-10747134.863435987,4653395.6593821151],[-10747384.795546478,4653396.8664048566],[-10747643.174236344,4653398.107490412],[-10747653.281819263,4653398.1365679856],[-10747902.407205246,4653399.3328401176],[-10748162.49555425,4653400.5763623938],[-10748170.076742018,4653400.5968590369],[-10748423.432575766,4653401.8215508796],[-10748685.225878438,4653403.0817130366],[-10749246.925046463,4653408.0765774334],[-10749807.975771228,4653413.0343345702],[-10750368.373147184,4653417.9412930412],[-10750928.121679425,4653422.8125516679],[-10751487.206951249,4653427.6803554259],[-10751497.840736806,4653427.7736689476],[-10752045.644682059,4653432.297875884],[-10752603.421255101,4653436.8735542372],[-10753160.547382627,4653441.4113571262],[-10753416.131765764,4653443.2384806741],[-10753671.883941153,4653445.0607426651],[-10753927.807512913,4653446.8814699901],[-10754183.901479907,4653448.6966959694],[-10754440.177755883,4653450.4913217258],[-10754696.622424807,4653452.2795504229],[-10754953.21626452,4653454.0865895189],[-10755209.944358045,4653455.8879992068],[-10755469.15371499,4653454.2385451393],[-10755728.062727809,4653452.5869151866],[-10755986.675401211,4653450.9145555999],[-10756244.958697245,4653449.236693156],[-10756277.435416048,4653449.0153009016],[-10756502.965571066,4653448.4952185638],[-10756760.693324219,4653447.895135521],[-10757018.131845996,4653447.2840473307],[-10757275.283539142,4653446.6669443306],[-10757531.66103543,4653447.6789855901],[-10757788.170282695,4653448.6861649835],[-10758044.707962554,4653449.6872025933],[-10758301.317224439,4653450.6823544865],[-10758558.026100464,4653451.6748196678],[-10758814.806558544,4653452.6583281523],[-10759071.680723861,4653453.6605187049],[-10759328.635781892,4653454.6554160407],[-10759585.840033859,4653454.2656922014],[-10759839.364869324,4653453.8742934866],[-10759842.794900177,4653453.8542149216],[-10760099.516499264,4653453.4305810444],[-10760351.438698364,4653453.0079559078],[-10760356.011438616,4653453.0079701459],[-10760612.277315414,4653452.595339207],[-10760864.873987425,4653452.1803936353],[-10760868.305119544,4653452.1600591755],[-10761124.087942988,4653451.7185085248],[-10761379.634896187,4653451.2696636338],[-10761637.054502359,4653449.6995385904],[-10761870.763636095,4653448.2706043487],[-10761894.293701936,4653448.1150820963],[-10762151.337077081,4653446.5415016105],[-10762382.453639844,4653445.1198533606],[-10762408.18953353,4653444.9619068531],[-10762664.892318577,4653443.3729710672],[-10762906.317795698,4653441.8713824572],[-10762921.402683247,4653441.7705995077],[-10763177.726233829,4653440.1769287204],[-10763433.811911896,4653438.5785230901],[-10763694.182503233,4653436.5363773191],[-10763955.725438226,4653434.4774733381],[-10763972.635517735,4653434.3253855361],[-10764218.426800873,4653432.4098723792],[-10764482.289294166,4653430.3498249538],[-10764504.074961249,4653430.1580858696],[-10764747.317423588,4653428.248579612],[-10765013.507985178,4653426.1510491241],[-10765029.375569908,4653426.0194312651],[-10765280.862180544,4653424.0217895322],[-10765549.379308734,4653421.8830652796],[-10765805.223882817,4653424.6528408648],[-10766055.723732304,4653427.3565748949],[-10766060.776822727,4653427.4032947775],[-10766316.049641468,4653430.1636011358],[-10766564.29320528,4653432.8436574759],[-10766571.031226425,4653432.9161019037],[-10766825.722078165,4653435.6605411666],[-10767075.028860232,4653438.3394504981],[-10767080.122597232,4653438.3859146368],[-10767334.220769657,4653441.1215243582],[-10767588.030511515,4653443.8486886965],[-10767843.817730268,4653444.931871294],[-10768099.945739549,4653446.0103206364],[-10768356.424250444,4653447.0914582461],[-10768613.243651982,4653448.168886262],[-10768870.382820182,4653449.2084401408],[-10769127.857372718,4653450.2441564398],[-10769385.66520701,4653451.3003469398],[-10769643.793508541,4653452.3530836869],[-10769902.968998605,4653455.1125123678],[-10770162.732162051,4653457.869640328],[-10770169.400403207,4653457.9405492088],[-10770193.073229566,4653458.2122760834],[-10770423.080549533,4653459.4380515041],[-10770684.000058793,4653460.8224197924],[-10770692.843482906,4653460.8881138144],[-10770945.496227877,4653462.2543914746],[-10771207.564151648,4653463.6652536476],[-10771214.172717387,4653463.6936990367],[-10771470.20332955,4653465.0497600622],[-10771733.416464502,4653466.4364451384],[-10771990.75737064,4653468.6724740397],[-10772238.855395425,4653470.820798141],[-10772247.117454015,4653470.8762522014],[-10772502.513033107,4653473.0759302527],[-10772745.93960996,4653475.1662626881],[-10772756.938501555,4653475.2651103111],[-10773010.408476174,4653477.4311247105],[-10773254.657594645,4653479.5132731097],[-10773262.909841992,4653479.5677034641],[-10773514.450808235,4653481.7014616905],[-10773765.031074634,4653483.8197316295],[-10774019.955698734,4653488.2155366],[-10774275.212803347,4653492.6089136899],[-10774530.794579497,4653497.0060047871],[-10774778.957963368,4653501.2695940975],[-10774786.711841065,4653501.1928653419],[-10775042.934697723,4653498.9611345548],[-10775299.402835339,4653496.7192973606],[-10775556.115653273,4653494.4613397811],[-10775813.074853417,4653492.1957069943],[-10776075.460413046,4653497.363522578],[-10776337.333085425,4653502.514702647],[-10776598.688465569,4653507.6416976657],[-10776844.106902167,4653512.4493472064],[-10776859.554589106,4653512.2528955312],[-10777119.861128708,4653508.9724485138],[-10777379.53534448,4653505.6944304267],[-10777638.551406985,4653502.4004152874],[-10777896.919928242,4653499.1087010428],[-10778153.930061869,4653500.2929215934],[-10778411.343857635,4653501.4720262131],[-10778414.863487024,4653501.488425442],[-10778669.162617108,4653502.6353944698],[-10778927.383536985,4653503.7954381956],[-10778932.08582022,4653503.8286067704],[-10779186.013124617,4653504.9648251822],[-10779445.047876203,4653506.1166843949],[-10779448.587628631,4653506.1321880426],[-10779704.49249707,4653507.2586932993],[-10779964.346486589,4653508.3968658801],[-10780221.162209572,4653507.9283896573],[-10780477.608609792,4653507.4544091877],[-10780733.685787307,4653506.9813223267],[-10780989.395744456,4653506.5042667119],[-10781244.754199198,4653506.0266972892],[-10781499.748236774,4653505.5454150392],[-10781754.365242872,4653505.0436575217],[-10782008.55706224,4653504.5370352147],[-10782263.531472526,4653504.7006569225],[-10782519.059116242,4653504.8577560484],[-10782775.134086633,4653505.0056454781],[-10783031.75888655,4653505.1462445632],[-10783288.917497681,4653505.277505911],[-10783546.623535594,4653505.4018607819],[-10783804.873396035,4653505.5355596989],[-10784063.664376022,4653505.663247807],[-10784107.984398667,4653507.9883606946],[-10784322.162610404,4653507.150222104],[-10784580.270116679,4653506.1352495207],[-10784837.967753757,4653505.1177156223],[-10785095.239202969,4653504.0969805159],[-10785352.065142181,4653503.074707537],[-10785608.482213367,4653502.0474420618],[-10785864.456077175,4653501.0196623839],[-10786119.969513938,4653499.985994203],[-10786376.025267068,4653499.5336377136],[-10786632.012441758,4653499.0750109982],[-10786887.931137964,4653498.6279000826],[-10787143.782857569,4653498.1731114397],[-10787399.566299241,4653497.6911956137],[-10787655.282864418,4653497.2021138994],[-10787910.92634584,4653496.7249318184],[-10788166.502149859,4653496.2405838473],[-10788417.81486832,4653496.3737304164],[-10788669.469578356,4653496.500992992],[-10788673.169714393,4653496.5164975319],[-10788921.467881508,4653496.6584553625],[-10789173.810378859,4653496.7982617114],[-10789178.723503802,4653496.7895895597],[-10789426.491364034,4653496.9001948228],[-10789679.515441958,4653497.0072482228],[-10789683.205466434,4653497.0208333544],[-10789932.88221202,4653497.1384874517],[-10790186.593877072,4653497.2529663621],[-10790186.279426571,4653756.1825171169],[-10790185.966579011,4654014.9827182489],[-10790185.649527255,4654273.7147279838],[-10790185.333477281,4654532.3759818859],[-10790185.021032304,4654790.9372968674],[-10790184.707887111,4655049.4336029226],[-10790184.3927407,4655307.8052568147],[-10790184.077294836,4655566.0740062557],[-10790184.827965099,4655824.8804184394],[-10790185.567154344,4656079.7089458276],[-10790185.576737024,4656083.2139265174],[-10790186.321207941,4656341.0663032588],[-10790187.050602842,4656593.8127788054],[-10790187.063680412,4656598.446088112],[-10790187.807057658,4656855.3660454173],[-10790188.539254254,4657108.3055754639],[-10790188.548436474,4657111.8106523789],[-10790189.290820338,4657367.7761612358],[-10790190.030404851,4657623.2675284212],[-10790190.492948644,4657881.6894406928],[-10790190.955993457,4658140.0604000324],[-10790191.414633743,4658398.3728495892],[-10790191.8729741,4658656.6376668615],[-10790192.334127314,4658913.7140220329],[-10790192.796576256,4659171.5067498498],[-10790193.256620152,4659429.5885372283],[-10790193.719555173,4659689.1848213635],[-10790195.061586134,4659950.0411829585],[-10790196.3608351,4660202.6001177458],[-10790196.397725286,4660209.0483736768],[-10790197.723257562,4660467.4039760428],[-10790199.013606528,4660718.7017432097],[-10790199.047697403,4660724.6672025202],[-10790200.375034403,4660982.6954695135],[-10790201.679182669,4661236.0382337952],[-10790201.706378331,4661240.432904887],[-10790203.029214969,4661497.8692421401],[-10790204.351953525,4661755.0542740375],[-10790206.160532197,4662014.2024539001],[-10790207.9694119,4662273.2644800413],[-10790209.777091002,4662532.2289477829],[-10790211.584370757,4662791.0558910416],[-10790213.393454593,4663049.630799287],[-10790215.2009377,4663308.0685407845],[-10790217.003416212,4663566.3641100097],[-10790218.805795236,4663824.5823077913],[-10790218.872431414,4664077.451484547],[-10790218.940061744,4664331.1941005783],[-10790218.9408843,4664340.9099077638],[-10790219.009887103,4664585.8691449426],[-10790219.082708569,4664841.4590098104],[-10790219.086007932,4664854.401855954],[-10790219.152218783,4665097.9790079817],[-10790219.221821738,4665355.4185768673],[-10790219.227369532,4665362.6774018798],[-10790219.292618711,4665613.7756081931],[-10790219.35920332,4665873.0740003735],[-10790220.091662161,4666130.8337789839],[-10790220.826119717,4666389.0412968909],[-10790220.848095739,4666395.1307525635],[-10790221.562976357,4666647.7054284876],[-10790222.29742674,4666906.8076304644],[-10790222.307399103,4666911.648307208],[-10790222.258188507,4667166.3529312639],[-10790222.20723325,4667426.3540517567],[-10790222.209609298,4667429.6607319945],[-10790222.161079977,4667686.7966758171],[-10790222.111218801,4667947.7000579396],[-10790221.103043905,4668099.1821801644],[-10790221.703365639,4668206.4383690823],[-10790223.158138923,4668465.7013233555],[-10790224.609611887,4668724.5364367645],[-10790226.061285889,4668983.2718706802],[-10790227.511158796,4669241.8876256216],[-10790228.959731167,4669500.3851023158],[-10790230.408904975,4669758.7912055599],[-10790231.857078586,4670017.0796549702],[-10790234.664608499,4670275.1786707062],[-10790237.439526781,4670530.0885436293],[-10790237.47554357,4670533.1145107811],[-10790240.275967687,4670790.913566594],[-10790243.032275325,4671044.4937899634],[-10790243.073289374,4671048.569034555],[-10790245.873415634,4671306.0488589369],[-10790248.672041463,4671563.3641784796],[-10790251.470468123,4671820.543053613],[-10790254.269997142,4672077.5799619835],[-10790250.220066547,4672337.8928865958],[-10790246.179952305,4672597.5930050099],[-10790242.147351623,4672856.7020644089],[-10790238.125368079,4673115.2133533703],[-10790234.106390836,4673373.3950329749],[-10790230.097430177,4673630.9625825807],[-10790226.090677114,4673887.924674239],[-10790222.093239805,4674144.2766465414],[-10790222.787652392,4674402.5319274105],[-10790223.483162407,4674661.2650858378],[-10790224.179169407,4674920.4462818084],[-10790224.277087394,4674956.9225612646],[-10790226.804678701,4675180.1222258015],[-10790229.736439187,4675439.6664143912],[-10790232.67660341,4675699.9330104878],[-10790235.611971071,4675959.0874933135],[-10790235.8626798,4675981.1644962085],[-10790241.333428467,4676217.7102000257],[-10790240.68147365,4676467.0368474666],[-10790240.028408255,4676717.5263814675],[-10790239.376638226,4676968.7832337059],[-10790238.721957866,4677220.9192984896],[-10790238.059671719,4677472.7027302124],[-10790238.030747538,4677484.0088689215],[-10790236.982210942,4677724.4918624312],[-10790235.888226993,4677976.823735293],[-10790234.800659752,4678228.002959271],[-10789978.52677417,4678228.7894059606],[-10789910.320196891,4678228.9978509657],[-10789910.974045433,4678490.1952886852],[-10789911.609635042,4678743.6880093096],[-10789911.620097358,4678749.8656500438],[-10789912.265961496,4679007.9943232695],[-10789912.895661756,4679259.3312144009],[-10789912.908634078,4679264.6217278372],[-10789913.553896639,4679522.8679781947],[-10789914.184687909,4679775.4868200887],[-10789914.197064416,4679780.1711920463],[-10789914.839839142,4680036.5570843015],[-10789915.479818348,4680291.9910751255],[-10789914.093852196,4680551.1081701331],[-10789912.702671971,4680811.2472091997],[-10789912.24686414,4680896.7359156432],[-10789913.16461635,4681070.6006149463],[-10789914.533299478,4681329.6693620188],[-10789915.901985263,4681588.4073666045],[-10789917.26887181,4681846.7967682155],[-10789917.562056836,4681902.821522003],[-10789915.111031631,4682104.9452011073],[-10789911.983884906,4682362.9450342208],[-10789912.034159934,4682622.1893151924],[-10789912.084022639,4682882.9151594639],[-10789912.137594871,4683142.9889612421],[-10789912.190966513,4683403.1144425962],[-10789912.246338049,4683663.5439144382],[-10789912.299802819,4683924.5510176914],[-10789912.35487777,4684184.526006815],[-10789912.409455955,4684444.0336490907],[-10789911.908398053,4684703.6861309297],[-10789911.424025906,4684955.0434562527],[-10789911.413252272,4684962.679340451],[-10789910.911904817,4685221.006424699],[-10789910.428451234,4685470.1993031278],[-10789910.416870194,4685478.6437152224],[-10789909.912328416,4685735.8263175767],[-10789909.538477117,4685926.1086082747],[-10789908.979767105,4685984.7678071596],[-10789908.911855087,4685992.2024575574],[-10789906.47809042,4686247.859378512],[-10789904.051136684,4686502.8301493721],[-10789902.262788633,4686762.9998046476],[-10789900.465522936,4687024.7776210364],[-10789898.682682935,4687284.5637780456],[-10789896.905152649,4687543.5603176951],[-10789895.126419125,4687802.9563091658],[-10789893.340673398,4688063.2566174744],[-10789891.556432335,4688322.918651686],[-10789889.773393029,4688582.4957575882],[-10789888.854953293,4688839.5940178456],[-10789887.929899458,4689098.1069776788],[-10789887.310280327,4689273.3103681821],[-10789887.160031831,4689354.7093742462],[-10789886.686106103,4689610.5199057879],[-10789886.673071003,4689614.8851019703],[-10789886.205958139,4689869.6037152121],[-10789885.729210274,4690129.5102079744],[-10789885.722187277,4690132.7446550261],[-10789885.24745273,4690390.274249142],[-10789884.764189579,4690651.8825485967],[-10789884.092620533,4690911.4807493901],[-10789883.421952512,4691171.0835139584],[-10789882.748281479,4691430.5979851987],[-10789882.316618163,4691596.9638960902],[-10789881.53078915,4691690.0581932822],[-10789880.684759894,4691789.9445116743],[-10789880.267844178,4691949.6674541235],[-10789879.589665607,4692209.7065555668],[-10789878.914895413,4692468.779571767],[-10789878.239723833,4692728.055453172],[-10789878.196572021,4692987.907499616],[-10789878.151818849,4693247.66264374],[-10789878.107563213,4693508.0817463063],[-10789878.0606026,4693768.9125566203],[-10789878.019037785,4694031.9924346535],[-10789877.977789029,4694291.6859680284],[-10789877.966641929,4694363.948953215],[-10789876.967838323,4694550.227302948],[-10789875.575445306,4694809.8824162744],[-10789616.740389699,4694806.0536637772],[-10789357.547224877,4694802.2146353284],[-10789099.490358993,4694798.3844710998],[-10788842.108464735,4694794.5584183279],[-10788831.014283786,4694794.3951458996],[-10788584.643055454,4694794.9268561117],[-10788419.241584109,4694795.2804752467],[-10788327.612743493,4694795.3017168958],[-10788070.883277111,4694795.3167153718],[-10787943.451510405,4694795.3211936839],[-10787814.484979086,4694797.495509061],[-10787556.197123734,4694799.109653756],[-10787298.643607816,4694800.7137761712],[-10787040.804565495,4694802.3148159133],[-10786783.023189096,4694803.908661128],[-10786670.703293294,4694804.618445877],[-10786525.37436498,4694805.3339454168],[-10786267.762583943,4694806.5981205441],[-10786010.543852231,4694807.8502183072],[-10785752.61320672,4694809.1000049617],[-10785753.265412508,4695067.2587432507],[-10785753.903724492,4695320.8288429566],[-10785753.905998344,4695326.815243613],[-10785754.148934314,4695585.4017425505],[-10785754.391971275,4695843.8151851688],[-10785754.63560991,4696102.0311447615],[-10785754.878447725,4696360.2332270658],[-10785755.121185429,4696618.4430189645],[-10785755.363322357,4696876.6791539956],[-10785755.1282015,4697137.4612468434],[-10785754.895906093,4697393.6210023453],[-10785754.897789214,4697397.5853764946],[-10785754.655065784,4697657.1031545373],[-10785754.418678788,4697910.5486401496],[-10785754.417351047,4697916.0096510183],[-10785754.179436149,4698174.9078297848],[-10785753.947056692,4698427.7467422346],[-10785753.939022074,4698433.044807747],[-10785753.706120102,4698690.4536865689],[-10785753.475123942,4698947.1128182421],[-10785751.894389641,4699202.7368078381],[-10785750.307343198,4699459.3850923302],[-10785750.259350076,4699467.354527534],[-10785748.71858984,4699717.0679038921],[-10785747.423301119,4699927.0190656576],[-10785746.938512852,4699975.768097016],[-10785746.843961455,4699984.7886369992],[-10785744.361022945,4700234.7201371808],[-10785741.779423969,4700494.5760385888],[-10785741.704604641,4700501.6152101671],[-10785739.189911598,4700755.3336852584],[-10785736.596790651,4701017.0129441125],[-10785740.383276949,4701275.9821098326],[-10785744.028447915,4701525.3393050311],[-10785744.163257958,4701534.526806524],[-10785747.93783482,4701792.6720719803],[-10785751.529762609,4702038.3861190714],[-10785751.704504715,4702050.4087475501],[-10785755.465470161,4702307.736545085],[-10785759.109740188,4702557.1673953002],[-10785759.227637894,4702564.8993391609],[-10785762.980395775,4702821.8966030274],[-10785766.730651699,4703078.7281956477],[-10785511.450659389,4703077.2507216651],[-10785255.07241137,4703075.7625775877],[-10785246.628756715,4703075.7152742101],[-10784997.592603873,4703074.259648812],[-10784739.012538388,4703072.7434783382],[-10784727.454522664,4703072.6892369054],[-10784479.333416153,4703071.2413252648],[-10784218.527405545,4703069.7120438283],[-10784208.049124561,4703069.6332416646],[-10784107.435981603,4703069.0365410708],[-10783956.629041789,4703069.0310114697],[-10783693.655345209,4703069.0153861856],[-10783434.248027891,4703068.735264319],[-10783179.350166922,4703068.4524345845],[-10783175.67326265,4703068.4376540547],[-10782972.77035494,4703068.2066824995],[-10782917.917034078,4703067.9943604749],[-10782660.998265876,4703066.9921252197],[-10782609.950496487,4703066.7759393286],[-10782402.637848606,4703066.1162873274],[-10782144.19123257,4703065.2873816146],[-10781885.667328257,4703064.4412462981],[-10781627.062131036,4703063.5900965575],[-10781370.702605324,4703062.0001187753],[-10781115.285857661,4703060.4109111419],[-10780858.537487514,4703058.7959899222],[-10780601.202646861,4703057.1710406924],[-10780518.294548439,4703056.6517162845],[-10780343.527215464,4703055.8113539759],[-10780085.39536163,4703054.5649476759],[-10779826.719786102,4703053.3189282082],[-10779567.521713203,4703052.0635234192],[-10779306.697876479,4703051.7692606878],[-10779046.524283314,4703051.4679249264],[-10778787.004037162,4703051.1799604455],[-10778528.136937875,4703050.8868516386],[-10778269.74448139,4703050.581912634],[-10778011.602911817,4703050.2699012849],[-10777754.943637261,4703049.9422006169],[-10777499.352684297,4703049.6115407888],[-10777247.907467827,4703050.0454133246],[-10777004.492833996,4703050.4577992763],[-10776996.903656162,4703050.4597408902],[-10776746.336343618,4703050.8727819258],[-10776505.882395284,4703051.2617612174],[-10776496.228356363,4703051.2701353757],[-10776246.468066515,4703051.6964188525],[-10776003.694565771,4703052.1046891836],[-10775997.17400977,4703052.1225729687],[-10775748.273102747,4703052.5137525368],[-10775500.015130911,4703052.8995306371],[-10775490.616682103,4703053.315118785],[-10775242.719424333,4703053.3920459421],[-10774983.914894674,4703053.468091581],[-10774969.825884553,4703053.483545213],[-10774723.842214821,4703053.568312509],[-10774600.841269551,4703053.6081245719],[-10774462.42980043,4703054.1656279499],[-10774442.706447361,4703054.2525819326],[-10774199.705583358,4703055.2712244457],[-10773935.689088646,4703056.3703942066],[-10773919.967211138,4703056.4408830814],[-10773670.461509138,4703057.4612084003],[-10773403.749131849,4703058.5459819445],[-10773144.571359955,4703061.5073764008],[-10772896.630637692,4703064.3333571786],[-10772886.450796949,4703064.4520544168],[-10772629.114831125,4703067.3762875907],[-10772384.986067824,4703070.1441449672],[-10772372.649661129,4703070.2668319475],[-10772117.331802979,4703073.1550606871],[-10771871.184631554,4703075.934366704],[-10771862.778018463,4703076.0390457567],[-10771608.994915329,4703078.8849703809],[-10771355.98109185,4703081.7148218509],[-10771096.31066869,4703082.3570105108],[-10770836.769893801,4703082.9921270311],[-10770576.895737661,4703083.634187514],[-10770316.841675822,4703084.2700764639],[-10770192.460550776,4703084.5570233474],[-10770058.280208169,4703084.1771608926],[-10769797.743882267,4703083.4319526227],[-10769539.283133144,4703082.6707968591],[-10769279.986226657,4703081.8988416921],[-10769020.0403597,4703084.2661898527],[-10768761.904365221,4703086.608848244],[-10768502.88676125,4703088.9340218436],[-10768243.882572599,4703091.2526385337],[-10767985.628743095,4703093.5664972356],[-10767726.53545226,4703095.8829296781],[-10767469.189762568,4703098.1798156444],[-10767211.152280655,4703100.4752890998],[-10766951.905628936,4703100.157738775],[-10766699.162023617,4703099.8410776872],[-10766694.527316583,4703099.8426283663],[-10766437.264035992,4703099.5208315309],[-10766400.328042254,4703099.4746036958],[-10766185.19589706,4703100.4400914516],[-10766180.741396345,4703100.4456278486],[-10765923.551791694,4703101.5886277277],[-10765670.83751167,4703102.7071899688],[-10765666.967279932,4703102.7217260823],[-10765660.658255626,4703102.7352375975],[-10765411.280304076,4703102.4354150193],[-10765177.4674755,4703102.1476531848],[-10765155.566593213,4703102.907861786],[-10764902.511132922,4703102.2251304062],[-10764649.17004564,4703101.5348131871],[-10764641.693284329,4703101.5273679048],[-10764394.748220978,4703100.82598205],[-10764355.744660128,4703100.7150812857],[-10764139.594038462,4703103.3994453764],[-10764130.481603408,4703103.5266273888],[-10763885.266298439,4703106.6082284162],[-10763629.839599967,4703109.8108426891],[-10763622.763597025,4703109.8910892336],[-10763373.371308668,4703113.0162887946],[-10763115.648580752,4703116.2394825267],[-10762855.191753771,4703114.1346522747],[-10762671.567801666,4703112.645470758],[-10762597.083021797,4703110.9916521618],[-10762338.455511814,4703105.1952490639],[-10762261.888147706,4703103.4776586071],[-10762080.271686738,4703103.2784023713],[-10761820.799276479,4703102.9776963275],[-10761561.64603173,4703102.6696605915],[-10761365.901293121,4703102.453840808],[-10761302.907963218,4703102.2266137702],[-10761044.544226335,4703101.2931572041],[-10760793.667559156,4703100.9318749895],[-10760542.810114045,4703100.5637779068],[-10760530.717967842,4703100.5544115687],[-10760291.968386948,4703100.1949092941],[-10760041.156393997,4703099.8113823403],[-10760014.107121086,4703099.7808249462],[-10759981.940488536,4703099.74178968],[-10759783.369925313,4703097.7332940325],[-10759570.76349112,4703095.5777249765],[-10759525.941968843,4703095.3945711283],[-10759497.705336731,4703095.3011394581],[-10759260.951244598,4703094.3464311007],[-10758980.414419711,4703093.2083100257],[-10758725.348344436,4703094.6330282763],[-10758469.384040596,4703096.0558196185],[-10758463.538246688,4703096.0743450383],[-10758212.515401119,4703097.4891564706],[-10757954.745028967,4703098.9363819435],[-10757947.225418366,4703098.9645537529],[-10757696.218691355,4703100.3486348707],[-10757436.840678407,4703101.7716903826],[-10757430.531453636,4703101.8212047135],[-10757176.605283514,4703103.2150635244],[-10756915.528825618,4703104.6413370585],[-10756661.192610823,4703102.1290216362],[-10756406.107738957,4703099.6017924007],[-10756401.674162485,4703099.5632253559],[-10756277.578373164,4703098.3070628839],[-10756150.2197395,4703098.3281046851],[-10755893.534318544,4703098.3653054768],[-10755886.964095203,4703098.3691738341],[-10755636.09433358,4703098.4001930607],[-10755377.915002074,4703098.4254382718],[-10755372.977448326,4703098.4165743589],[-10755118.987914324,4703098.4537706804],[-10754859.311568614,4703098.484290218],[-10754593.013741056,4703098.4907760387],[-10754341.475614307,4703098.4901653575],[-10754327.326312564,4703098.4774593078],[-10754062.257992888,4703098.4805999622],[-10753821.803357445,4703098.477013492],[-10753797.818092767,4703098.4866969548],[-10753537.997482277,4703098.4548547454],[-10753301.18661938,4703098.4204026693],[-10753278.792877186,4703098.4168396005],[-10753024.164111732,4703098.3762452183],[-10752778.068817668,4703098.3311362974],[-10752273.144977743,4703093.9703642316],[-10751771.352824097,4703089.608687981],[-10751768.228947178,4703089.5926204957],[-10751263.332539694,4703085.1688456917],[-10750763.228119519,4703080.7620368088],[-10750758.452151068,4703080.7147268169],[-10750253.590283992,4703076.2541799825],[-10749752.303510882,4703071.8013432445],[-10749748.737427669,4703071.7764044004],[-10749243.891279541,4703067.269313476],[-10748739.064153681,4703062.7368932143],[-10748481.610969396,4703060.5866720118],[-10748223.561001912,4703058.4256512402],[-10748220.437225128,4703058.4068835722],[-10747964.922760764,4703056.28340453],[-10747705.699349759,4703054.1231576949],[-10747701.468505472,4703054.0834331531],[-10747445.831400966,4703051.939510447],[-10747185.360762196,4703049.7472495334],[-10747182.437815351,4703049.7332390361],[-10746924.268912181,4703047.5548613342],[-10746662.562458653,4703045.3395870142],[-10746399.739417545,4703044.4076809073],[-10746141.369875917,4703043.4852824407],[-10746137.842937561,4703043.4577719457],[-10745876.887635089,4703042.5401352365],[-10745621.9099773,4703041.6357324841],[-10745616.8710075,4703041.6206968436],[-10745357.921802396,4703040.674383278],[-10745103.358219054,4703039.7365488],[-10745099.810657073,4703039.7108384771],[-10744842.548884165,4703038.7754515065],[-10744586.134781944,4703037.8369771829],[-10744325.809119545,4703034.3058048878],[-10744069.734925071,4703030.826444542],[-10744066.128796343,4703030.7577883378],[-10743807.07779366,4703027.240116721],[-10743553.174585152,4703023.7860849742],[-10743548.660716856,4703023.7395461872],[-10743290.644599561,4703020.2027161187],[-10743036.131493216,4703016.7093414403],[-10743033.169702221,4703016.6518707704],[-10742776.223310061,4703013.1163265537],[-10742519.815534782,4703009.5803966103],[-10742260.053923674,4703008.5812286604],[-10741999.753798386,4703007.5729026692],[-10741995.199397838,4703007.5655691251],[-10741738.928473208,4703006.583991955],[-10741477.57614636,4703005.5775939021],[-10741470.944674045,4703005.569358266],[-10741379.888000393,4703005.217215823],[-10741215.190353656,4703002.6179287378],[-10741214.137151144,4703002.6006979281],[-10741201.612123275,4703006.1217340995],[-10740952.580177812,4703003.3384942869],[-10740949.537303338,4703003.3193328222],[-10740927.230934024,4703003.0463346634],[-10740907.64718977,4703000.560083637],[-10740689.607001675,4703002.1092651188],[-10740426.844043076,4703003.9721394749],[-10740167.416001456,4703004.6173600145],[-10739907.080023114,4703005.2602652339],[-10739901.980499877,4703005.2831475781],[-10739646.36230877,4703005.91885693],[-10739385.098070493,4703006.5615041181],[-10739380.745500393,4703006.5572567098],[-10739124.058188528,4703007.1897505447],[-10738862.794450894,4703007.8276403053],[-10738858.924131399,4703007.832136834],[-10738601.28273016,4703008.4584579151],[-10738339.523126384,4703009.0890181428],[-10738341.394603746,4703268.8852047995],[-10738343.268381614,4703528.9763250519],[-10738343.296487048,4703532.7011087658],[-10738345.110367931,4703782.8161230516],[-10738345.169588722,4703789.3581581749],[-10738347.556849001,4704049.9935635049],[-10738347.599261213,4704055.053470091],[-10738349.92468839,4704310.4470020719],[-10738352.300832722,4704571.5326285297],[-10738352.335340245,4704575.986058265],[-10738353.896109449,4704745.4382595038],[-10738353.135712288,4704833.3084902568],[-10738350.864740519,4705095.8092341814],[-10738352.304627288,4705355.3034261335],[-10738353.686121769,4705604.4061057996],[-10738353.740915939,4705613.96182751],[-10738355.163895523,4705871.7652106704],[-10738356.515785662,4706116.7544280011],[-10738356.583176823,4706128.7400063397],[-10738357.4817499,4706289.8243564898],[-10738358.457379721,4706385.4077196233],[-10738360.990795787,4706633.6144386502],[-10738361.073632097,4706641.7557222741],[-10738363.677773165,4706897.7477157237],[-10738366.277711609,4707153.4330682205],[-10738363.422794063,4707413.0873619476],[-10738360.569780588,4707672.4930728106],[-10738360.51127005,4707678.606284258],[-10738357.726079289,4707931.7018962922],[-10738355.572219744,4708127.446618042],[-10738355.42059347,4708190.780070845],[-10738355.403208137,4708199.9322183421],[-10738354.768385474,4708451.2105299402],[-10738354.111077808,4708710.7909694267],[-10738354.10111835,4708717.512175872],[-10738353.451373266,4708969.561078893],[-10738352.786168704,4709227.4650870347],[-10738352.669294821,4709484.7163798045],[-10738352.553114599,4709742.9723796928],[-10738352.439029664,4710002.2276306879],[-10738352.323736612,4710262.4322845303],[-10738352.255017122,4710435.917082197],[-10738351.650408776,4710522.3340130746],[-10738349.860432707,4710778.5565140722],[-10738349.838684708,4710781.7957491921],[-10738348.017044,4711042.013819756],[-10738346.214644883,4711299.5018053995],[-10738345.992547022,4711557.3615437858],[-10738345.767527273,4711817.8221367039],[-10738345.547419896,4712077.3444031868],[-10738345.332257386,4712331.3898423882],[-10738345.320302887,4712337.1023893654],[-10738345.102509456,4712595.0587612726],[-10738344.886141544,4712849.682047165],[-10738344.87830798,4712853.1255550105],[-10738344.654307768,4713111.054242989],[-10738344.429803343,4713369.4995715655],[-10738344.439334603,4713618.3620868921],[-10738344.519137448,4713630.7018667506],[-10738346.121478727,4713880.6739062602],[-10738346.183075422,4713890.9669962684],[-10738347.852221467,4714150.9357909001],[-10738349.349660423,4714384.4899614826],[-10738349.433160381,4714397.8228840055],[-10738349.50975797,4714410.3854049919],[-10738351.088909499,4714669.2093404112],[-10738352.629962098,4714921.8028370161],[-10738352.676866073,4714928.7329695718],[-10738354.260412462,4715188.9775874857],[-10738355.848258609,4715449.9438934345],[-10738354.623897189,4715710.660068918],[-10738353.404948566,4715970.4611326167],[-10738352.187208099,4716229.3262858838],[-10738350.973679325,4716487.2380757174],[-10738349.755436476,4716746.3779189177],[-10738348.538096327,4717005.2963529956],[-10738347.327765435,4717264.0491146818],[-10738346.119438864,4717522.5285442779],[-10738342.985828083,4717779.2331854589],[-10738339.84260034,4718036.7935696561],[-10738339.809342984,4718039.5090930928],[-10738336.684850009,4718295.2149131326],[-10738333.518684108,4718554.4891688181],[-10738330.354416965,4718814.2592928512],[-10738327.179230507,4719075.0064611705],[-10738326.930697463,4719095.9206498591],[-10738332.99439998,4719336.1070484966],[-10738339.595864117,4719597.5435512709],[-10738339.77170307,4719858.0522533357],[-10738339.94525937,4720115.7733894335],[-10738339.954350917,4720118.4083274333],[-10738340.117277656,4720378.5755688027],[-10738340.277343551,4720632.8129099617],[-10738340.287414186,4720638.5300055109],[-10738340.448742436,4720898.2422531517],[-10738340.608797152,4721154.0543287424],[-10738340.615177194,4721157.8660931587],[-10738340.61762204,4721165.9757581027],[-10738347.9678127,4721417.2416753061],[-10738355.543857429,4721676.1793969804],[-10738354.445799809,4721935.8778142538],[-10738353.346942855,4722195.9693621183],[-10738353.321931101,4722200.3492914829],[-10738352.239778016,4722456.4605123503],[-10738351.13822123,4722717.3683016859],[-10738351.105305897,4722723.1666380381],[-10738350.035664862,4722978.6655781651],[-10738348.94001786,4723240.3339481298],[-10738348.925415972,4723244.1875081304],[-10738347.838165401,4723502.409000719],[-10738346.733010717,4723764.8689927785],[-10738345.632245434,4724023.2399486667],[-10738344.531480953,4724281.8045864385],[-10738344.500976009,4724289.5912286574],[-10738343.434922121,4724540.5736159924],[-10738342.336461924,4724799.5371309724],[-10738342.292443899,4724807.9325117543],[-10738341.238102537,4725058.6651216364],[-10738340.146451594,4725317.984404604],[-10738340.12073906,4725322.3651683535],[-10738339.0412861,4725577.5109742815],[-10738337.942328483,4725837.2304131174],[-10738337.713064,4726097.3203272689],[-10738337.484398711,4726357.0234556729],[-10738337.253627637,4726615.8467971692],[-10738337.02315419,4726873.9620877365],[-10738336.798684893,4727131.3771354705],[-10738336.576515511,4727388.085958085],[-10738336.351640109,4727644.0329483803],[-10738336.12746264,4727899.2348054051],[-10738088.01012513,4727900.1256463127],[-10737844.174268266,4727900.9936807975],[-10737840.73925258,4727901.007079429],[-10737594.32765957,4727901.8729176736],[-10737353.391408119,4727902.7116982229],[-10737348.784256335,4727902.7428824464],[-10737104.115750434,4727903.5967367832],[-10736863.76156261,4727904.4293315206],[-10736860.305222619,4727904.4419567203],[-10736617.370392995,4727905.2588209324],[-10736375.303152397,4727906.0649883961],[-10736116.55890825,4727908.6171738449],[-10735856.64863511,4727911.171420034],[-10735596.930681391,4727913.7239915906],[-10735336.943520987,4727916.271665155],[-10735273.466563428,4727916.9059764473],[-10735076.961745773,4727913.944288508],[-10734816.71686342,4727910.0127772531],[-10734556.204675922,4727906.0543273259],[-10734295.410967121,4727902.083504172],[-10734038.793621561,4727898.7160611767],[-10733781.658385295,4727895.3343106136],[-10733778.708422402,4727895.3158724466],[-10733524.017372152,4727891.9421194522],[-10733265.867478488,4727888.5171883963],[-10733261.909065917,4727888.4782535387],[-10733007.209305214,4727885.1086274823],[-10732748.036745166,4727881.6733848779],[-10732745.047937784,4727881.6126682656],[-10732488.35210097,4727878.2132651927],[-10732228.105716169,4727874.7586881556],[-10731971.85800436,4727874.4113218514],[-10731715.566742841,4727874.0568661029],[-10731458.752985565,4727873.6798522882],[-10731201.572009623,4727873.2971662739],[-10730944.06035679,4727872.9347165171],[-10730686.202809589,4727872.5645322567],[-10730427.995763846,4727872.1742393067],[-10730169.441221906,4727871.7772430331],[-10729911.121571612,4727876.0334453825],[-10729654.509668225,4727880.2536904896],[-10729396.98722733,4727884.4989417288],[-10729139.43425194,4727888.7386521287],[-10728881.856448554,4727892.9717904897],[-10728624.297266694,4727897.1986147007],[-10728446.428220613,4727900.0878957827],[-10728366.860913767,4727899.2997873677],[-10728109.404613065,4727896.7507151617],[-10727849.94624226,4727896.4661150547],[-10727589.68375475,4727896.1750684856],[-10727330.006834833,4727895.9019398615],[-10727070.447348731,4727895.6235266654],[-10726811.028122371,4727895.3229433466],[-10726551.736441344,4727895.0150131015],[-10726292.564797128,4727894.7075986946],[-10726033.530609533,4727894.3920640154],[-10726032.461195257,4728156.544299243],[-10726031.394681031,4728418.1215765849],[-10726030.319359906,4728680.2364541255],[-10726029.244840745,4728942.5263468688],[-10726028.172920926,4729204.1770451162],[-10726027.102201555,4729465.6594358683],[-10726026.036787521,4729727.0096040601],[-10726024.972473932,4729988.2106504617],[-10726035.173580572,4730246.3241942897],[-10726045.422647797,4730505.6209443612],[-10726055.68433007,4730765.1859449781],[-10726065.97084311,4731025.3330509942],[-10726076.281886471,4731286.0451582484],[-10726086.615457768,4731547.3041293463],[-10726096.974560542,4731809.1346357269],[-10726107.357192533,4732071.5377534544],[-10726104.885882584,4732334.454957407],[-10726102.466301044,4732592.0138412584],[-10726102.433188885,4732596.4783529676],[-10726099.967175048,4732857.6055494342],[-10726097.563093744,4733112.0675208783],[-10726097.503459057,4733117.8716847748],[-10726095.072073936,4733377.0713763125],[-10726092.697420001,4733630.4047638839],[-10726092.650696307,4733635.5599858304],[-10726090.22941489,4733893.3404252855],[-10726087.816438895,4734150.3901985725],[-10726084.623863988,4734405.4924447872],[-10726081.422484109,4734661.4386172378],[-10726081.360541705,4734666.3509717789],[-10726078.215603184,4734918.259479004],[-10726074.996513637,4735175.9636101816],[-10726074.924062533,4735181.4446760518],[-10726071.762714626,4735434.9014255377],[-10726068.520912562,4735694.8575947313],[-10726068.475384451,4735698.998790116],[-10726065.27090727,4735955.8413554039],[-10726062.00108544,4736217.8387257736],[-10726061.013068613,4736480.9995662635],[-10726060.026852656,4736743.9471633648],[-10726059.048544366,4737006.6535045281],[-10726058.071836483,4737269.1073465524],[-10726057.096428515,4737531.2796402285],[-10726056.122420257,4737793.1165607767],[-10726055.14200459,4738054.9276185567],[-10726054.161888665,4738316.6251999],[-10726052.033231337,4738572.3795435159],[-10726049.895171324,4738829.5100865439],[-10726047.773723448,4739085.4361260571],[-10726045.654976936,4739341.0403582063],[-10726043.578056432,4739592.8546236465],[-10726043.570969285,4739596.5047148606],[-10726043.158461379,4739851.4955937583],[-10726042.757865854,4740106.2811291479],[-10726042.358666383,4740360.1024523601],[-10725890.170177286,4740360.8099258337],[-10725886.747389328,4740622.6784595493],[-10725883.326302402,4740884.3477938119],[-10725879.912823301,4741145.8317233659],[-10725876.499844,4741407.1409467272],[-10725877.839573286,4741668.5621308209],[-10725879.06815042,4741908.1744594509],[-10725879.16438459,4741929.8335083611],[-10725880.431329262,4742190.9923718479],[-10725881.697472135,4742452.0225773482],[-10725879.892609321,4742711.0004595183],[-10725878.137161357,4742962.7729829997],[-10725878.097555125,4742969.5184491826],[-10725876.286880581,4743227.5705728047],[-10725874.542026259,4743476.1079030968],[-10725874.475302503,4743485.1685425648],[-10725873.501802245,4743625.3917692276],[-10725873.568352839,4743742.6434665704],[-10725873.705911376,4743986.2354009682],[-10725873.669207983,4743992.899182844],[-10725873.636007411,4743999.3604062712],[-10725872.567265142,4744255.3408610532],[-10725871.502223119,4744510.624026333],[-10725870.53421104,4744769.3022141671],[-10725869.567599854,4745027.8521008836],[-10725868.595982159,4745286.2531466708],[-10725867.624664165,4745544.5364588322],[-10725866.663553536,4745802.0757663334],[-10725865.703041324,4746059.2143676309],[-10725864.749735149,4746315.9723769175],[-10725863.795625584,4746572.2929453682],[-10725865.069681073,4746834.096308386],[-10725866.316174189,4747090.5316693522],[-10725866.335424392,4747095.4517483264],[-10725867.603467625,4747356.3634923315],[-10725868.839135887,4747610.6660442203],[-10725868.871908708,4747616.8459708188],[-10725870.147655306,4747876.8685414651],[-10725870.553892042,4747959.4038068252],[-10725870.996987456,4748131.7553324122],[-10725871.000918821,4748136.4302639943],[-10725871.486395851,4748314.5996479271],[-10725871.892022865,4748395.5774719464],[-10725873.187684193,4748654.2937304312],[-10725872.998274958,4748916.0775938025],[-10725872.808664547,4749177.6999391178],[-10725872.617851574,4749439.1204520026],[-10725872.426236635,4749700.3601725679],[-10725872.232318055,4749961.4272251585],[-10725872.038598644,4750222.3137163185],[-10725871.853588006,4750483.0090388907],[-10725871.667975618,4750743.5229965355],[-10725870.003667675,4751001.3974225409],[-10725868.334559379,4751260.1415976649],[-10725868.277538091,4751267.7047365028],[-10725866.650338974,4751519.7500333078],[-10725864.968326259,4751780.2423059],[-10725864.907513307,4751790.0022823578],[-10725864.297569545,4751885.4852993069],[-10725865.139626656,4752041.996156306],[-10725866.547533967,4752304.0940365251],[-10725866.576003276,4752310.5194932241],[-10725867.949236294,4752566.5768026514],[-10725869.357046546,4752829.2585428311],[-10726129.221082071,4752830.5155927455],[-10726389.099133387,4752831.7679910529],[-10726649.019532571,4752832.9944171272],[-10726908.984782575,4752834.2139949529],[-10726913.237714317,4752834.2216256354],[-10727169.042237062,4752835.4035949046],[-10727429.153853005,4752836.5970715657],[-10727434.014875662,4752836.6174956448],[-10727689.328240227,4752837.8007565495],[-10727949.566499891,4752839.000823712],[-10728207.110796718,4752839.7979903026],[-10728446.925150407,4752840.5327166375],[-10728464.453857111,4752839.1471591592],[-10728476.72859711,4752838.1806415888],[-10728721.685410028,4752842.1027539782],[-10728978.814952888,4752846.2109592063],[-10729235.816449849,4752850.2999126352],[-10729492.728444764,4752854.3800808219],[-10729749.546232278,4752858.4513345417],[-10730006.27601945,4752862.5143198716],[-10730265.700767521,4752866.4836291615],[-10730524.915576717,4752870.4432483856],[-10730529.998251367,4752870.5061851665],[-10730783.906431066,4752874.3827109691],[-10731042.683141829,4752878.3263096604],[-10731048.737220157,4752878.4090182297],[-10731301.225681974,4752881.4006680744],[-10731559.554879416,4752884.4569367124],[-10731564.051087711,4752884.5074678054],[-10731817.654115209,4752887.4827106902],[-10732075.51768299,4752890.5013782466],[-10732334.854626333,4752893.9281161968],[-10732594.501020961,4752897.3535636235],[-10732854.458869055,4752900.7597593572],[-10733114.743588215,4752904.1636308506],[-10733376.088711875,4752907.5828820206],[-10733637.252529237,4752910.9921843102],[-10733899.168200579,4752914.4226805661],[-10734158.972973352,4752917.8194488343],[-10734416.373517314,4752921.8579074331],[-10734670.096382556,4752925.8298146902],[-10734675.705555305,4752925.9020563131],[-10734934.173511324,4752929.9500819091],[-10735116.62600285,4752932.8033701535],[-10735184.588120321,4752934.5736305816],[-10735192.685320197,4752934.7772904765],[-10735450.13983571,4752941.5222171536],[-10735701.010370068,4752948.0872666277],[-10735707.124216514,4752948.2512537567],[-10735963.636354508,4752953.6023162995],[-10736219.675855063,4752958.9374870807],[-10736479.363999318,4752964.0330967037],[-10736739.547005376,4752969.132715418],[-10737000.22877766,4752974.2344049681],[-10737261.404811058,4752979.3394575436],[-10737522.94685995,4752984.4663511226],[-10737784.92410283,4752989.5933771841],[-10738047.343847947,4752994.7034789603],[-10738310.205094222,4752999.8150053937],[-10738571.215420308,4753000.4323177719],[-10738827.986430161,4753001.0336002167],[-10738832.077778175,4753001.0329607762],[-10739092.774147373,4753001.6192603121],[-10739347.834713833,4753002.1860387437],[-10739353.30302627,4753002.2126666121],[-10739613.66481524,4753002.7905664677],[-10739869.707997903,4753003.351790173],[-10739873.86011496,4753003.3519261396],[-10740133.898035884,4753003.9250444425],[-10740393.768766798,4753004.4919600347],[-10740651.646834498,4753005.2356431251],[-10740909.66005566,4753005.9728655722],[-10741167.758173132,4753006.6881210748],[-10741425.977428151,4753007.3973035654],[-10741683.858799227,4753008.0984740043],[-10741942.172361219,4753008.7921505161],[-10742200.821904814,4753009.4740687516],[-10742331.171691069,4753009.8158048578],[-10742361.806692904,4753009.3911137162],[-10742459.998658294,4753007.5880898768],[-10742459.99570247,4753022.4756099749],[-10742459.936098313,4753042.5267356355],[-10742458.970504474,4753265.1644650828],[-10742458.966807498,4753267.4345027674],[-10742458.53554867,4753528.73867583],[-10742458.51794841,4753534.9612523979],[-10742458.094480081,4753790.5039854506],[-10742457.682102796,4754039.2691774294],[-10742457.640499363,4754053.0994243631],[-10742457.648637649,4754062.1698196456],[-10742458.024980145,4754316.3306853203],[-10742458.131133338,4754388.8771012817],[-10742458.151193464,4754400.5127497455],[-10742458.049309038,4754535.8146913573],[-10742458.206631746,4754580.485247788],[-10742458.232584046,4754587.5637743678],[-10742459.131043019,4754847.6983879441],[-10742460.0326085,4755108.7762233065],[-10742719.799543345,4755105.0736246752],[-10742980.031310162,4755101.3591353623],[-10743240.780869519,4755097.6189260045],[-10743493.384007534,4755093.9900216516],[-10743501.994560447,4755093.9927107692],[-10743517.715249415,4755094.0095961774],[-10743762.873174993,4755092.5879624914],[-10744023.626846252,4755091.0684450762],[-10744284.328157652,4755089.5502204392],[-10744544.776079137,4755088.027602396],[-10744546.927641317,4755349.0256112078],[-10744549.07920335,4755610.002327878],[-10744550.011917889,4755723.2875997815],[-10744551.029135015,4755871.1226809025],[-10744552.831097525,4756132.3192084758],[-10744552.870905306,4756152.6227582153],[-10744554.030976275,4756395.2211337024],[-10744555.295332903,4756659.4794428628],[-10744556.552878933,4756922.8449692717],[-10744557.809723882,4757186.1392956004],[-10744560.537752707,4757449.6607797612],[-10744561.530592883,4757545.6414611833],[-10744562.28296639,4757713.3943222975],[-10744562.308984501,4757718.4822872197],[-10744562.728441209,4757815.0566303693],[-10744563.160253624,4757977.3815945955],[-10744563.864948034,4758241.644698781],[-10744563.8850834,4758248.1146243662],[-10744564.575854419,4758506.1963266507],[-10744565.285363743,4758771.0169776166],[-10744565.296060061,4758775.8602054939],[-10744565.983965065,4759036.1036991542],[-10744566.68727586,4759301.4336260809],[-10744826.439620892,4759300.0518877851],[-10745086.565393019,4759298.6610975759],[-10745090.884033032,4759298.6201001117],[-10745347.053579107,4759297.2304818649],[-10745607.905281223,4759295.8063303502],[-10745613.073793851,4759295.7833039174],[-10745869.07174355,4759294.3860571282],[-10746130.602422351,4759292.952335773],[-10746135.04089953,4759292.9145705774],[-10746392.475993184,4759291.5014166161],[-10746654.696961585,4759290.056056588],[-10746654.532587856,4759551.6303826971],[-10746654.367422493,4759813.7482539294],[-10746654.363014415,4759819.3665393619],[-10746654.191854242,4760076.3948420426],[-10746654.018097337,4760339.5858354811],[-10746654.02002879,4760347.0750759626],[-10746653.858364956,4760603.2742053252],[-10746653.690232554,4760867.5255565392],[-10746653.685925957,4760873.2235740852],[-10746653.516101474,4761132.2572951717],[-10746653.342483653,4761397.7307014791],[-10746731.255103862,4761397.2906246549],[-10746912.606951397,4761396.7620796151],[-10747171.745678907,4761396.0011584191],[-10747430.749651976,4761395.2221313976],[-10747689.618370244,4761394.4378020298],[-10747948.348630251,4761393.6595511623],[-10748206.943435267,4761392.8780671963],[-10748465.415799998,4761392.0830038693],[-10748723.760818966,4761391.2814742271],[-10748723.460444052,4761651.7827849984],[-10748723.159272715,4761912.5518289246],[-10748723.149827564,4761916.379357513],[-10748722.845191261,4762173.5987152681],[-10748722.538022092,4762434.9070393387],[-10748722.523494164,4762440.0773296552],[-10748722.222448418,4762696.5193759883],[-10748721.91508913,4762958.4290228644],[-10748721.914365098,4762962.9064055244],[-10748721.615843974,4763220.6277247658],[-10748721.31219936,4763483.1581914453],[-10749158.316657454,4763476.9127024813],[-10749590.567679469,4763470.7168902149],[-10749594.622817105,4763470.6698028594],[-10750030.221767977,4763464.420308399],[-10750459.738062661,4763458.2393771177],[-10750465.112809462,4763458.1759903757],[-10750584.507348746,4763456.4394680969],[-10750899.289348265,4763452.7729960652],[-10751328.545665899,4763447.7563873772],[-10751332.74266587,4763447.712016427],[-10751765.51100008,4763442.6457345625],[-10752197.586541908,4763437.5707872873],[-10752198.93723652,4763693.7022305224],[-10752200.288732717,4763949.8815834066],[-10752201.634625552,4764206.2488217494],[-10752202.980720729,4764462.7487200582],[-10752204.336641623,4764720.1100343112],[-10752205.694471501,4764977.8802799406],[-10752207.045099748,4765236.0482326131],[-10752208.397737112,4765494.6262141652],[-10752465.066762414,4765498.2191679971],[-10752722.705797162,4765501.8175579756],[-10752981.210021259,4765505.4087047651],[-10753240.602561375,4765509.005805226],[-10753500.967514189,4765512.6382288821],[-10753762.25061716,4765516.2776413094],[-10754024.385494104,4765519.9086461561],[-10754287.528023576,4765523.5466398112],[-10754544.31080858,4765523.0074305683],[-10754800.585612511,4765522.4629165186],[-10755056.491994673,4765521.8948549442],[-10755311.981399871,4765521.323041142],[-10755567.017987443,4765520.7672704523],[-10755821.630890381,4765520.2072300278],[-10756075.821610373,4765519.6424023313],[-10756277.009410437,4765519.1912901029],[-10756329.577114109,4765517.9752460625],[-10756328.802679667,4765777.32138508],[-10756328.029452607,4766037.0309269549],[-10756327.249218561,4766296.8066881653],[-10756326.469588168,4766556.7649996681],[-10756325.684453489,4766816.8484229874],[-10756324.899121895,4767077.1349969096],[-10756324.117296509,4767337.5578350611],[-10756323.334476026,4767598.3462590789],[-10756581.249559775,4767599.5730386116],[-10756836.249909731,4767600.7792398157],[-10756839.433550959,4767600.7959365444],[-10757097.888151489,4767602.0122353174],[-10757352.369507596,4767603.2036842443],[-10757356.608055556,4767603.2377226939],[-10757615.594163902,4767604.455446234],[-10757871.22733726,4767605.6497440105],[-10757874.87781252,4767605.6745939339],[-10758134.44808854,4767606.8714840747],[-10758394.304892134,4767608.0637161853],[-10758392.277210895,4767868.2055601636],[-10758390.282293938,4768123.9617861947],[-10758390.251527328,4768128.0743323518],[-10758388.2264397,4768387.6621171627],[-10758386.241412373,4768642.1254208535],[-10758386.195740942,4768646.9714813773],[-10758384.184259405,4768905.9986502556],[-10758382.205450244,4769161.1316488273],[-10758382.181883739,4769164.7571920501],[-10758380.162684238,4769423.243462001],[-10758380.075371938,4769434.4926244225],[-10758378.444205618,4769506.4095379245],[-10758378.348614899,4769681.4692181665],[-10758378.218229789,4769943.2300900212],[-10758378.16858393,4770045.8561218083],[-10758377.322098659,4770152.789698299],[-10758377.202948244,4770199.9271544339],[-10758377.183502749,4770204.5302266534],[-10758376.54061614,4770465.3774907617],[-10758375.91443862,4770719.6303022159],[-10758375.906732362,4770725.7825907217],[-10758375.260927014,4770985.7170128897],[-10758374.626148999,4771240.5415723985],[-10758374.604301445,4771245.1865463192],[-10758373.958380356,4771504.196333522],[-10758373.313853059,4771762.7436203435],[-10758633.05812192,4771766.7193949819],[-10758893.018537771,4771770.6919359518],[-10759153.157257354,4771774.6613726197],[-10759413.492701735,4771778.6278344877],[-10759674.048797917,4771782.5702193184],[-10759934.801018188,4771786.5092409402],[-10760195.758273115,4771790.4661311442],[-10760456.921463357,4771794.4197876379],[-10760455.460602932,4772054.5683222394],[-10760454.015211295,4772311.7704002708],[-10760454.008548897,4772314.4996035928],[-10760452.546580689,4772574.2642385196],[-10760451.112460675,4772828.9835766936],[-10760451.089614885,4772833.8330822345],[-10760449.637150876,4773093.2039185325],[-10760448.206447633,4773348.7088898411],[-10760448.183882607,4773352.3776385179],[-10760446.726105835,4773611.3534501325],[-10760445.271128938,4773870.1331510227],[-10760709.258595938,4773872.519465901],[-10760973.255673761,4773874.8994368827],[-10761237.028995518,4773877.2685310747],[-10761500.652545813,4773879.6283025779],[-10761764.294917785,4773882.0005061189],[-10762027.684100077,4773884.3648110069],[-10762290.827400943,4773886.7147427974],[-10762553.721216341,4773889.0549630849],[-10762553.193786209,4774148.6132730357],[-10762552.696541602,4774393.0522638373],[-10762552.675351532,4774407.2767320685],[-10762552.142585784,4774665.0538180852],[-10762551.649158353,4774904.2074225098],[-10762551.608804069,4774921.9373403899],[-10762551.09463048,4775177.9583120691],[-10762550.608455226,4775419.7887627594],[-10762550.583545474,4775433.0771669606],[-10762550.389109302,4775529.4396680295],[-10762549.423003018,4775687.2927977871],[-10762547.872701075,4775940.6688586762],[-10762801.840780394,4775942.6681881752],[-10763056.813408105,4775944.6680405978],[-10763060.954843281,4775944.6996592693],[-10763312.782174293,4775946.649506595],[-10763569.775011197,4775948.6313660732],[-10763575.072668526,4775948.6824168442],[-10763827.815446127,4775950.6390042342],[-10764086.856424743,4775952.6391353318],[-10764090.489678795,4775952.6618153919],[-10764346.924277296,4775954.6404370386],[-10764607.977456382,4775956.6491259336],[-10764606.940678209,4776213.820091051],[-10764605.898619439,4776472.5507405223],[-10764604.854549142,4776730.7226684093],[-10764603.810281066,4776989.0494084423],[-10764602.762910908,4777247.4703513812],[-10764601.713840861,4777506.0220337231],[-10764600.67138071,4777764.7218239112],[-10764599.629623404,4778023.551338423],[-10764596.86590527,4778288.9641709374],[-10764594.189752569,4778546.1460968461],[-10764594.117278425,4778552.7919796566],[-10764591.380247582,4778815.5677496316],[-10764588.736377917,4779069.4615443563],[-10764588.657023232,4779077.7781410329],[-10764585.940288724,4779338.9166613212],[-10764583.287024776,4779593.8214423005],[-10764583.231254408,4779599.5310190227],[-10764580.512499886,4779859.5921505112],[-10764577.801144831,4780119.1055844789],[-10764575.685733205,4780376.3137545241],[-10764573.565625953,4780634.1204134636],[-10764573.506074591,4780641.2570872912],[-10764571.449733397,4780892.5348076774],[-10764569.329845654,4781151.5262729255],[-10764569.252110185,4781160.9054895183],[-10764567.228532692,4781407.6806449005],[-10764565.09794734,4781667.5726912143],[-10764565.002508296,4781677.9712238805],[-10764562.944972781,4781929.6930734683],[-10764560.796113992,4782192.4936785065],[-10764559.049973786,4782452.7483064262],[-10764557.428277085,4782694.7369573917],[-10764557.30903157,4782712.5204264196],[-10764555.561674541,4782971.8387736725],[-10764553.939454142,4783212.4226517379],[-10764553.811306471,4783230.6967030382],[-10764552.075663069,4783490.0378921069],[-10764550.411822418,4783738.4159557475],[-10764550.333605753,4783748.9804678997],[-10764548.596547998,4784007.5509718023],[-10764546.861786596,4784265.7413384961],[-10764544.498326106,4784525.1229957063],[-10764542.179135457,4784779.5683107069],[-10764542.145368913,4784783.9752044976],[-10764539.78219117,4785042.2876828257],[-10764537.46778046,4785295.1775033521],[-10764537.423710121,4785300.0727046821],[-10764535.070127098,4785557.3973829467],[-10764532.747221131,4785811.1774733169],[-10764532.717236238,4785814.1977682142],[-10764530.376951519,4786070.4950824259],[-10764528.936083991,4786228.2660234598],[-10764527.331953313,4786326.2945971061],[-10764275.706308983,4786326.1403961312],[-10764038.799984973,4786325.9876082242],[-10764025.796124663,4786325.9675392117],[-10763777.363328768,4786325.8046770543],[-10763554.799093982,4786325.6518731005],[-10763530.496422252,4786325.6410494233],[-10763285.116514845,4786325.4688767241],[-10763064.540552,4786325.308309597],[-10763041.252939809,4786325.2728605252],[-10762798.919313656,4786325.1106950287],[-10762558.126548257,4786324.9460784243],[-10762558.701089801,4786585.5656739846],[-10762559.277028384,4786845.9154797066],[-10762559.849760892,4787106.1264309436],[-10762560.421489509,4787366.1780302292],[-10762560.399421537,4787460.9012350356],[-10762560.938749697,4787625.8607238876],[-10762561.785383934,4787885.4100965736],[-10762562.637622336,4788144.8313222658],[-10762563.487154372,4788404.061627619],[-10762304.176879976,4788405.4487282028],[-10762126.677378276,4788406.3956395937],[-10762044.158288909,4788406.3892167648],[-10761925.560074637,4788406.406470553],[-10761785.665939465,4788407.1874633897],[-10761527.959598651,4788408.6216502162],[-10761271.000712072,4788410.06427244],[-10761014.818512786,4788411.4936743332],[-10760759.418607173,4788412.9085592097],[-10760504.78808054,4788414.3130765725],[-10760489.303516522,4788670.0328260297],[-10760473.827560147,4788925.6034698458],[-10760458.356607096,4789181.0124171153],[-10760442.895563083,4789436.267177592],[-10760427.421606528,4789691.6386681143],[-10760411.964564612,4789946.7101836689],[-10760396.513830207,4790201.7835123595],[-10760381.112138562,4790456.038024568],[-10760327.438656457,4790458.5650378438],[-10760138.685921879,4790459.9113859367],[-10759894.429779118,4790461.6468369942],[-10759648.729886893,4790463.3840902299],[-10759400.017953603,4790465.1367496168],[-10759150.921380762,4790466.8820122844],[-10758898.79434582,4790468.6435888493],[-10758644.62968291,4790470.4077401953],[-10758390.597371131,4790472.1644996963],[-10758132.389658375,4790472.0909805885],[-10757874.433332711,4790472.0098113958],[-10757615.590393653,4790471.9038605606],[-10757356.298041001,4790471.7914203601],[-10757096.48489362,4790471.6966148531],[-10756836.212020846,4790471.5937634306],[-10756575.411544871,4790471.4670417057],[-10756314.112899583,4790471.3327925336],[-10756277.853644796,4790469.7023438076],[-10756049.717895279,4790475.896223844],[-10755785.761736024,4790483.0567037603],[-10755523.485795652,4790490.1568913385],[-10755262.507837703,4790497.2127363682],[-10755002.826861357,4790504.2435645405],[-10754744.418438422,4790511.2326438734],[-10754487.254536737,4790518.1720621176],[-10754231.35197565,4790525.0701203691],[-10753972.336707672,4790528.9598084837],[-10753713.595953206,4790532.8366593076],[-10753454.625336137,4790536.7087096702],[-10753195.594950747,4790540.5728482939],[-10752936.506999545,4790544.4286860833],[-10752677.369691916,4790548.2770013334],[-10752418.377149593,4790552.1141641671],[-10752158.899853524,4790555.951323132],[-10752159.264805324,4790817.7753322311],[-10752159.621428331,4791072.5647102604],[-10752159.627042629,4791078.9344043732],[-10752159.992374005,4791339.5417280113],[-10752160.343122603,4791590.3481624294],[-10752160.357995877,4791599.5755973989],[-10752160.716178441,4791857.7976547992],[-10752161.064435063,4792109.2599606868],[-10752161.073451169,4792115.5073349169],[-10752161.429008439,4792372.4272414222],[-10752161.78646769,4792629.3428324908],[-10752162.285769792,4792891.03753014],[-10752162.785061216,4793152.1099606557],[-10752163.276744684,4793413.2330406848],[-10752163.529798191,4793546.9588895561],[-10752161.74229328,4793674.2134512002],[-10752158.098158035,4793934.8949005222],[-10752154.454722309,4794195.5395308426],[-10752150.808973439,4794455.7740325322],[-10752147.167421574,4794715.7078903476],[-10752146.061620116,4794977.8145070542],[-10752144.955212576,4795239.7121763183],[-10752143.846897291,4795501.3936147643],[-10752142.739177804,4795762.8865768751],[-10752141.63446092,4796024.3552145138],[-10752140.529539997,4796285.6788310949],[-10752139.419409217,4796546.8537814012],[-10752138.311176809,4796807.8838177612],[-10752139.873831484,4797070.3372018663],[-10752141.417376591,4797329.2342570564],[-10752141.435782189,4797332.665329962],[-10752142.998530354,4797594.8563808557],[-10752144.535031091,4797852.2863631984],[-10752144.551864076,4797856.9015173875],[-10752146.112902891,4798118.7989111235],[-10752147.647811562,4798376.630604513],[-10752147.678943815,4798380.5529639618],[-10752149.238874193,4798642.1658713967],[-10752150.796398753,4798903.6573541164],[-10752151.656029604,4799165.3139008153],[-10752152.517477473,4799427.5815929957],[-10752153.376896331,4799688.7709575091],[-10752154.233799569,4799949.4480844168],[-10752155.091599807,4800209.9667208819],[-10752155.947897125,4800470.4411080517],[-10752156.806894064,4800730.7797076246],[-10752157.66549385,4800991.2568614539],[-10751727.434427924,4800994.6176682701],[-10751296.825729528,4800997.960684618],[-10751288.96894896,4800998.0203333236],[-10750865.853315137,4801001.3095415719],[-10750663.273359939,4801002.8786031175],[-10750434.50508745,4801005.3400584292],[-10750424.042329438,4801005.4722621674],[-10750267.797247773,4801007.1513689142],[-10750002.783642294,4801009.7633410264],[-10749570.713894147,4801014.0070530064],[-10749563.385117363,4801014.0742378123],[-10749138.271419538,4801018.2532303995],[-10748705.457019115,4801022.4909666106],[-10748706.13444476,4801284.3570702905],[-10748706.798525428,4801540.8797869645],[-10748706.80395652,4801546.0290166577],[-10748707.483379131,4801807.6863744697],[-10748707.844565216,4801946.7730614012],[-10748708.650620969,4802063.6371179158],[-10748708.687199593,4802069.2779851472],[-10748710.503409198,4802330.4185568392],[-10748712.324244963,4802592.4219821831],[-10748713.308170244,4802732.6347066574],[-10748714.052095817,4802855.3110543098],[-10748715.651820999,4803119.0615574457],[-10748455.616300192,4803115.7075327663],[-10748203.861951174,4803112.4541071402],[-10748195.274528904,4803112.3331168387],[-10747934.51578071,4803108.9462305224],[-10747680.309927581,4803105.6386281373],[-10747673.370991066,4803105.5496013667],[-10747412.517698284,4803104.7812380055],[-10747158.778140105,4803104.0263201324],[-10747151.5934244,4803104.0136531815],[-10746890.606679009,4803103.2411328023],[-10746638.242093168,4803102.4872672642],[-10746629.563979946,4803102.8960064072],[-10746365.737102885,4803102.782926497],[-10746112.767740874,4803102.6680040359],[-10746102.102145268,4803102.6693289923],[-10745838.673723657,4803102.5487206178],[-10745588.196611315,4803102.4287575148],[-10745575.454140937,4803102.4316207077],[-10745312.222243773,4803102.2991962787],[-10745061.752239294,4803102.1675451389],[-10745049.315919101,4803102.1754761469],[-10744786.482076207,4803102.00513421],[-10744541.924731838,4803101.8409437016],[-10744524.505556295,4803099.4235475352],[-10744266.394462069,4803097.0777086932],[-10744016.483345883,4803094.7993512163],[-10744006.939130098,4803094.697831912],[-10743746.937874541,4803092.3396381661],[-10743486.135202378,4803089.9665023042],[-10743223.988692814,4803087.5540039819],[-10742961.060789542,4803085.126433895],[-10742696.853423087,4803082.6852157712],[-10742432.931883493,4803080.2391957985],[-10742426.595046306,4803080.6082174908],[-10742362.77365303,4803084.1553167813],[-10742262.456783121,4803086.5472250199],[-10742200.829555515,4803086.1315448433],[-10742172.484564221,4803085.9979334166],[-10742005.863057209,4803085.2164074723],[-10741910.521086514,4803083.9817849258],[-10741832.130490925,4803082.9922868237],[-10741649.753688514,4803082.5169288665],[-10741389.200553719,4803081.8323174659],[-10741128.982402161,4803081.1671875678],[-10740869.044270448,4803080.4962147977],[-10740609.425903764,4803079.8091397956],[-10740350.109782329,4803079.1167414924],[-10740091.299764499,4803079.5049715564],[-10739837.58536878,4803079.8785459409],[-10739832.761856932,4803079.8656707592],[-10739574.475537339,4803080.2479288727],[-10739322.882965902,4803080.6142386915],[-10739316.4511165,4803080.6096689198],[-10739058.704513121,4803080.9721891992],[-10738806.024398571,4803081.3204432884],[-10738801.218807198,4803081.3073084345],[-10738543.996002492,4803081.6776227113],[-10738287.004962398,4803082.0394964656],[-10738022.021680923,4803082.010049508],[-10737756.50168604,4803081.9746266101],[-10737492.555489566,4803081.9444043925],[-10737229.476383712,4803081.9075622335],[-10736967.290598802,4803081.8790349727],[-10736705.99402979,4803081.8440177245],[-10736445.573761765,4803081.7953677429],[-10736196.292321321,4803081.7423445657],[-10736186.018375266,4803081.4563377472],[-10735925.443114983,4803080.7519872338],[-10735662.866767937,4803080.0363307726],[-10735401.682711946,4803079.3269133531],[-10735140.753747284,4803078.6099647125],[-10734877.803372478,4803077.8745673764],[-10734620.003683195,4803077.1442545345],[-10734614.202954229,4803077.1087787645],[-10734349.942582572,4803076.371688433],[-10734100.108996345,4803075.6680288473],[-10734085.040483687,4803075.8956288258],[-10733822.748791067,4803076.4413741659],[-10733578.061913397,4803076.9429015834],[-10733561.470656285,4803076.9749158053],[-10733301.198970962,4803077.485215026],[-10733056.732644632,4803077.9592114026],[-10733041.932433916,4803077.9856481291],[-10732783.676251244,4803078.4824487641],[-10732535.626229936,4803078.9531848188],[-10732526.424616184,4803078.9700326268],[-10732270.179730875,4803079.4320364473],[-10732014.947902972,4803079.8878104659],[-10731754.682750467,4803081.5114610624],[-10731506.640462339,4803083.051134075],[-10731494.547446186,4803083.1309564998],[-10731234.539186241,4803084.7164273243],[-10730995.301156113,4803086.1678242562],[-10730974.658471391,4803086.2757954197],[-10730714.624081858,4803087.8777594892],[-10730482.229971217,4803089.3046376826],[-10730454.929080097,4803089.4808937544],[-10730202.933974801,4803091.0089940866],[-10730195.182515871,4803090.9301351979],[-10729964.513490805,4803088.5995701514],[-10729936.059229165,4803086.4622369241],[-10729677.521835703,4803091.8319155015],[-10729571.351170724,4803094.0343213985],[-10729444.161745109,4803094.3138321778],[-10729418.22691174,4803094.3516549179],[-10729158.790080206,4803094.8739047963],[-10728925.533061452,4803095.3365151351],[-10728898.885914711,4803095.3984904904],[-10728638.933994319,4803095.9093100382],[-10728447.841752702,4803096.280134473],[-10728405.097808268,4803096.1298454721],[-10728378.717262564,4803096.0332538327],[-10728118.195255319,4803094.9793000305],[-10727884.191351103,4803094.0268735085],[-10727857.336448304,4803093.2635415513],[-10727595.491165804,4803093.8330538142],[-10727364.373892777,4803094.3308661748],[-10727333.208183482,4803094.4171095267],[-10727070.49130474,4803094.9742810493],[-10726843.848543964,4803095.4505524039],[-10726807.328416683,4803095.5459959768],[-10726543.788998105,4803096.1060214099],[-10726322.6104807,4803096.5704955719],[-10726279.881558783,4803096.6568248495],[-10726015.57756629,4803097.2061982118],[-10725800.61845487,4803097.6466705268],[-10725750.884364555,4803094.8868023865],[-10725499.194593374,4803095.7815406015],[-10725278.263565885,4803096.5644501084],[-10725247.951732494,4803096.6618652456],[-10724997.1707996,4803097.5506330244],[-10724755.990635978,4803098.3974901522],[-10724746.850292124,4803098.410312281],[-10724497.130871598,4803099.2768767821],[-10724247.925538328,4803100.1372095998],[-10724233.756649895,4803100.205855553],[-10723999.225582656,4803101.0045571728],[-10723751.038111908,4803101.8435956277],[-10723711.56389701,4803105.870500939],[-10723493.950447215,4803106.0769420927],[-10723237.317212429,4803106.3137537474],[-10723187.423102258,4803106.357199531],[-10722981.121978169,4803106.5532942666],[-10722725.30817966,4803106.7889402006],[-10722664.564072099,4803106.8449418675],[-10722470.105078807,4803107.0182249388],[-10722215.212532636,4803107.2399785398],[-10722142.946459478,4803107.2912611747],[-10721960.825263744,4803107.4587470945],[-10721706.256788004,4803107.6871251315],[-10721622.602475671,4803111.0472541712],[-10721447.028261386,4803111.2433357192],[-10721187.090952193,4803111.5290946038],[-10721102.324296448,4803111.6320168758],[-10720926.763897991,4803111.8304360686],[-10720666.221397314,4803112.1187899606],[-10720581.945501542,4803112.1862603016],[-10720405.202251295,4803112.3754543932],[-10720143.907891179,4803112.6497797128],[-10720061.401518095,4803112.7516716169],[-10719882.293665554,4803112.9235843318],[-10719620.373389579,4803113.1686870866],[-10719540.694149083,4803113.369548643],[-10719360.88677921,4803112.7253723973],[-10719101.049857719,4803111.7898593359],[-10719018.878057895,4803111.4820211707],[-10718840.85272404,4803110.826034016],[-10718580.293877093,4803109.8628568379],[-10718497.389039235,4803109.5341073712],[-10718319.389835002,4803108.8656533184],[-10718058.133690814,4803107.8774094852],[-10717976.308086587,4803107.5686637927],[-10717796.52414267,4803106.881502334],[-10717534.549777459,4803105.8745552748],[-10717455.58295097,4803106.0737311458],[-10717273.161501179,4803105.7426556749],[-10717012.115207991,4803105.260505626],[-10716930.121715281,4803105.1030547246],[-10716751.404497745,4803104.7545912303],[-10716491.032274082,4803104.2395874895],[-10716406.435606448,4803104.0619973363],[-10716230.966600725,4803103.7248447286],[-10715971.231805695,4803103.2208822649],[-10715884.475671215,4803103.072633924],[-10715711.824384984,4803102.7275702255],[-10715452.752947524,4803102.2030914333],[-10715364.2651772,4803104.0158297922],[-10715188.342365591,4803104.257493237],[-10714924.204358086,4803104.6163511416],[-10714842.470267773,4803104.73266117],[-10714660.313933618,4803104.9817033168],[-10714532.167010473,4803105.1558872377],[-10714396.638308207,4803104.8563094223],[-10714319.855412483,4803104.6697656214],[-10714133.161440127,4803104.2507171333],[-10713869.932257833,4803103.6549966559],[-10713796.428041447,4803103.4969182955],[-10713606.875373838,4803103.0412259893],[-10713344.021423327,4803102.4031717461],[-10713272.198011007,4803105.3851622399],[-10713274.392608859,4803366.754321333],[-10713276.59172334,4803628.6466818778],[-10713276.640410142,4803634.7803683095],[-10713278.80136246,4803891.1131969504],[-10713281.019723946,4804154.1441707471],[-10713281.085572371,4804162.2409379277],[-10713283.230285184,4804417.5727465944],[-10713285.447565245,4804681.5075420775],[-10713285.504672244,4804688.1324592484],[-10713287.677571978,4804945.9926304063],[-10713289.910093555,4805211.0249377275],[-10713292.185486779,4805472.3923106315],[-10713294.39825353,4805726.5073713716],[-10713294.449060233,4805733.4581228336],[-10713296.724740544,4805994.1767545044],[-10713298.921440059,4806245.9799718251],[-10713298.998010522,4806254.5272632744],[-10713301.25815998,4806514.6116008386],[-10713302.565370737,4806664.9059997071],[-10713303.267858244,4806767.0698190928],[-10713303.310062952,4806774.3914201818],[-10713305.074427363,4807033.8421425456],[-10713306.837183768,4807292.9955753544],[-10713308.793150568,4807556.2417273102],[-10713310.761469295,4807821.2451987257],[-10713311.891396761,4807972.5065431884],[-10713311.8915767,4808084.1839206899],[-10713311.89211406,4808231.3884148197],[-10713312.069668809,4808346.3559112912],[-10713312.442493223,4808608.8843078213],[-10713312.815310322,4808871.0735576786],[-10713313.180212259,4809132.9837989397],[-10713313.310544344,4809225.9852016158],[-10713313.425769748,4809394.5862902012],[-10713311.873464221,4809450.3022140963],[-10713313.670037141,4809656.728426232],[-10713315.951962175,4809919.0697818901],[-10713318.219457509,4810180.7861572625],[-10713320.485043451,4810442.1513341544],[-10713321.977528188,4810613.9529057695],[-10713322.771760026,4810703.7948393375],[-10713323.810561597,4810821.1930747386],[-10713325.425739199,4810962.5277749142],[-10713325.465445217,4810965.3503147392],[-10713328.458974974,4811226.7992966073],[-10713331.453002764,4811488.1087604351],[-10713332.670921845,4811596.592215362],[-10713334.225280596,4811749.6943675363],[-10713336.88954901,4812011.9852135889],[-10713336.90923108,4812014.7690546243],[-10713339.558138281,4812275.0031927265],[-10713342.241860999,4812538.7526521562],[-10713344.905328952,4812801.0134988036],[-10713347.566691756,4813063.1297785537],[-10713350.217238657,4813325.0695001176],[-10713352.866881248,4813586.8391499314],[-10713353.414661452,4813851.7966395263],[-10713353.962134931,4814116.456927632],[-10713354.51607799,4814379.3408267787],[-10713355.069893578,4814640.9446014706],[-10713355.60388539,4814902.5106253354],[-10713356.130884297,4815160.0983971152],[-10713356.142365597,4815163.290479105],[-10713356.673520746,4815423.2941133268],[-10713357.203958243,4815682.5104149599],[-10713357.466747517,4815944.6148578692],[-10713357.730356365,4816207.59807475],[-10713357.986022359,4816469.0063964995],[-10713358.240170933,4816729.6840760009],[-10713358.504558841,4816991.6557657579],[-10713358.770049002,4817253.6780205527],[-10713359.023526741,4817515.7747743428],[-10713359.275703587,4817777.9045447391],[-10713357.749301484,4818039.1294488776],[-10713356.218806516,4818300.9321661871],[-10713356.16593541,4818309.8565490954],[-10713354.688223207,4818563.3076695306],[-10713353.154347455,4818826.2380542606],[-10713353.094233334,4818838.2329846583],[-10713351.624387965,4819089.7396236733],[-10713350.08152548,4819353.8233495001],[-10713350.031673498,4819363.4842662811],[-10713348.544281352,4819618.4843350127],[-10713346.996837344,4819883.7270489745],[-10713346.655669335,4820143.2724321298],[-10713346.312718293,4820403.7214134047],[-10713346.313956631,4820410.1504288269],[-10713345.966683276,4820665.1007330948],[-10713345.611056231,4820927.3865260994],[-10713345.606151946,4820936.8447101135],[-10713345.266260637,4821190.570017145],[-10713344.909570809,4821454.6818519197],[-10713344.889824914,4821462.9944337206],[-10713344.555603636,4821719.7198924217],[-10713344.210466312,4821985.6891568182],[-10713345.041883405,4822246.5100601539],[-10713345.873906147,4822507.5627527758],[-10713346.704032276,4822768.8771811537],[-10713347.535965892,4823030.4442571113],[-10713348.365278119,4823291.1490504639],[-10713349.194987025,4823551.6752122585],[-10713350.023089638,4823811.9929273622],[-10713350.850887671,4824072.1116797561],[-10713351.398726668,4824335.3204291807],[-10713351.92258607,4824586.7046285225],[-10713351.94964857,4824597.5601496818],[-10713352.483930571,4824858.8346692938],[-10713352.99046416,4825105.2570759822],[-10713353.010883469,4825119.1436520806],[-10713353.55723981,4825378.5584788602],[-10713354.079623999,4825626.4971958268],[-10713354.092963614,4825637.0264950423],[-10713354.637477022,4825894.528623444],[-10713355.180567686,4826151.0420100689],[-10713354.13390849,4826416.7620193819],[-10713353.101393571,4826679.1088824254],[-10713353.087548977,4826682.4674953725],[-10713352.032678735,4826948.1499753641],[-10713350.99643312,4827209.2914071623],[-10713350.979108913,4827213.7981319679],[-10713349.939855281,4827479.4422955429],[-10713348.914335877,4827741.2628913922],[-10713348.891490435,4827745.0734827155],[-10713347.848731879,4828010.7110911356],[-10713346.80487141,4828276.3355921488],[-10713346.341825973,4828539.1672621099],[-10713345.888488671,4828797.1619740622],[-10713345.873164121,4828801.5452040313],[-10713345.421511402,4829063.4346177028],[-10713344.982425358,4829318.381954887],[-10713344.96143871,4829324.8559072008],[-10713344.509665191,4829585.7966658426],[-10713344.348759688,4829678.9363310151],[-10713345.175795089,4829841.4971992606],[-10713345.193750577,4829846.2931287447],[-10713346.532483064,4830106.2882810049],[-10713347.870611349,4830365.7999275299],[-10713346.922808966,4830628.9561339729],[-10713345.975605467,4830891.871590456],[-10713345.038411599,4831154.5199713334],[-10713344.102717498,4831416.9058137126],[-10713343.156609349,4831679.0333947446],[-10713342.212401455,4831940.9007405862],[-10713341.278603874,4832202.5308843357],[-10713340.345405018,4832463.8982785437],[-10713339.319202142,4832725.8439397309],[-10713338.955650268,4832818.8058234798],[-10713339.086322913,4832988.0011211708],[-10713339.154902177,4833084.9601677721],[-10713339.06238774,4833250.3290637387],[-10713338.913708914,4833512.8516162988],[-10713338.779948732,4833775.5620216141],[-10713338.645388663,4834038.4252520595],[-10713338.503521405,4834301.475842027],[-10713338.362255594,4834564.6387674268],[-10713338.417317009,4834827.6679406529],[-10713338.471877702,4835090.6849036766],[-10713338.526638541,4835353.6960396664],[-10713338.583701771,4835616.6750297043],[-10713338.639263164,4835879.6476693694],[-10713338.696526421,4836142.6107008401],[-10713338.743777854,4836405.5559144458],[-10713338.791429639,4836668.4911271445],[-10713338.927381327,4836931.0514790537],[-10713339.064334806,4837193.7043637792],[-10713339.210799402,4837456.3716003839],[-10713339.355161725,4837719.0692190556],[-10713339.487510927,4837981.890662238],[-10713339.619760519,4838244.7883715276],[-10713339.758718433,4838507.7649596501],[-10713339.897076175,4838770.8206935581],[-10713339.941618253,4839032.9709011875],[-10713339.985460296,4839295.2361886408],[-10713339.982084179,4839299.0926302504],[-10713340.022294985,4839557.6183898356],[-10713340.064737372,4839820.1699128244],[-10713340.064076535,4839825.7086590948],[-10713340.108181993,4840082.8765630731],[-10713340.151627157,4840345.6650952334],[-10713340.142345931,4840349.766744229],[-10713340.195974305,4840608.5909168525],[-10713340.249532688,4840871.5956382584],[-10713339.982418083,4841134.5968747577],[-10713339.71690429,4841397.4593089232],[-10713339.455594392,4841660.193620109],[-10713339.19558515,4841922.8154429272],[-10713338.932567528,4842184.7687155856],[-10713338.669848716,4842446.5171444397],[-10713338.407537183,4842709.2166863149],[-10713338.145026615,4842972.0913582584],[-10713338.011866704,4843235.0040051863],[-10713337.878814459,4843498.9705214771],[-10713337.740651084,4843762.224900852],[-10713337.60218633,4844025.3441066006],[-10713337.473433521,4844288.5610285783],[-10713337.344080605,4844551.8679805612],[-10713337.210923996,4844815.2823143182],[-10713337.077567743,4845078.787997595],[-10713335.907806298,4845342.3393856753],[-10713334.736945566,4845606.1801141677],[-10713333.565986587,4845870.2910338249],[-10713332.393027119,4846134.6687751263],[-10713331.221863221,4846398.1547405226],[-10713330.053198474,4846661.1303801071],[-10713328.872824555,4846924.735159127],[-10713327.690950718,4847188.6054571075],[-10713327.796272341,4847452.22734953],[-10713327.901897127,4847716.2461374085],[-10713327.922282476,4847794.2120058443],[-10713328.513505174,4847979.5299250856],[-10713329.351273762,4848242.4631042462],[-10713330.199860586,4848506.185463327],[-10713331.050953534,4848770.3556457171],[-10713331.900438273,4849033.6503746305],[-10713332.748518215,4849296.5095222015],[-10713331.492447754,4849559.0260702707],[-10713330.259971153,4849816.890384106],[-10713330.242483342,4849821.4074593345],[-10713328.979402816,4850083.6830365174],[-10713327.742612587,4850340.3761711363],[-10713327.725431642,4850345.7973384503],[-10713326.472360328,4850607.759095001],[-10713325.237784714,4850866.1473776139],[-10713325.222091295,4850869.5972629078],[-10713323.965714082,4851131.2977391826],[-10713322.71083805,4851392.9313726956],[-10713323.471622201,4851656.6589863738],[-10713324.232908843,4851920.6544716954],[-10713324.992095098,4852184.9388616942],[-10713325.752785161,4852449.5130930729],[-10713326.508862875,4852713.1232116865],[-10713327.266242541,4852976.7959207511],[-10713328.022113197,4853239.4655230744],[-10713328.776277106,4853501.4782199739],[-10713328.620090049,4853764.6505092299],[-10713328.46380494,4854028.1181097571],[-10713328.460328989,4854032.0200777492],[-10713328.303817928,4854291.9263405995],[-10713328.145334644,4854556.0172700947],[-10713328.152387507,4854562.2205716316],[-10713327.997966414,4854820.4105021264],[-10713327.96750492,4854872.3592525767],[-10713325.610317882,4854935.7011428103],[-10713324.977657465,4855085.1546121351],[-10713324.944162549,4855091.2753476556],[-10713323.856961202,4855350.211527315],[-10713322.74097251,4855615.5712126167],[-10713320.514656847,4855792.7350935219],[-10713322.765718009,4855867.9769718591],[-10713323.227023635,4855877.5355847524],[-10713325.393467372,4855922.3541978011],[-10713324.408718921,4856102.6312339278],[-10713324.127023198,4856134.879076004],[-10713324.092214035,4856139.2342576152],[-10713321.766088689,4856400.6823421074],[-10713319.474073382,4856658.0252700169],[-10713319.490120748,4856662.0123551693],[-10713320.722834136,4856923.0771487271],[-10713321.94351227,4857181.1914637154],[-10713321.94673525,4857183.8627175093],[-10713323.187454097,4857444.395285476],[-10713324.428471141,4857704.6309580402],[-10713325.499614215,4857968.1670085452],[-10713326.570255524,4858231.5412022434],[-10713327.64900519,4858494.7674994748],[-10713328.72635226,4858757.8635186395],[-10713329.80339786,4859020.8058726368],[-10713330.877839008,4859283.5538020702],[-10713331.950276794,4859546.1603166834],[-10713333.022312997,4859808.6145649459],[-10713328.492326699,4860070.7998825489],[-10713323.952833107,4860333.5341707617],[-10713323.892288942,4860337.1912327856],[-10713323.587860821,4860354.736633149],[-10713323.380660394,4860596.7046314776],[-10713323.155494371,4860860.2692284118],[-10713323.14252333,4860866.3941764655],[-10713322.917916952,4861124.2669180417],[-10713322.688852394,4861388.6824515639],[-10713322.693389606,4861393.1209268542],[-10713322.471804706,4861653.5060651246],[-10713322.248452468,4861918.7260342482],[-10713321.197724542,4862182.2077581398],[-10713320.145898713,4862446.1705740262],[-10713319.095272548,4862709.9035487939],[-10713318.04434599,4862973.6422238639],[-10713316.992420444,4863237.6941550886],[-10713315.93699437,4863502.2506474797],[-10713314.879960336,4863765.9723542277],[-10713313.823624374,4864029.3242371688],[-10713313.463748693,4864285.6592863053],[-10713313.110541889,4864536.5938583491],[-10713313.10106723,4864541.65219949],[-10713312.749796521,4864797.3019049615],[-10713312.407393975,4865047.0955447685],[-10713312.407433946,4865052.6479711356],[-10713312.057359828,4865307.6452901941],[-10713311.713760655,4865558.117866653],[-10713311.702978257,4865562.3116081823],[-10713311.493018093,4865713.1224290403],[-10713311.675274562,4865816.6425876934],[-10713311.743130082,4865855.1038639657],[-10713316.002150238,4865905.3749826364],[-10713316.334323047,4865931.2530706329],[-10713316.01482849,4865942.0222634897],[-10713308.367552632,4866070.5440029278],[-10713048.068697788,4866070.5122644054],[-10712783.864195757,4866070.4730690615],[-10712519.669204785,4866070.4087815192],[-10712255.819115356,4866070.3359998781],[-10711992.806500958,4866070.2757659722],[-10711729.350570412,4866070.2080819532],[-10711465.978437416,4866070.1339943474],[-10711201.119373234,4866070.0535001224],[-10710939.455229754,4866071.1918143313],[-10710679.224755583,4866072.3171933144],[-10710418.823082235,4866073.4353842568],[-10710158.784031216,4866074.5440357924],[-10709898.311275406,4866075.6539935376],[-10709637.114476778,4866076.7592452541],[-10709376.150849737,4866077.839928099],[-10709112.577684682,4866078.9238732699],[-10708851.465983052,4866078.1909880592],[-10708588.243924309,4866077.445291304],[-10708324.701993037,4866076.6912298733],[-10708061.782185962,4866075.9319421342],[-10707798.622299265,4866075.1672957083],[-10707535.400840756,4866074.394154435],[-10707272.541804079,4866073.6129111992],[-10707008.773909133,4866072.8218645779],[-10706745.16950536,4866072.5190712959],[-10706482.228373762,4866072.2118358836],[-10706219.163498003,4866071.8830365874],[-10705956.420697166,4866071.5494024316],[-10705693.502892565,4866071.2296209466],[-10705430.610717736,4866070.9012140492],[-10705167.867516253,4866070.5495448476],[-10704904.945106056,4866070.1884657247],[-10704643.681626236,4866069.4282665616],[-10704382.699674074,4866068.662186983],[-10704121.655048821,4866067.8917945903],[-10703860.678502712,4866067.115259991],[-10703600.290541772,4866066.3418630948],[-10703339.454759311,4866065.5585330306],[-10703079.088723598,4866064.7545550941],[-10702816.493392248,4866063.9356743833],[-10702556.233681178,4866063.4874311648],[-10702293.676895626,4866063.0292511545],[-10702030.064280758,4866062.5734215053],[-10701766.292680699,4866062.1110571222],[-10701502.059543202,4866061.6382367611],[-10701236.677267706,4866061.1556125255],[-10700971.227913991,4866060.6570441667],[-10700702.47261118,4866060.1465767473],[-10700617.552641165,4866059.838509948],[-10700463.019022128,4866059.3606745396],[-10700220.310243199,4866058.6050858153],[-10699977.690467777,4866057.8432242367],[-10699736.242256247,4866057.0778363757],[-10699494.034159916,4866056.3123163823],[-10699252.850556254,4866055.5436618915],[-10699011.919946946,4866054.7508305358],[-10698773.616896721,4866053.962317029],[-10698513.333057765,4866053.846806895],[-10698251.333721463,4866053.7222759388],[-10697989.989147494,4866053.605587543],[-10697728.51782592,4866053.4832793018],[-10697467.091356456,4866053.3409757987],[-10697206.461914903,4866053.1944918046],[-10696945.54964399,4866053.0357225295],[-10696687.600723147,4866052.8710780134],[-10696424.713857399,4866053.6075214334],[-10696158.923911816,4866054.3446127521],[-10695893.465752488,4866055.0541295018],[-10695627.258821476,4866055.7597242221],[-10695361.871945402,4866056.4820487574],[-10695096.103525188,4866057.199275773],[-10694830.27373348,4866057.8881433159],[-10694563.413442083,4866058.5747872246],[-10694300.705479851,4866058.238669984],[-10694038.863025229,4866057.8975882577],[-10693776.901331626,4866057.5367723145],[-10693515.15178494,4866057.1708599264],[-10693253.273187907,4866056.7963218354],[-10692991.360250812,4866056.4161640741],[-10692729.597688802,4866056.0468537528],[-10692467.320026977,4866055.6678714836],[-10692209.676064972,4866056.1641198462],[-10691952.908823704,4866056.6505682915],[-10691696.885748878,4866057.1320520686],[-10691441.854228506,4866057.6062192321],[-10691187.873931974,4866058.0598703511],[-10690934.6532198,4866058.505943045],[-10690682.515668849,4866058.9637798397],[-10690430.544611759,4866059.4156053234],[-10690166.19593377,4866058.2475207066],[-10689902.301284187,4866057.0734253917],[-10689637.951304238,4866055.8870445574],[-10689373.443740593,4866054.6909925565],[-10689107.967548968,4866053.4827847322],[-10688842.476339644,4866052.2684346261],[-10688576.391038399,4866051.0429749368],[-10688311.468090266,4866049.8172562262],[-10688054.323691307,4866047.578716415],[-10687795.258755881,4866045.3190017678],[-10687536.009605581,4866043.0456955899],[-10687276.000570161,4866040.7584047159],[-10687016.069625253,4866038.4579149056],[-10686755.614870084,4866036.1439636219],[-10686701.935068997,4866035.6739044245],[-10686494.744770942,4866033.7220958462],[-10686233.124624889,4866031.2495547077],[-10685972.3093244,4866029.6207312504],[-10685710.882309539,4866027.9811966596],[-10685448.490267867,4866026.3376189908],[-10685185.258045068,4866024.6805876428],[-10684921.723268809,4866023.0116664246],[-10684656.768734768,4866021.3255064106],[-10684391.104371676,4866019.6141297184],[-10684122.544628019,4866017.8783386471],[-10683864.226961743,4866018.7888983171],[-10683602.794158807,4866019.7032739269],[-10683340.968497362,4866020.6234031981],[-10683079.479428897,4866021.5352964038],[-10682817.187022621,4866022.4423609236],[-10682554.667351063,4866023.3440692211],[-10682291.828606922,4866024.2247394556],[-10682028.914574932,4866025.1005749423],[-10681767.362225639,4866025.1011797162],[-10681506.113630917,4866025.0959009826],[-10681245.426992206,4866025.0856514415],[-10680985.218311446,4866025.0705624465],[-10680724.616171336,4866025.0544312205],[-10680464.874235416,4866025.0322811902],[-10680205.121686887,4866024.9846470254],[-10679947.996005045,4866024.9309793776],[-10679686.606049208,4866025.3899066588],[-10679423.509100558,4866025.8457116382],[-10679161.388892194,4866026.2951047979],[-10678899.35118014,4866026.7392697763],[-10678637.59890133,4866027.1812107097],[-10678377.035910904,4866027.6119025946],[-10678116.865078308,4866028.0390626583],[-10677859.451664815,4866028.4560061535],[-10677596.904654477,4866028.4587102346],[-10677332.427090261,4866028.454634564],[-10677068.385034245,4866028.4257244831],[-10676803.988163933,4866028.3891067402],[-10676541.753517913,4866028.3526017182],[-10676279.194192767,4866028.3082580892],[-10676017.535719283,4866028.2603783989],[-10675753.110515725,4866028.2067713942],[-10675489.143847955,4866028.2050438691],[-10675220.46858307,4866028.1960369153],[-10674950.57169202,4866028.189392495],[-10674680.656079037,4866028.1749069355],[-10674409.211080458,4866028.1486721216],[-10674137.198519196,4866028.1135552181],[-10673864.554120142,4866028.0631530238],[-10673591.548599437,4866028.0063500935],[-10673330.254837781,4866026.5113551738],[-10673068.506044669,4866025.0072160317],[-10672806.58304823,4866023.5225510942],[-10672786.359136708,4866023.4081054758],[-10672544.380824823,4866021.950980965],[-10672281.629660156,4866020.3543234505],[-10672018.92635115,4866018.7520461753],[-10671756.323559081,4866017.1232385729],[-10671493.636968957,4866015.4878974976],[-10671230.734839477,4866015.0956646185],[-10670968.05707182,4866014.6966340905],[-10670705.452990171,4866014.2998246578],[-10670442.969248878,4866013.8933433127],[-10670181.251301568,4866013.4865942318],[-10669919.908992711,4866013.0744838268],[-10669658.954936983,4866012.6533527169],[-10669398.384428943,4866012.2271215944],[-10669137.273190055,4866011.846374453],[-10668876.121403713,4866011.4580477457],[-10668614.932774229,4866011.0608345587],[-10668353.694186307,4866010.6569566894],[-10668092.413348937,4866010.2440617094],[-10667831.101875683,4866009.8241098188],[-10667569.738141494,4866009.4150054967],[-10667308.324749228,4866009.0001513157],[-10667044.342146723,4866007.5833325302],[-10666780.459060211,4866006.161416254],[-10666516.657268217,4866004.7167597348],[-10666252.964202955,4866003.2655680999],[-10665989.575993469,4866001.8154196199],[-10665726.144633377,4866000.3572997116],[-10665462.673126193,4865998.8910776563],[-10665199.099399447,4865997.4176687989],[-10664934.989461221,4865997.2613382358],[-10664671.081658876,4865997.0976874549],[-10664407.357871158,4865996.9165229583],[-10664143.824205307,4865996.7298679855],[-10663879.711062746,4865996.5264897607],[-10663615.951032326,4865996.3164435169],[-10663352.530298121,4865996.1168494876],[-10663089.450461812,4865995.9115023566],[-10662817.847493224,4865997.2795789549],[-10662544.754685447,4865998.6476681437],[-10662270.208781457,4866000.0226960899],[-10661994.197266566,4866001.3973443685],[-10661717.754448013,4866002.7484725863],[-10661439.974768877,4866004.1003962578],[-10661161.202931721,4866005.4644823829],[-10660880.381902387,4866006.8301540008],[-10660614.6295642,4866008.1131057339],[-10660347.383782601,4866009.3960700585],[-10660079.991730228,4866010.667535238],[-10659812.808421597,4866011.9318110179],[-10659544.166310066,4866013.2021107618],[-10659276.100471318,4866014.462734974],[-10659006.587543301,4866015.724678278],[-10658870.76748766,4866016.3570310688],[-10658731.47559429,4866016.7464315323],[-10658472.459883036,4866017.1088136807],[-10658211.690975456,4866017.4671601877],[-10657950.79081803,4866017.7989780502],[-10657689.223500846,4866018.1262277225],[-10657429.245693466,4866018.4588211672],[-10657169.132031234,4866018.7842278825],[-10656909.808768868,4866019.1085818391],[-10656652.296968862,4866019.4239018839],[-10656384.95886746,4866018.5598503985],[-10656117.642390825,4866017.6893954128],[-10655850.370164724,4866016.8131901678],[-10655583.13287854,4866015.9291437436],[-10655315.973781563,4866015.0418298403],[-10655048.826698413,4866014.1481125522],[-10654782.046933655,4866013.2479886562],[-10654514.563567908,4866012.3395075258],[-10654252.523907935,4866012.1593007846],[-10653988.696712652,4866011.972053105],[-10653724.364942828,4866011.7767074071],[-10653459.882601557,4866011.5761356438],[-10653194.977578858,4866011.3525667461],[-10652930.002476344,4866011.1220721211],[-10652664.712215157,4866010.9022968216],[-10652399.83662609,4866010.6744152401],[-10652134.014160182,4866010.5793208731],[-10651867.837691154,4866010.4759964226],[-10651602.031443689,4866010.3735834798],[-10651336.35143993,4866010.2635895731],[-10651070.922722103,4866010.1295469413],[-10650808.04140473,4866009.989600447],[-10650541.561189774,4866009.8601414803],[-10650266.353137253,4866009.7187380809],[-10650055.682763426,4866009.1105905324],[-10649845.253464164,4866008.4977362771],[-10649634.41449846,4866007.8695955388],[-10649423.414749784,4866007.2384506715],[-10649225.476973854,4866006.6469170619],[-10649029.436358145,4866006.0566734141],[-10648846.248176565,4866005.5059121596],[-10648680.625595577,4866005.0041309027],[-10648420.055616297,4866005.6254175073],[-10648158.333224731,4866006.2448847163],[-10647895.567044394,4866006.8413602076],[-10647632.291584011,4866007.4323512539],[-10647368.371689811,4866008.0347176986],[-10647103.361353863,4866008.6331731826],[-10646837.9266345,4866009.2205238985],[-10646570.107700301,4866009.8044980736],[-10646308.921295833,4866006.9864989053],[-10646046.20575081,4866004.1430314602],[-10645783.24262456,4866001.2979998961],[-10645520.687964063,4865998.4494380001],[-10645257.886222865,4865995.5897718649],[-10644995.005392255,4865992.7213523537],[-10644955.520132137,4865992.2763290145],[-10644732.330094773,4865989.5760079995],[-10644468.910750616,4865986.3814037368],[-10644204.505300891,4865986.1863268539],[-10643940.30948987,4865985.9847138412],[-10643676.64558454,4865985.7874087533],[-10643413.837053146,4865985.5831696223],[-10643151.760655355,4865985.3719975818],[-10642890.171812709,4865985.1531107193],[-10642629.472983487,4865984.936306878],[-10642368.513357345,4865984.7133632302],[-10642105.043172998,4865984.5416713962],[-10641840.972204618,4865984.361882519],[-10641576.490869015,4865984.1756937914],[-10641312.017742781,4865983.9837548826],[-10641047.140756665,4865983.7665972644],[-10640781.896152006,4865983.5421246318],[-10640516.542222986,4865983.3320285613],[-10640250.341029294,4865983.1130535835],[-10639986.965850474,4865982.0887656501],[-10639723.174397919,4865981.0572942486],[-10639458.677142,4865980.0276593333],[-10639193.732977469,4865978.9900571266],[-10638928.1409755,4865977.9314208515],[-10638661.834660465,4865976.8622060074],[-10638394.845067706,4865975.7880318118],[-10638127.048256101,4865974.7048481321],[-10637879.913374415,4865975.31960868],[-10637633.62775952,4865975.9266509069],[-10637388.07868306,4865976.5142141068],[-10637143.299983583,4865977.0939290328],[-10636899.513613826,4865977.6732427403],[-10636656.066530235,4865978.2474564807],[-10636413.60777176,4865978.7939557424],[-10636170.206540061,4865979.3358893683],[-10635912.626061521,4865978.3953226395],[-10635652.680089869,4865977.4381806841],[-10635392.143946493,4865976.4883629102],[-10635131.649851216,4865975.5316188764],[-10634871.434773838,4865974.5646792985],[-10634610.271016538,4865973.5889928546],[-10634349.512921337,4865972.5977516333],[-10634085.103969561,4865971.5862877062],[-10633828.423718389,4865971.4470788362],[-10633565.88749975,4865971.2985136956],[-10633302.795748632,4865971.1338793533],[-10633040.504208649,4865970.9634876829],[-10632776.873143554,4865970.7843523007],[-10632513.647640266,4865970.5973722031],[-10632250.254846543,4865970.4212405607],[-10632010.246077444,4865970.2554828096],[-10631754.371944718,4865968.8445703434],[-10631490.69502826,4865967.3831541399],[-10631228.047283942,4865965.9370195316],[-10631040.356584106,4865964.9000349147],[-10630963.498013722,4865964.5770703061],[-10630701.319713283,4865963.4557816163],[-10630438.312366161,4865962.3230989454],[-10630175.278989378,4865961.1840119911],[-10629909.908043217,4865960.026037598],[-10629648.293687757,4865957.8805879289],[-10629383.410299273,4865955.7013255656],[-10629118.409076357,4865953.5041562105],[-10628854.065905027,4865951.3046542155],[-10628590.022476126,4865949.091439453],[-10628325.807651605,4865946.8718164088],[-10628061.416525869,4865944.6554555967],[-10627796.853902981,4865942.4304621331],[-10627531.926463805,4865942.5668053962],[-10627266.669848226,4865942.6956889909],[-10627001.080452163,4865942.8063967237],[-10626814.811738228,4865942.8794514453],[-10626735.158576522,4865942.8091490557],[-10626467.81748035,4865942.631645266],[-10626199.705703067,4865942.4450995987],[-10625930.816737989,4865942.2446779674],[-10625661.159895983,4865942.0376993967],[-10625475.236476008,4865941.9585155947],[-10625411.88172669,4865941.9736386118],[-10625162.961967388,4865942.0302119423],[-10624914.418638056,4865942.1032628482],[-10624666.254041182,4865942.1686144145],[-10624419.175384251,4865942.2034173496],[-10624171.944953958,4865942.2327269772],[-10623924.587378513,4865942.2686978756],[-10623677.102657836,4865942.2983920723],[-10623414.407166835,4865942.3221493904],[-10623151.979281394,4865942.3391188979],[-10622889.79297187,4865942.3640673868],[-10622693.398394661,4865942.3773624897],[-10622627.880374668,4865942.34511331],[-10622364.842392057,4865942.2833916238],[-10622101.612590345,4865942.2146072239],[-10621838.102068072,4865942.1475134697],[-10621574.627086351,4865942.0746705737],[-10621312.199703006,4865942.3519674186],[-10621049.444243666,4865942.6219341084],[-10620786.677971199,4865942.9001324754],[-10620672.064185139,4865943.0188160464],[-10620523.793864496,4865942.9623052394],[-10620260.486674936,4865942.8443817617],[-10619997.486335808,4865942.7201944366],[-10619910.884939432,4865942.6640626434],[-10619734.507020978,4865942.4279469205],[-10619472.19436509,4865942.0714182975],[-10619210.644281738,4865942.0311730141],[-10619134.512441171,4865942.0199130643],[-10618947.659660447,4865942.0359722832],[-10618683.979344634,4865942.0309495814],[-10618419.354850555,4865942.0184499314],[-10618154.66438118,4865942.0140509121],[-10617889.369121106,4865942.0021849386],[-10617623.490194492,4865941.9884721674],[-10617357.027100723,4865941.9663782623],[-10617125.133085689,4865942.2454893086],[-10617096.4491293,4865942.2310529966],[-10616835.926518725,4865942.094914156],[-10616575.470984802,4865941.9671412185],[-10616315.083328359,4865941.8340121415],[-10616054.73531704,4865941.6755310772],[-10615794.446473248,4865941.5115629332],[-10615534.201079059,4865941.3434140943],[-10615273.993828386,4865941.1688627573],[-10615012.624738054,4865938.8336393619],[-10614751.383193333,4865936.4929314377],[-10614490.190304212,4865934.1618963005],[-10614406.313915167,4865933.4117693035],[-10614229.103146415,4865933.6096357834],[-10613968.172372291,4865933.9086704068],[-10613862.839285443,4865934.0260604201],[-10613707.377062723,4865935.8591919243],[-10613446.815226695,4865938.963681221],[-10613186.466534033,4865942.0583762778],[-10613186.471292472,4865934.2012516148],[-10613186.795844674,4865713.7847989909],[-10613187.130760036,4865485.2351182159],[-10613187.463463597,4865255.1396914711],[-10613187.788683532,4865029.2149752565],[-10613187.794358276,4865023.908551557],[-10613188.126176028,4864796.3653776422],[-10613188.451512136,4864573.1312439032],[-10613188.459400225,4864569.6349510085],[-10613188.794731483,4864343.6870322255],[-10613189.126863901,4864118.5484840982],[-10613189.385482861,4863855.0528534614],[-10613189.640026864,4863596.527819518],[-10613189.643002706,4863591.9222136075],[-10613189.903127441,4863329.1172092846],[-10613190.156481294,4863072.4776753187],[-10613190.157848155,4863066.6787073109],[-10613190.410569895,4862804.7992495243],[-10613190.659014905,4862547.632021415],[-10613190.660389399,4862543.1076386189],[-10613190.840428073,4862364.7937065205],[-10613189.460856823,4862281.9454360232],[-10613185.123945044,4862021.4260718562],[-10613185.619246563,4861760.0361043811],[-10613186.11834806,4861497.9230697239],[-10613186.124523122,4861492.5777775645],[-10613186.608334776,4861235.0857184399],[-10613187.102822283,4860971.528026999],[-10613187.054826362,4860964.6599769453],[-10613185.637468005,4860707.3872738816],[-10613184.178716911,4860442.5268105129],[-10613184.159167258,4860437.9614591571],[-10613182.721163623,4860177.0817455268],[-10613181.252493797,4859911.0026252996],[-10613180.458006633,4859647.0532223582],[-10613179.660713639,4859382.6743686069],[-10613178.867727911,4859118.6956480853],[-10613178.073541649,4858854.864983893],[-10613177.283357268,4858590.5932742944],[-10613176.49367281,4858326.221384271],[-10613175.701785123,4858061.7373080533],[-10613174.908094719,4857797.153720716],[-10613173.831488106,4857533.7314614449],[-10613172.758289535,4857271.012267936],[-10613171.679377424,4857007.12842701],[-10613170.597759014,4856742.7182350289],[-10613169.518345093,4856478.6451399308],[-10613168.439730572,4856214.3290435802],[-10613167.366020454,4855949.8203596184],[-10613166.290506987,4855685.10565635],[-10613165.94733136,4855420.6334041338],[-10613165.605657645,4855156.2021318208],[-10613165.255173611,4854891.7353387075],[-10613165.099893158,4854774.3272677474],[-10613164.654804178,4854627.2766200164],[-10613164.279751217,4854506.2838841444],[-10613164.22022314,4854362.6671272144],[-10613164.112313723,4854097.815113971],[-10613164.008512065,4853833.4815634275]]]},"attributes":{"objectid":120,"field_kid":"1028645850","approxacre":7295784,"field_name":"FOREST CITY COAL GAS AREA","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":3813.0799999999999,"maxoilwell":10,"lastoilpro":28.16,"lastoilwel":5,"lastodate":"11-2008","cumm_gas":2359863,"maxgaswell":327,"lastgaspro":25191,"lastgaswel":265,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1028645850}},{"geometry":{"rings":[[[-10561916.840443814,4754758.4571364587],[-10562179.859815612,4754764.8613997325],[-10562177.489884704,4755028.8351576691],[-10562175.148602797,4755289.6356851524],[-10562172.829348823,4755549.9505110113],[-10562170.52341765,4755808.8225984797],[-10561907.928480634,4755807.0574674346],[-10561645.109087376,4755805.2852290515],[-10561384.175645215,4755803.5084572528],[-10561124.396920014,4755801.7316798223],[-10561125.986374993,4755539.9568462092],[-10561127.585147262,4755276.8336476926],[-10561127.602985566,4755273.0492811762],[-10561129.180627048,4755011.3866552059],[-10561130.779709488,4754746.3038708447],[-10561137.10132229,4754746.3357588174],[-10561392.404518941,4754747.1774034305],[-10561463.634491134,4754747.4096482173],[-10561654.396427639,4754752.0416306993],[-10561658.85090958,4754752.1664530113],[-10561916.840443814,4754758.4571364587]]]},"attributes":{"objectid":208,"field_kid":"1000149598","approxacre":161,"field_name":"DELAWARE","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":23822,"maxgaswell":2,"lastgaspro":21,"lastgaswel":1,"lastgdate":"9-2008","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149598}},{"geometry":{"rings":[[[-10576696.586951731,4762276.3960685218],[-10576697.722162405,4762015.8435516749],[-10576437.343369259,4762015.7822331358],[-10576176.593753321,4762015.7134160614],[-10575916.315374693,4762015.6518381555],[-10575656.235422334,4762015.5835334985],[-10575395.374679705,4762015.5145879742],[-10575133.928570841,4762015.4378776196],[-10574871.610074528,4762015.3522119988],[-10574609.269953582,4762015.2599505344],[-10574611.064460894,4761751.2334676078],[-10574612.188018497,4761585.9720889414],[-10574613.319179492,4761491.8520488003],[-10574613.350824729,4761488.6764488211],[-10574616.549026927,4761226.5270383451],[-10574619.704971306,4760967.7801142363],[-10574619.833562572,4760709.819755096],[-10574619.963165235,4760448.3177902764],[-10574619.977492502,4760444.5315173361],[-10574620.092869934,4760186.1624879818],[-10574620.210765805,4759922.4095783485],[-10574879.252377607,4759922.8649569498],[-10575139.016613217,4759923.3158061588],[-10575399.489153808,4759923.7691666549],[-10575660.661563786,4759924.215881438],[-10575922.383599235,4759925.0410701549],[-10576184.629732188,4759925.8625048157],[-10576447.417582687,4759926.6909176745],[-10576710.666959373,4759927.5144132664],[-10576971.71832858,4759929.0867393911],[-10577233.528763194,4759930.6550512407],[-10577494.822108543,4759932.2097910726],[-10577756.024250071,4759933.7566446941],[-10578017.909970921,4759935.3151307246],[-10578279.573638797,4759936.8665074976],[-10578541.044386931,4759938.3988785958],[-10578802.31410607,4759939.921812728],[-10579061.747937024,4759939.5790016614],[-10579321.169253701,4759939.2288201647],[-10579580.610893482,4759938.891181116],[-10579840.024401188,4759938.5484992778],[-10580100.772727489,4759939.5336535657],[-10580361.827803563,4759940.5129868193],[-10580623.214758083,4759941.4647753453],[-10580884.928685401,4759942.4137166943],[-10580881.658713425,4760203.7476830408],[-10580878.389842529,4760465.037993961],[-10580875.113563541,4760726.0381688271],[-10580871.839487232,4760986.8330189558],[-10580610.735010592,4760986.18526664],[-10580353.286101611,4760985.5405891044],[-10580349.96020985,4760985.5448831571],[-10580089.485651543,4760984.8625978893],[-10579833.679715851,4760984.1857070904],[-10579831.798984773,4761244.9831967177],[-10579829.919054281,4761505.8628340801],[-10579828.034418067,4761766.838076002],[-10579826.147579031,4762027.8913406646],[-10579565.492271861,4762027.0467804521],[-10579304.511293435,4762026.1943336269],[-10579043.491570946,4762025.3254621141],[-10578782.348608023,4762024.4499958502],[-10578779.991589651,4762285.3798040897],[-10578777.634070333,4762546.3916462343],[-10578775.291667832,4762807.5029899776],[-10578772.947663149,4763068.6862924546],[-10578769.558668368,4763329.1128218062],[-10578766.175280577,4763589.1823428189],[-10578762.794096038,4763848.8384284852],[-10578759.415715149,4764108.1976001458],[-10578499.837549796,4764107.6066195574],[-10578242.195592871,4764107.012522487],[-10577983.124305777,4764106.4092499744],[-10577723.720339308,4764105.7978300909],[-10577464.293747105,4764105.1773553779],[-10577205.120944439,4764104.5500232363],[-10576946.180406706,4764103.9343322357],[-10576687.496762048,4764103.3120425195],[-10576688.918100782,4763842.3404944809],[-10576690.341442781,4763580.977818625],[-10576691.772995142,4763319.2165429639],[-10576693.204848876,4763057.0410476634],[-10576694.33054897,4762796.4737717975],[-10576695.45144112,4762536.7746370351],[-10576696.586951731,4762276.3960685218]]]},"attributes":{"objectid":308,"field_kid":"1000149605","approxacre":2387,"field_name":"FRED","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":13867.76,"maxoilwell":2,"lastoilpro":88.489999999999995,"lastoilwel":1,"lastodate":"8-1998","cumm_gas":784459,"maxgaswell":7,"lastgaspro":4987,"lastgaswel":1,"lastgdate":"10-2000","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149605}},{"geometry":{"rings":[[[-10572433.39300877,4772711.1188725522],[-10572434.419680296,4772448.613209161],[-10572173.126009148,4772449.4359303787],[-10571910.491611175,4772450.258400511],[-10571649.585181113,4772451.0816375325],[-10571389.404577699,4772451.8969729599],[-10571391.030303754,4772190.0427853242],[-10571392.650921833,4771929.0618912131],[-10571394.278345747,4771668.8639910901],[-10571395.902263688,4771409.4740087008],[-10571135.971114472,4771411.9153099526],[-10570876.0499768,4771414.3491034918],[-10570616.150063479,4771416.7572657624],[-10570356.280785186,4771419.1611565221],[-10570358.894107059,4771158.7175243348],[-10570361.510733625,4770897.9574053893],[-10570361.541175976,4770894.8592229439],[-10570364.14728382,4770636.8761641644],[-10570366.788940776,4770375.4764144439],[-10570366.814980643,4770371.3608638188],[-10570369.399765858,4770112.8283069776],[-10570370.882122371,4769964.4198464416],[-10570372.158559037,4769850.4184814924],[-10570372.423921229,4769826.2570373463],[-10570373.406032819,4769587.2079934329],[-10570374.480202653,4769326.6615210595],[-10570634.174338697,4769322.0557057746],[-10570894.707430713,4769317.427238347],[-10570941.421846485,4769316.599421964],[-10571155.052498354,4769316.87454593],[-10571415.745159701,4769317.204929146],[-10571530.135564553,4769317.3625743492],[-10571676.168514516,4769317.4373379601],[-10571936.721817618,4769317.5646516504],[-10572197.380540777,4769317.7007657513],[-10572458.145985521,4769317.8306667712],[-10572716.454628211,4769319.2309036441],[-10572974.689386686,4769320.6247991771],[-10573232.754652062,4769322.0008349512],[-10573490.665741764,4769323.3714358099],[-10573488.536692802,4769584.0096821403],[-10573486.412149888,4769844.3633250585],[-10573484.28360324,4770104.4591360083],[-10573482.158060912,4770364.2807855858],[-10573740.826188803,4770365.111615709],[-10573999.117887909,4770365.9354582587],[-10574256.853753895,4770366.747266084],[-10574514.65739706,4770367.553378202],[-10574513.141759377,4770475.8846988138],[-10574511.927943755,4770626.5805567242],[-10574509.841824068,4770885.3562837243],[-10574507.770722337,4771143.8766599288],[-10574506.592357157,4771291.1346995933],[-10574506.691251209,4771402.0211390462],[-10574501.298844364,4771633.6264277175],[-10574500.95746462,4771665.2872344507],[-10574498.088736046,4771930.3806724325],[-10574495.248245042,4772193.6456913231],[-10574492.415564837,4772456.30340946],[-10574489.586287063,4772719.5221196832],[-10574486.751902681,4772983.0702376431],[-10574484.192812959,4773218.4001924032],[-10574484.211056909,4773245.1664413819],[-10574484.383603703,4773506.3528675037],[-10574226.884984775,4773505.5764539968],[-10573975.341346888,4773504.8111410253],[-10573968.437785614,4773504.8062611269],[-10573710.18741061,4773504.0128901461],[-10573461.791657249,4773503.2427680828],[-10573451.763638146,4773503.2067016531],[-10573194.832765622,4773502.4126756443],[-10572944.385075616,4773501.6315598236],[-10572937.605455574,4773501.5896477923],[-10572680.638541996,4773500.7720566439],[-10572422.189340482,4773499.9423030363],[-10572426.42076234,4773236.9422755735],[-10572430.652384767,4772973.90057291],[-10572432.921249075,4772831.646557929],[-10572433.39300877,4772711.1188725522]]]},"attributes":{"objectid":331,"field_kid":"1000149596","approxacre":1897,"field_name":"CORRAL CREEK","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":830,"maxoilwell":2,"lastoilpro":180,"lastoilwel":2,"lastodate":"6-1992","cumm_gas":1474567,"maxgaswell":18,"lastgaspro":459,"lastgaswel":1,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149596}},{"geometry":{"rings":[[[-10599410.436680652,4844086.6400569808],[-10599662.222495455,4844087.6742602559],[-10599662.444216203,4844351.1058145296],[-10599662.665940249,4844615.037277136],[-10599662.896775011,4844879.031163102],[-10599663.12540843,4845143.2082399419],[-10599411.377073161,4845141.4939053962],[-10599159.376550894,4845139.7725231349],[-10598908.193658277,4845138.0317268698],[-10598657.428941116,4845136.2875488652],[-10598656.984425481,4844872.811520814],[-10598656.542418804,4844610.2361422805],[-10598656.099906521,4844346.941346311],[-10598655.658894675,4844083.4731724998],[-10598907.138561698,4844084.539447546],[-10599158.746374361,4844085.5997269461],[-10599410.436680652,4844086.6400569808]]]},"attributes":{"objectid":380,"field_kid":"1026052808","approxacre":153,"field_name":"STRIKER BRANCH","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1026052808}},{"geometry":{"rings":[[[-10585842.28287822,4749524.3601745991],[-10586099.250496076,4749525.0641263835],[-10586098.832158839,4749785.0489015635],[-10586098.416126695,4750044.7098004073],[-10586097.978272023,4750304.0670801671],[-10586097.542522075,4750563.1186502781],[-10585840.163605532,4750563.0326510835],[-10585582.613594193,4750562.9389023855],[-10585324.950153792,4750562.8308150386],[-10585067.156365005,4750562.7153653391],[-10585067.963468136,4750303.0534187648],[-10585068.771274546,4750043.0695171906],[-10585068.774805931,4750039.4887545006],[-10585069.575278902,4749782.789262617],[-10585070.388596017,4749522.2286953321],[-10585327.842767753,4749522.9432342127],[-10585585.143965384,4749523.6502826279],[-10585842.28287822,4749524.3601745991]]]},"attributes":{"objectid":434,"field_kid":"1000149609","approxacre":157,"field_name":"JARBALO","status":"Abandoned","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":182648.19,"maxoilwell":11,"lastoilpro":304.39999999999998,"lastoilwel":8,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149609}},{"geometry":{"rings":[[[-10584814.160882752,4747439.4710738156],[-10585075.335851509,4747438.5908182096],[-10585074.895760838,4747698.93977933],[-10585074.467131555,4747952.9663860919],[-10585074.466786718,4747958.7825833755],[-10585074.026103092,4748218.1281034388],[-10585073.585122429,4748477.0468229614],[-10584813.290021533,4748478.9652131014],[-10584553.798635798,4748480.8713250235],[-10584293.844222641,4748482.790358101],[-10584033.849563606,4748484.7035796791],[-10584033.624619473,4748224.8028271114],[-10584033.398978852,4747964.3558566077],[-10584033.167134749,4747703.4529868905],[-10584032.935494563,4747442.0831464482],[-10584292.960554102,4747441.2181419665],[-10584553.36614692,4747440.3439641353],[-10584814.160882752,4747439.4710738156]]]},"attributes":{"objectid":435,"field_kid":"1000149611","approxacre":159,"field_name":"JARBALO SOUTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":2886.8400000000001,"maxoilwell":2,"lastoilpro":51.439999999999998,"lastoilwel":2,"lastodate":"8-2008","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149611}},{"geometry":{"rings":[[[-10573543.897683064,4764362.8965470558],[-10573547.327916998,4764102.5098604802],[-10573288.289809113,4764103.1832697969],[-10573029.603902666,4764103.8495625192],[-10572770.707556391,4764104.5281455778],[-10572511.796993975,4764105.1993552884],[-10572511.736714561,4764109.1895822259],[-10572252.722232377,4764110.4114769083],[-10571993.158424243,4764111.6269067368],[-10571732.988625601,4764112.8316031303],[-10571472.228153883,4764114.0335863037],[-10571476.81795354,4763855.3883569194],[-10571481.40565078,4763596.8483369146],[-10571485.9890432,4763338.3703152938],[-10571490.57103404,4763079.9762760727],[-10571750.147883134,4763078.5075949142],[-10572009.155183179,4763077.0374942124],[-10572267.595336886,4763075.5773564484],[-10572525.464840282,4763074.1132122166],[-10572528.209671505,4762812.5309447097],[-10572530.956705844,4762550.7808616273],[-10572530.983847946,4762546.6260855831],[-10572533.684719102,4762288.8660801426],[-10572536.430152826,4762026.7810515212],[-10572795.710990593,4762025.3539262395],[-10573055.160420612,4762023.9190403493],[-10573314.786051579,4762022.471091154],[-10573574.577371495,4762021.0131827137],[-10573834.139329996,4762019.5749343075],[-10574093.100603916,4762018.1315159863],[-10574351.475809863,4762016.6985769393],[-10574609.269953582,4762015.2599505344],[-10574607.482061436,4762276.6806346923],[-10574605.695771931,4762537.8591247313],[-10574603.906179393,4762798.8202357581],[-10574602.117789241,4763059.4650011258],[-10574865.836256238,4763059.1451538522],[-10575128.889064591,4763058.8198775854],[-10575378.034021892,4763058.4848447042],[-10575391.267112525,4763058.4714328963],[-10575652.979871033,4763058.2136737807],[-10575650.178513801,4763319.796118523],[-10575647.378558472,4763581.197923881],[-10575644.587313252,4763842.4679724844],[-10575641.797970396,4764103.5983632589],[-10575378.721111678,4764104.1404667171],[-10575114.998865938,4764104.6784617314],[-10574850.563908076,4764105.1993851168],[-10574585.442167589,4764105.7133267978],[-10574581.363282844,4764361.1978788218],[-10574577.179559719,4764623.3194477148],[-10574577.121782616,4764627.228766853],[-10574572.986324297,4764886.0288387183],[-10574568.777369337,4765149.3799171457],[-10574309.632869145,4765148.942485204],[-10574051.204084529,4765148.4989688676],[-10573792.382151848,4765148.0673569823],[-10573533.548505826,4765147.6278534094],[-10573537.007777223,4764885.4632592732],[-10573540.460940257,4764623.8750900542],[-10573543.897683064,4764362.8965470558]]]},"attributes":{"objectid":458,"field_kid":"1000149612","approxacre":1108,"field_name":"KOCHANOWSKI","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":111825,"maxgaswell":2,"lastgaspro":2176,"lastgaswel":2,"lastgdate":"4-1999","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149612}},{"geometry":{"rings":[[[-10582582.587594701,4775598.9427068597],[-10582840.111489665,4775598.5122676678],[-10582839.433755858,4775858.2575379666],[-10582838.755921898,4776117.9977333071],[-10582838.077887639,4776377.7502087979],[-10582837.398852117,4776637.5482524643],[-10582579.232580787,4776637.9226332307],[-10582320.983214499,4776638.2915739464],[-10582061.70497266,4776638.6422512913],[-10581801.683681825,4776638.9881356964],[-10581803.184097908,4776379.5159429647],[-10581804.682310542,4776120.4699447118],[-10581806.170913778,4775860.5460590739],[-10581807.661820389,4775600.1845513713],[-10582066.355051255,4775599.7796257511],[-10582324.677558584,4775599.3683540821],[-10582582.587594701,4775598.9427068597]]]},"attributes":{"objectid":472,"field_kid":"1000149620","approxacre":157,"field_name":"LOWEMONT","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149620}},{"geometry":{"rings":[[[-10543293.380334638,4719612.0763831791],[-10543551.745302847,4719609.2640481265],[-10543552.62146494,4719871.6267635003],[-10543553.496727156,4720134.1817393787],[-10543554.359073116,4720396.4908055635],[-10543555.221518975,4720658.7610624088],[-10543297.041726379,4720661.4125673277],[-10543039.165381806,4720664.0547985118],[-10542780.877064331,4720666.7130030449],[-10542522.217320375,4720669.3682464371],[-10542521.306954231,4720406.8863357157],[-10542521.090746781,4720344.8925231649],[-10542520.734574245,4720144.1057095546],[-10542520.253901593,4719881.6849239152],[-10542520.201376323,4719853.2187943095],[-10542518.557732837,4719619.0470918315],[-10542582.83199086,4719619.131476677],[-10542776.696848411,4719617.2659952445],[-10543035.046901746,4719614.7728059618],[-10543145.989706986,4719613.6781512909],[-10543293.380334638,4719612.0763831791]]]},"attributes":{"objectid":479,"field_kid":"1000149140","approxacre":160,"field_name":"FOX RUN","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149140}},{"geometry":{"rings":[[[-10534901.236666165,4738378.8268168131],[-10535016.358725501,4738381.519040131],[-10535073.063622333,4738382.8448952241],[-10535133.521525063,4738386.2745986506],[-10535276.008302093,4738387.0855164481],[-10535282.321349557,4738387.1332503567],[-10535533.933604278,4738388.6126760431],[-10535793.667482769,4738390.1337692337],[-10535800.506734353,4738390.1612446234],[-10536055.226256313,4738391.638344476],[-10536318.571580838,4738393.1590467235],[-10536579.342447409,4738396.644769636],[-10536833.811479459,4738400.0396633465],[-10536838.86818458,4738400.119140544],[-10537097.181529943,4738403.5704175504],[-10537350.34596435,4738406.94608959],[-10537354.229422612,4738406.979633077],[-10537613.121732708,4738410.4106538901],[-10537867.812919918,4738413.7827135921],[-10537871.574137801,4738413.8503215713],[-10538117.26068766,4738417.0861360189],[-10538129.59885186,4738417.3321843063],[-10538387.230712935,4738422.4567502653],[-10538387.957090596,4738632.8604877377],[-10538388.630025657,4738827.8711476065],[-10538388.692880988,4738841.6919015115],[-10538389.390528642,4739049.6649995428],[-10538390.023024706,4739238.5860749194],[-10538390.088177679,4739256.5119661326],[-10538390.80975434,4739463.2397985933],[-10538391.267820552,4739594.3586659115],[-10538390.978616834,4739653.2420201739],[-10538390.906615617,4739668.4818769731],[-10538389.846751112,4739871.9384570159],[-10538388.790791832,4740074.7826477541],[-10538128.990027802,4740075.9670069003],[-10538015.185875049,4740076.4838656327],[-10537976.906829553,4740076.0637141857],[-10537903.743335636,4740075.2770933425],[-10537870.008005604,4740075.6059586937],[-10537610.78860735,4740078.1359502636],[-10537455.542876625,4740079.6494025001],[-10537448.951089408,4740339.6151194861],[-10537442.362405863,4740599.4681434939],[-10537441.217335304,4740644.9909876371],[-10537436.610583261,4740859.1404489158],[-10537431.027654668,4741118.696684774],[-10537430.892990835,4741126.2122035902],[-10537426.398719991,4741379.3202783559],[-10537421.749560563,4741641.1631029714],[-10537417.133941475,4741901.5020066649],[-10537412.530236907,4742161.1369071472],[-10537151.428975381,4742160.4830183247],[-10536947.004082078,4742159.9649881581],[-10536890.854518892,4742159.6448036777],[-10536654.116028497,4742158.2004065551],[-10536630.749001576,4742158.1680331863],[-10536371.055155525,4742157.7928252993],[-10536114.705749128,4742157.4186464045],[-10535857.931855394,4742157.036206916],[-10535600.93560642,4742156.6335022505],[-10535343.070359778,4742156.2227956429],[-10535084.556465235,4742158.3714741422],[-10534827.113800542,4742160.5041460525],[-10534570.241390551,4742162.6140997894],[-10534314.07469077,4742164.7112743026],[-10534055.475298027,4742166.8497572914],[-10533796.254291615,4742168.9872087464],[-10533631.600856353,4742170.3187141623],[-10533631.612262024,4742176.1331002861],[-10533536.418772642,4742176.6397124007],[-10533276.136148339,4742178.0219224282],[-10533274.067140058,4742438.0133205457],[-10533272.005040864,4742697.0942516755],[-10533269.948349053,4742955.2609022884],[-10533267.8978655,4743212.5347608645],[-10533265.847280314,4743470.9948514728],[-10533264.508627394,4743639.7099948423],[-10533264.496103156,4743725.5072408682],[-10533264.403970649,4743980.6795589849],[-10533264.324797528,4744201.100891537],[-10533216.802205324,4744225.9129656861],[-10533171.75104399,4744255.8229808249],[-10532981.591024466,4744254.0582961701],[-10532885.677808117,4744253.1678211447],[-10532719.563794067,4744252.6773890639],[-10532460.183201453,4744251.9275498409],[-10532211.29895962,4744251.2006807495],[-10531951.198840952,4744250.4347041445],[-10531692.059825731,4744249.6640788028],[-10531433.894428335,4744248.8809292484],[-10531176.708054967,4744248.0937764673],[-10531180.290006133,4743988.738500908],[-10531183.8630463,4743729.9558559787],[-10531187.439890111,4743471.7219148148],[-10531191.00962502,4743214.0406371281],[-10531194.616407095,4742952.8029333316],[-10531198.24661833,4742689.8189951414],[-10531201.887743855,4742425.47865956],[-10531205.565915382,4742158.4714906765],[-10531209.691893619,4741897.117287227],[-10531213.77922428,4741638.2068642508],[-10531217.850735202,4741380.4909003824],[-10531221.896113997,4741124.386703901],[-10531225.91836502,4740869.2017300567],[-10531229.929602508,4740614.6935352013],[-10531233.915109392,4740360.9828648893],[-10531237.895710057,4740107.7081811894],[-10531419.165416341,4740107.168013568],[-10531496.889046792,4740106.9324018676],[-10531755.954766646,4740106.1394584561],[-10532015.049319632,4740105.3222530754],[-10532168.055778392,4740104.8361914484],[-10532165.659601761,4739892.9424238242],[-10532163.262824407,4739681.0952969603],[-10532162.289018039,4739594.8855003137],[-10532161.223056745,4739469.3856551023],[-10532159.426568322,4739257.7351610465],[-10532157.609457297,4739045.263374445],[-10532156.804955635,4738951.0894597014],[-10532156.429375188,4738834.6701841615],[-10532155.780602457,4738624.5317096161],[-10532155.143437766,4738418.4796443796],[-10532417.882880716,4738409.1867374172],[-10532679.459288362,4738399.926743228],[-10532894.169089887,4738392.334155241],[-10532940.679885574,4738392.1539715128],[-10533201.641276486,4738391.1385679087],[-10533463.506404918,4738390.1121956529],[-10533631.858778121,4738389.448772083],[-10533724.866454042,4738388.6644082684],[-10533985.680076843,4738386.4359832564],[-10534245.903221747,4738384.2052368401],[-10534501.597967742,4738382.1221079277],[-10534758.305576533,4738380.0251718648],[-10534763.933037059,4738379.9646494985],[-10534901.236666165,4738378.8268168131]]]},"attributes":{"objectid":487,"field_kid":"1000152685","approxacre":4072,"field_name":"FAIRFAX","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000152685}},{"geometry":{"rings":[[[-10620467.885553759,4803284.1139701325],[-10620466.681663182,4803022.1807005517],[-10620368.428421417,4803022.0961007057],[-10620111.302726461,4803021.8711616416],[-10620112.573075889,4802761.1460780604],[-10620113.826346971,4802504.0011393633],[-10620113.850927994,4802499.9134070529],[-10620115.122567164,4802238.1795510687],[-10620116.368336288,4801981.6193936896],[-10620116.40311059,4801975.9366284451],[-10620374.680743603,4801977.2690220866],[-10620633.590098849,4801978.5955795785],[-10620893.118361607,4801979.9107170738],[-10621153.241404386,4801981.2232643636],[-10621413.96924861,4801983.4001226155],[-10621675.343932409,4801985.5769888684],[-10621937.292372234,4801987.7568489853],[-10622199.84630437,4801989.9373659482],[-10622196.262884401,4802249.8376020454],[-10622192.692069251,4802508.90256829],[-10622189.140565977,4802767.0777871637],[-10622185.598565865,4803024.5826649722],[-10622279.181265466,4803024.4973470466],[-10622539.794742849,4803024.2501295228],[-10622542.323028442,4803285.9403282283],[-10622544.853719302,4803547.860880075],[-10622547.388111761,4803809.5620386284],[-10622549.922503505,4804071.2109429948],[-10622289.268783601,4804071.0400459757],[-10622028.751019035,4804070.8597992454],[-10621767.820782883,4804070.6808464853],[-10621506.683409812,4804070.4948777864],[-10621248.788041148,4804070.1055548666],[-10620990.289082263,4804069.70778271],[-10620731.197245473,4804069.3068865426],[-10620471.492908305,4804068.899749022],[-10620470.289421627,4803807.2398588918],[-10620469.08663905,4803545.8747369004],[-10620467.885553759,4803284.1139701325]]]},"attributes":{"objectid":557,"field_kid":"1000146336","approxacre":629,"field_name":"FOREST GROVE","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":37800,"maxoilwell":3,"lastoilpro":2379,"lastoilwel":2,"lastodate":"0-1949","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":1296,"avgdepthsl":176,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146336}},{"geometry":{"rings":[[[-10549727.794967972,4733404.0365136964],[-10549728.250319833,4733149.9632829679],[-10549470.108879814,4733152.5011484502],[-10549211.178134974,4733155.0417296337],[-10548951.470399437,4733157.5863160575],[-10548690.949932214,4733160.1328446008],[-10548693.042195745,4732902.4324104264],[-10548695.079987453,4732651.5597754177],[-10548695.135060148,4732644.8191382419],[-10548697.217112452,4732387.2005608669],[-10548699.306074029,4732128.84165534],[-10548893.800171604,4732129.5991605613],[-10548958.1569949,4732128.6431767959],[-10549216.286794273,4732124.8047935329],[-10549234.174913632,4732124.560139765],[-10549299.254165767,4732123.6139501389],[-10549473.62668718,4732121.5327728447],[-10549730.11840727,4732118.4672116674],[-10549741.529797208,4732118.3381570298],[-10549985.107003573,4732115.4117229776],[-10550239.732684016,4732112.3475985117],[-10550250.900995171,4732112.2082300317],[-10550494.086352861,4732109.2830903418],[-10550747.808497699,4732106.2255519265],[-10550748.36102437,4732364.2241578223],[-10550748.914451817,4732622.3197415527],[-10550749.490804639,4732880.8516069409],[-10550749.827894229,4733031.9342086585],[-10550749.036474455,4733139.8657081928],[-10550751.823464889,4733397.0410138462],[-10550754.629973618,4733656.1033820156],[-10550756.601069367,4733841.3264015103],[-10550756.746390859,4733915.0910077784],[-10550757.261370454,4734174.731842583],[-10550501.175462764,4734174.5217806865],[-10550244.517198829,4734174.3046300355],[-10550237.5592214,4734174.2807009509],[-10549986.1266488,4734174.0698246202],[-10549726.393159008,4734173.8448332353],[-10549726.858929031,4733915.9648112841],[-10549727.31417671,4733664.2060056794],[-10549727.337011062,4733659.3739787508],[-10549727.794967972,4733404.0365136964]]]},"attributes":{"objectid":679,"field_kid":"1000152684","approxacre":467,"field_name":"EDWARDSVILLE NORTHEAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1514,"maxoilwell":3,"lastoilpro":131,"lastoilwel":3,"lastodate":"6-1992","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000152684}},{"geometry":{"rings":[[[-10579684.404923756,4781854.4328904338],[-10579690.946002597,4781854.5021145884],[-10579690.484881327,4782116.3973984253],[-10579690.022859206,4782378.2006299766],[-10579689.572350636,4782639.8258783901],[-10579689.123444367,4782901.2337308237],[-10579688.400424823,4783162.5441836296],[-10579687.67830671,4783423.6615792653],[-10579686.948380059,4783684.5833104765],[-10579686.218653964,4783945.3408586578],[-10579425.672566241,4783943.4420314543],[-10579165.600620965,4783941.5394486068],[-10578904.993563835,4783939.63504948],[-10578644.210105127,4783937.7242992716],[-10578643.23345452,4784198.0360291712],[-10578642.254098354,4784459.3312084898],[-10578641.278848216,4784720.0532440785],[-10578640.304799529,4784980.7198281167],[-10578639.335055808,4785241.3437899826],[-10578638.364711514,4785501.8911619289],[-10578637.378449036,4785762.4036816694],[-10578636.391886231,4786022.8827727167],[-10578376.242564838,4786021.7823678143],[-10578116.097047912,4786020.6737959273],[-10577855.959139802,4786019.5599092152],[-10577595.843657451,4786018.4394113375],[-10577335.67461394,4786017.3111350751],[-10577075.507672943,4786016.1752104023],[-10576815.313901367,4786015.0312482323],[-10576555.09259841,4786013.8809339153],[-10576556.135111522,4785753.311113595],[-10576557.105792442,4785510.808445408],[-10576557.169114189,4785492.9721952686],[-10576558.202916043,4785232.8222899055],[-10576559.028734736,4785025.1884797644],[-10576559.219297372,4784972.8635862982],[-10576560.254900008,4784713.1265316168],[-10576561.132311398,4784493.2684218511],[-10576561.280790897,4784453.5984054729],[-10576562.297270361,4784194.2829505438],[-10576563.312047243,4783935.1753545301],[-10576565.485957323,4783673.3207207406],[-10576567.662070984,4783411.0257659694],[-10576569.852298411,4783149.5301950034],[-10576572.038920397,4782888.453953702],[-10576574.218937632,4782626.3041686099],[-10576576.402158929,4782363.9502450814],[-10576578.576870892,4782101.3947907835],[-10576580.753585486,4781838.6553158676],[-10576840.662559945,4781839.405932541],[-10577100.333362166,4781840.1477366295],[-10577359.785013871,4781840.8891514139],[-10577619.01871646,4781841.6233087489],[-10577877.494252266,4781842.3416538322],[-10578136.078612583,4781843.0539089227],[-10578395.145925147,4781843.7691465672],[-10578653.586120756,4781844.4742742954],[-10578913.56497138,4781846.9870337574],[-10579168.325055268,4781849.4432749767],[-10579173.607294766,4781849.5093843369],[-10579432.609529188,4781852.0081473952],[-10579684.404923756,4781854.4328904338]]]},"attributes":{"objectid":758,"field_kid":"1000146337","approxacre":1581,"field_name":"OAK MILLS NORTH","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":351,"maxoilwell":2,"lastoilpro":49,"lastoilwel":2,"lastodate":"5-1993","cumm_gas":211538,"maxgaswell":5,"lastgaspro":50,"lastgaswel":1,"lastgdate":"10-1994","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000146337}},{"geometry":{"rings":[[[-10579446.83542113,4778720.0920258313],[-10579706.834569471,4778721.1914793951],[-10579704.508518003,4778982.8267032271],[-10579702.180964515,4779244.5170625253],[-10579699.841998199,4779506.0316891521],[-10579697.501630303,4779767.4593190914],[-10579690.840215988,4779767.4274303149],[-10579690.041715175,4780026.6368476637],[-10579689.24411523,4780285.8959689327],[-10579688.426690673,4780545.9918151805],[-10579687.605360176,4780806.7141515454],[-10579686.811359646,4781067.9759504013],[-10579686.016557137,4781329.6821409734],[-10579685.21104132,4781591.8361272374],[-10579684.404923756,4781854.4328904338],[-10579426.189488729,4781851.946310251],[-10579173.607294766,4781849.5093843369],[-10579168.325055268,4781849.4432749767],[-10578910.791300062,4781846.9609763734],[-10578653.586120756,4781844.4742742954],[-10578394.963316357,4781843.7682387866],[-10578136.078612583,4781843.0539089227],[-10577877.488145284,4781842.3426905135],[-10577619.01871646,4781841.6233087489],[-10577359.56396112,4781840.8892802028],[-10577100.333362166,4781840.1477366295],[-10576840.187917253,4781839.4035982173],[-10576580.753585486,4781838.6553158676],[-10576577.996020908,4781625.6660506483],[-10576578.224712867,4781578.4310646225],[-10576579.48527284,4781318.2463521035],[-10576579.491790205,4781314.6556570232],[-10576580.717500411,4781058.032744104],[-10576581.963644106,4780797.7127573555],[-10576581.970264968,4780792.8985471465],[-10576583.185360746,4780537.0474707279],[-10576584.420792388,4780276.5944413198],[-10576584.435726475,4780270.4336243868],[-10576585.649314672,4780016.6425811648],[-10576586.895158157,4779756.1529010143],[-10576846.172222987,4779757.4035533024],[-10577088.781235641,4779758.5664516091],[-10577099.877519567,4779758.4738430819],[-10577104.999774758,4779758.4127030084],[-10577332.998896163,4779756.3208594657],[-10577363.397843448,4779756.4795181314],[-10577614.876093835,4779757.7804213269],[-10577616.778446857,4779496.6158298803],[-10577618.674490074,4779236.3958704248],[-10577620.551112087,4778975.7408797843],[-10577622.426532511,4778715.1166158495],[-10577882.0559595,4778715.5425475175],[-10578142.395398006,4778715.9627805753],[-10578403.193360612,4778716.3717440022],[-10578664.47797947,4778716.7750083767],[-10578925.626441058,4778717.883272076],[-10579186.428606976,4778718.9837626778],[-10579446.83542113,4778720.0920258313]]]},"attributes":{"objectid":771,"field_kid":"1000149623","approxacre":1260,"field_name":"OAK MILLS","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":6897.6099999999997,"maxoilwell":4,"lastoilpro":153.22999999999999,"lastoilwel":2,"lastodate":"8-2008","cumm_gas":158691,"maxgaswell":5,"lastgaspro":920,"lastgaswel":3,"lastgdate":"12-1994","avgdepth":1375.66666667,"avgdepthsl":362.55555556000002,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149623}},{"geometry":{"rings":[[[-10575496.216765406,4701984.4322013594],[-10575496.250808489,4701949.5294938991],[-10575240.191571359,4701949.4395775348],[-10574985.085878439,4701949.3436098872],[-10574728.468946785,4701949.2309387717],[-10574471.178540284,4701949.1127438359],[-10574471.048919814,4701689.5583623126],[-10574470.920401838,4701430.227361762],[-10574470.791086044,4701171.4503757488],[-10574470.662770174,4700912.4628478438],[-10574472.422015177,4700651.5807598764],[-10574474.181459893,4700390.6080551455],[-10574475.932093451,4700129.4572016541],[-10574477.682425661,4699868.1324548684],[-10574734.489794085,4699868.5412370078],[-10574991.948812233,4699868.9468014073],[-10575250.064585868,4699869.3303809846],[-10575508.833511461,4699869.7062228918],[-10575755.657703733,4699869.8344364045],[-10576002.027376857,4699869.9549408713],[-10576247.894375758,4699870.055011061],[-10576493.286732545,4699870.1508429796],[-10576491.28463446,4700130.3403700134],[-10576489.286739977,4700390.2569636535],[-10576487.305062925,4700649.9241278553],[-10576485.324686257,4700909.3387583867],[-10576727.16751756,4700908.9687009156],[-10576973.441408187,4700908.5865249652],[-10576976.706836585,4700908.5809717728],[-10577219.783676935,4700908.2039628765],[-10577466.193422735,4700907.814072703],[-10577466.288649527,4701167.9218492312],[-10577466.381575549,4701428.4049938163],[-10577466.364993757,4701435.7333604284],[-10577466.44096504,4701689.2429653658],[-10577466.519978905,4701950.4786038715],[-10577220.32164135,4701950.1289284592],[-10576974.291395593,4701949.7725661704],[-10576728.148821644,4701949.4302186267],[-10576481.983221328,4701949.0818285756],[-10576482.065906828,4702209.6976644192],[-10576482.149898633,4702471.2252163552],[-10576482.22558126,4702732.817100306],[-10576482.30466987,4702994.811874643],[-10576236.400434691,4702993.7337960228],[-10575991.488631936,4702992.6527519859],[-10575746.537083618,4702991.561550403],[-10575500.270834718,4702990.4569871314],[-10575500.422145141,4702729.6935357573],[-10575500.572261104,4702470.1638867734],[-10575500.739368459,4702241.3082982618],[-10575500.184558727,4702209.8424429391],[-10575496.216765406,4701984.4322013594]]]},"attributes":{"objectid":774,"field_kid":"1000149148","approxacre":923,"field_name":"OLATHE","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":15931.41,"maxoilwell":2,"lastoilpro":70.569999999999993,"lastoilwel":1,"lastodate":"1-2008","cumm_gas":4254545,"maxgaswell":46,"lastgaspro":3361,"lastgaswel":38,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149148}},{"geometry":{"rings":[[[-10558997.07558939,4711509.7816084241],[-10558996.625489082,4711251.445069585],[-10558738.901262583,4711252.538558648],[-10558481.764511764,4711253.6235495862],[-10558224.443849292,4711254.6875665337],[-10557967.18776107,4711255.7447627895],[-10557966.274708075,4710995.4275233252],[-10557965.362355143,4710734.9990888294],[-10557964.437887589,4710474.4673171202],[-10557963.513119003,4710213.8337600352],[-10557962.891299475,4709953.3064812385],[-10557962.268978944,4709692.7170510646],[-10557961.631340407,4709432.073708768],[-10557960.994101988,4709171.3834058745],[-10558219.010883808,4709170.7436394515],[-10558477.210475873,4709170.0973099917],[-10558735.578661794,4709169.4373413427],[-10558994.112938726,4709168.77068114],[-10558993.714096373,4708910.338285733],[-10558993.315552782,4708651.6565766148],[-10558992.898285657,4708392.6558447769],[-10558992.481316971,4708133.3523238311],[-10559248.522737226,4708133.1440424249],[-10559504.938187687,4708132.9293257035],[-10559761.686621036,4708132.692221879],[-10560018.767937269,4708132.4491976742],[-10560275.547406361,4708132.2174967974],[-10560532.47654759,4708131.9792337865],[-10560789.557363197,4708131.7269471372],[-10561046.790353801,4708131.4656540602],[-10561046.809939962,4708125.4707395704],[-10561305.262536263,4708125.662786318],[-10561563.995154623,4708125.8478839081],[-10561823.039130982,4708126.0076356726],[-10562082.352016628,4708126.1612102399],[-10562341.098851256,4708126.3331857566],[-10562599.858800927,4708126.4984715506],[-10562858.617248699,4708126.6355838347],[-10563117.366585948,4708126.7669071089],[-10563117.334774418,4708130.9398035957],[-10563376.986553378,4708131.6836040318],[-10563636.573657895,4708132.4203294227],[-10563896.084474586,4708133.1471496485],[-10564155.530116241,4708133.8653510744],[-10564415.079977917,4708134.6081230715],[-10564675.009976804,4708135.3440737305],[-10564935.210686933,4708136.0550648263],[-10565195.741977276,4708136.7605214464],[-10565194.192334633,4708395.8855221868],[-10565192.639991373,4708655.4333269848],[-10565191.102067042,4708915.3770790929],[-10565189.559840322,4709175.7552783294],[-10565188.996544002,4709436.8735239422],[-10565188.431645364,4709697.9169106279],[-10565188.416656772,4709702.7377699893],[-10565187.87205225,4709958.8678049557],[-10565187.317264168,4710219.7416405901],[-10565187.320312938,4710227.3598347995],[-10565186.76718762,4710481.6487563616],[-10565186.197390411,4710743.9027286014],[-10565186.19041634,4710749.6168618202],[-10565185.633001681,4711006.5409020409],[-10565185.064810738,4711269.5486364709],[-10564925.479525005,4711267.5167479934],[-10564665.803434748,4711265.4776540948],[-10564656.038502712,4711265.3994977009],[-10564406.018519215,4711263.4242772078],[-10564146.139995931,4711261.3639522931],[-10564133.106604287,4711261.2455455745],[-10563886.161858033,4711259.3015694916],[-10563626.071190728,4711257.2488393029],[-10563616.265011227,4711257.1686243294],[-10563365.882210173,4711255.172303305],[-10563105.601724304,4711253.0917790467],[-10563109.943767712,4711511.1573562883],[-10563114.309946924,4711770.5817930633],[-10563114.361424146,4711773.5826409264],[-10563118.707675047,4712032.1255274508],[-10563123.101397624,4712293.5328879803],[-10563127.484797932,4712553.2246874068],[-10563131.867897443,4712812.860580706],[-10563136.241785198,4713072.3198348535],[-10563140.614771012,4713331.6470994353],[-10562882.195143918,4713329.9638300538],[-10562623.198052583,4713328.2703977581],[-10562615.326799294,4713328.2210437208],[-10562363.609080449,4713326.5732382946],[-10562103.439640593,4713324.8619258739],[-10562092.824431254,4713324.7907156898],[-10561841.706902632,4713323.1381426873],[-10561579.969058735,4713321.4092111811],[-10561573.993385801,4713321.3902160022],[-10561463.923886711,4713320.6498330906],[-10561317.337388601,4713319.977870103],[-10561056.385151418,4713318.7774232049],[-10560802.462805795,4713318.6102126464],[-10560545.918744789,4713318.4323427575],[-10560290.326278102,4713318.2319396185],[-10560034.485425694,4713318.0247169789],[-10559936.177457957,4713317.9518566569],[-10559777.646627489,4713318.1426299857],[-10559520.878411591,4713318.44318478],[-10559262.199097598,4713318.7319154339],[-10559002.301282138,4713319.0137067195],[-10559001.473447435,4713060.6298296088],[-10559000.644809889,4712801.9417072069],[-10558999.835695812,4712543.4277487136],[-10558999.027282638,4712284.9372344138],[-10558998.202651251,4712026.5276895585],[-10558997.708433831,4711871.6114462567],[-10558997.525289251,4711768.1267812969],[-10558997.07558939,4711509.7816084241]]]},"attributes":{"objectid":775,"field_kid":"1000149149","approxacre":4438,"field_name":"OLATHE NORTH","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":51,"maxoilwell":1,"lastoilpro":51,"lastoilwel":1,"lastodate":"2-1983","cumm_gas":77930,"maxgaswell":4,"lastgaspro":86,"lastgaswel":4,"lastgdate":"5-1996","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149149}},{"geometry":{"rings":[[[-10548740.392643556,4716479.9080453049],[-10548739.747728651,4716219.6757954499],[-10548739.104314514,4715959.3022927968],[-10548738.452790061,4715698.7839434324],[-10548737.799662745,4715438.1147076227],[-10548477.805351675,4715438.2133424673],[-10548218.378993744,4715438.3038613573],[-10547958.625759957,4715438.4064848442],[-10547698.836184336,4715438.502028035],[-10547548.445224591,4715438.5657646433],[-10547439.036736438,4715438.9964204011],[-10547255.45807831,4715439.7159386501],[-10547178.587211771,4715440.2661470892],[-10547147.403545795,4715440.4780947538],[-10547084.780008467,4715439.1058200505],[-10546990.028624849,4715438.3560439097],[-10546918.300554296,4715438.4767710408],[-10546807.603487151,4715438.6657834724],[-10546658.012109239,4715438.9474128224],[-10546658.588518934,4715178.7946962724],[-10546658.619265525,4715164.8264674628],[-10546657.037793033,4714919.2952779066],[-10546656.025853081,4714765.0181977171],[-10546656.815441616,4714730.8282776708],[-10546656.774242774,4714659.6911442699],[-10546656.630707407,4714412.2585326703],[-10546656.568960138,4714400.2151704766],[-10546655.273831425,4714141.3398894761],[-10546654.826550031,4714051.7965853568],[-10546653.948955443,4713911.8895866899],[-10546653.840242099,4713882.1688512107],[-10546653.019577006,4713657.8581425315],[-10546652.718211152,4713623.1618520357],[-10546650.46267431,4713363.1903260825],[-10546909.890683567,4713366.2572290581],[-10546921.298365777,4713366.3913336154],[-10547169.965609964,4713365.4438218577],[-10547430.43309103,4713365.338850311],[-10547548.208245127,4713365.2878604243],[-10547691.281694571,4713364.6992445206],[-10547951.659056,4713363.6238007741],[-10548212.327652346,4713362.5381862922],[-10548473.005459372,4713361.4633838357],[-10548734.219783425,4713360.3803391103],[-10548734.254045365,4713099.5751416739],[-10548734.286902772,4712838.3234721096],[-10548734.338981289,4712576.9231831683],[-10548734.391859123,4712315.2805931056],[-10548992.803978506,4712315.776110258],[-10549251.104068987,4712316.2649360066],[-10549509.323066084,4712316.7379323924],[-10549767.452460095,4712317.2069398668],[-10549767.668680549,4712578.3604531782],[-10549767.883297451,4712839.2537500327],[-10549768.077889046,4713099.7994168429],[-10549768.272580251,4713360.2724860562],[-10550026.163489595,4713360.3798081093],[-10550284.217786834,4713360.4827524237],[-10550542.440778118,4713360.5899427328],[-10550800.847280426,4713360.6910818564],[-10550891.645211067,4713360.8499901257],[-10551052.549061934,4713359.3028173633],[-10551304.185261456,4713356.878416107],[-10551555.742069798,4713354.469719342],[-10551807.196360234,4713352.0553609645],[-10551811.07341902,4713352.0008803122],[-10552059.377085865,4713349.5866800621],[-10552312.227681987,4713347.1217265921],[-10552564.205174087,4713344.6762174927],[-10552815.804130848,4713342.2292968165],[-10553075.130675245,4713339.7575940434],[-10553334.480346231,4713337.2784265969],[-10553593.836624693,4713334.7736461796],[-10553853.199110294,4713332.2620448153],[-10553853.421800202,4713592.4734013034],[-10553853.644892856,4713853.056220226],[-10553853.882103922,4714113.9918654216],[-10553854.119717723,4714375.2968412163],[-10553854.179730272,4714637.0878062956],[-10553854.238044702,4714899.4967473187],[-10553854.29155569,4715162.2442273879],[-10553854.342771804,4715426.2360800216],[-10553854.094322328,4715686.8962610671],[-10553853.846667053,4715946.4927496649],[-10553853.592903653,4716205.9201399218],[-10553853.339537656,4716464.8676112564],[-10553594.111624787,4716466.3742054692],[-10553334.860485191,4716467.8739764169],[-10553075.835405497,4716469.3579090303],[-10552816.947984092,4716470.8347593071],[-10552816.967776664,4716466.0483963173],[-10552564.73540633,4716467.1326161092],[-10552312.734502161,4716468.2083362406],[-10552061.93558033,4716469.2835299345],[-10551811.894530028,4716470.3482875749],[-10551562.230514957,4716471.6661687251],[-10551313.699502824,4716472.9718077295],[-10551064.884363919,4716474.2708834186],[-10550816.31250475,4716475.5615881318],[-10550557.788996123,4716476.115411127],[-10550298.827984324,4716476.664088347],[-10550039.798994344,4716477.2110925289],[-10549780.575380502,4716477.7512748074],[-10549520.969927583,4716478.2971259756],[-10549260.827757386,4716478.8375748284],[-10549000.698301801,4716479.3757061027],[-10548740.392643556,4716479.9080453049]]]},"attributes":{"objectid":776,"field_kid":"1000149150","approxacre":3153,"field_name":"OLATHE NORTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":137868.92000000001,"maxoilwell":17,"lastoilpro":86.400000000000006,"lastoilwel":1,"lastodate":"9-2008","cumm_gas":491035,"maxgaswell":4,"lastgaspro":709,"lastgaswel":2,"lastgdate":"4-1987","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149150}},{"geometry":{"rings":[[[-10532138.938009955,4709203.4795137653],[-10532140.221722448,4708941.5431327652],[-10532141.503633779,4708679.8373657158],[-10532142.788048966,4708418.380463047],[-10532144.07266527,4708157.1523365024],[-10532145.347367886,4707895.4249734785],[-10532146.620870203,4707633.9676821139],[-10532147.894573923,4707372.8010233995],[-10532149.166076189,4707111.9032357121],[-10532150.017704541,4706852.6581056612],[-10532150.868133159,4706593.803415644],[-10532151.712055758,4706335.2928311117],[-10532152.5540777,4706077.1458760323],[-10532153.387196459,4705820.6040667966],[-10532154.218212802,4705564.078767552],[-10532155.070353337,4705307.5712630423],[-10532155.922393743,4705051.0794941392],[-10532415.534103679,4705050.2113121068],[-10532674.904236771,4705049.3359283358],[-10532934.040902311,4705048.4539858568],[-10533192.957415566,4705047.5681854337],[-10533451.455849772,4705046.6764694918],[-10533632.892802775,4705046.0469179284],[-10533709.877992131,4705044.8373013269],[-10533906.436256832,4705041.7729387563],[-10533967.88895189,4705040.5526607456],[-10534225.569829261,4705035.4277009256],[-10534485.035672488,4705034.8070900822],[-10534744.406006219,4705034.1795345629],[-10535003.846119726,4705033.5257431231],[-10535263.283229716,4705032.8666788349],[-10535522.713934761,4705032.7066115262],[-10535782.24125044,4705032.5404996043],[-10535817.381707538,4705032.5237524332],[-10536041.812915264,4705032.0405227235],[-10536301.590415535,4705031.4748273129],[-10536301.460159291,4705291.1820817729],[-10536301.348460075,4705517.9078214308],[-10536301.341515681,4705550.7622163603],[-10536301.431410182,4705810.1878257887],[-10536301.519602062,4706069.4846225884],[-10536301.584465886,4706328.5199858118],[-10536301.647026582,4706587.4622684531],[-10536301.671473792,4706611.4077808922],[-10536301.978896914,4706846.6224915646],[-10536302.317170899,4707105.0422225166],[-10536300.640954211,4707367.0346046099],[-10536298.955334984,4707630.7117294474],[-10536298.112725029,4707762.4469865793],[-10536297.219746849,4707892.0803712504],[-10536295.425886925,4708152.4721050858],[-10536295.381456764,4708156.6434834516],[-10536293.592193943,4708415.4267964717],[-10536291.764013391,4708679.6434416687],[-10536289.946233021,4708941.532223735],[-10536288.138756316,4709201.8178344695],[-10536547.005864028,4709202.6606782237],[-10536806.058384275,4709203.4968315056],[-10536829.626397455,4709203.5826236103],[-10537065.020494869,4709203.1351578413],[-10537323.916128542,4709202.635560479],[-10537540.183203418,4709202.2238820428],[-10537582.640065284,4709202.116149649],[-10537841.664645856,4709201.4576568464],[-10538101.124024604,4709200.7749755317],[-10538360.266840447,4709200.0859902576],[-10538619.889909746,4709199.9763614563],[-10538879.831744365,4709199.8606852945],[-10539139.267498784,4709199.7195349522],[-10539398.509431012,4709199.5718231332],[-10539512.12505254,4709199.5199846234],[-10539658.106268721,4709199.1863469221],[-10539917.617907574,4709198.5862656422],[-10540177.361211995,4709197.9999508187],[-10540185.914014777,4709197.9811576186],[-10540436.31941193,4709196.5835215123],[-10540697.059948048,4709193.9879205609],[-10540883.116087845,4709192.1301342444],[-10540958.603906773,4709191.7369998833],[-10540962.640233032,4709191.7339078831],[-10541219.961257173,4709190.5010792101],[-10541481.519437525,4709189.2398124859],[-10541486.888591249,4709189.207255953],[-10541535.734074676,4709188.9783194093],[-10541700.838711897,4709189.1429628339],[-10541741.780238058,4709189.2552408725],[-10541849.547257962,4709189.5500186933],[-10542003.069319636,4709189.6997494828],[-10542010.213908458,4709189.6978122294],[-10542211.035282871,4709189.8757995032],[-10542265.448145999,4709189.4063915787],[-10542528.73099702,4709187.134241485],[-10542525.323002618,4709447.6405427512],[-10542521.892092014,4709709.9288701452],[-10542518.74117252,4709949.8865055367],[-10542518.445756648,4709971.0441986546],[-10542514.798990374,4710232.0091330642],[-10542512.578066295,4710390.9159351727],[-10542510.85057294,4710492.0992129752],[-10542507.898691896,4710664.9975859784],[-10542506.635051234,4710752.5742755961],[-10542506.36295207,4710772.017820958],[-10542510.583990596,4711013.3348690653],[-10542515.131412372,4711273.4134302465],[-10542515.387235254,4711537.1183174374],[-10542515.642454803,4711800.3715220848],[-10542515.884157203,4712063.342888494],[-10542516.127058756,4712325.9359986791],[-10542516.137725933,4712352.6499948846],[-10542515.286417391,4712588.4427234009],[-10542514.339953424,4712850.7499219049],[-10542513.382575687,4713112.8595093573],[-10542512.426197642,4713374.7349159978],[-10542250.225034196,4713375.8900602944],[-10541987.162883349,4713377.0412157346],[-10541725.738310207,4713378.1850326303],[-10541614.548309628,4713378.6693916013],[-10541465.125068024,4713379.4468786456],[-10541464.625066178,4713639.4427108243],[-10541464.124963479,4713899.3206041502],[-10541463.615851572,4714159.4107243288],[-10541463.108142136,4714419.6650728146],[-10541203.156723648,4714421.0602941466],[-10540943.988102769,4714422.4452165635],[-10540684.639074834,4714423.8203562377],[-10540424.708179468,4714425.1917638388],[-10540424.701095073,4714429.4896833608],[-10540424.604714781,4714507.4145701174],[-10540424.621537594,4714689.1747794189],[-10540424.646681961,4714945.5631030453],[-10540424.658010397,4714948.3611162389],[-10540424.637359606,4715124.5813754424],[-10540424.828333128,4715206.9025398623],[-10540425.426544726,4715465.1011526044],[-10540164.031129744,4715465.7692843154],[-10539942.295303397,4715466.3310226239],[-10539903.034071876,4715466.4837618172],[-10539642.072056659,4715467.6592561267],[-10539577.434519406,4715467.947850571],[-10539381.298656628,4715468.6375211254],[-10539120.886070063,4715469.5552781001],[-10539059.103106571,4715469.7724181488],[-10538860.700644471,4715470.5644400669],[-10538600.746684538,4715471.618403269],[-10538341.064035682,4715472.6642556386],[-10538190.70758881,4715474.7773393486],[-10538083.924912291,4715475.2709457139],[-10537862.638903836,4715476.2925426764],[-10537827.421109548,4715476.3549011555],[-10537570.062623441,4715476.8601724487],[-10537428.060849618,4715477.1343259765],[-10537312.309089156,4715478.3389748847],[-10537106.261564519,4715480.4544538204],[-10537054.085219983,4715480.7413579682],[-10536795.145124186,4715482.1613285728],[-10536536.524594862,4715483.5874784915],[-10536497.885076582,4715483.8000812018],[-10536277.834183093,4715484.5720508136],[-10536016.99691008,4715485.8138486017],[-10535762.134389834,4715487.0215222733],[-10535756.72268277,4715487.0490800701],[-10535652.991505936,4715487.5361172361],[-10535496.96674799,4715487.9018245619],[-10535243.927916363,4715488.4909004383],[-10535237.709784165,4715488.4860168761],[-10534979.052007757,4715489.1093453635],[-10534831.591172466,4715489.4626819557],[-10534724.917620232,4715489.8624376021],[-10534720.798095146,4715489.8608983941],[-10534462.822202194,4715490.7871513069],[-10534205.199914735,4715491.7059369162],[-10533947.578016412,4715490.2127783457],[-10533879.441862669,4715489.8167390628],[-10533689.689209914,4715488.2578299819],[-10533686.175980166,4715488.2391675143],[-10533632.964845238,4715487.8104078183],[-10533431.775785182,4715488.4524533143],[-10533173.79849002,4715489.2690196745],[-10533168.751401031,4715489.2692840956],[-10532915.50282963,4715490.0844278941],[-10532657.075117759,4715490.9096206222],[-10532653.399602022,4715490.9237870742],[-10532398.507845657,4715491.7106105052],[-10532139.826542664,4715492.5029750532],[-10532138.024118137,4715230.770240793],[-10532136.218187105,4714968.4528576927],[-10532134.424467523,4714705.5376117881],[-10532132.625839824,4714442.0369072538],[-10532130.818302579,4714178.6684224205],[-10532129.011565736,4713915.1602901593],[-10532127.214639772,4713651.5448291507],[-10532125.417613328,4713387.8265526174],[-10532126.160306999,4713125.867255643],[-10532126.902399274,4712863.7643912677],[-10532127.636581734,4712601.5125649851],[-10532128.372064987,4712339.1204111455],[-10532129.116860641,4712077.1356737614],[-10532129.861955833,4711814.9896250665],[-10532130.597739683,4711552.7100745104],[-10532131.335424956,4711290.2772146147],[-10532132.297371166,4711028.7322344733],[-10532133.257616604,4710767.4756736327],[-10532134.198941404,4710506.4783001235],[-10532135.140067073,4710245.7511597481],[-10532136.087801114,4709985.2242350075],[-10532137.035635019,4709724.6637226297],[-10532137.987873768,4709464.0779882483],[-10532138.938009955,4709203.4795137653]]]},"attributes":{"objectid":800,"field_kid":"1000149135","approxacre":11698,"field_name":"DALLAS","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":220,"maxoilwell":1,"lastoilpro":72,"lastoilwel":1,"lastodate":"9-1983","cumm_gas":46027,"maxgaswell":1,"lastgaspro":253,"lastgaswel":1,"lastgdate":"12-1987","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149135}},{"geometry":{"rings":[[[-10545663.544979073,4632540.5105823986],[-10545661.623113377,4632457.3801980307],[-10545592.48415821,4632460.6040852666],[-10545403.829384318,4632461.3580756579],[-10545147.163639113,4632462.3788181804],[-10544889.654431807,4632463.404280575],[-10544631.894638613,4632464.4248891138],[-10544375.043081239,4632465.4262209041],[-10544118.147073086,4632466.4211676763],[-10543861.786275318,4632467.4171389667],[-10543605.762962392,4632468.406344316],[-10543348.912204601,4632467.54653301],[-10543091.717554631,4632466.6789306235],[-10543088.473154146,4632466.6738045262],[-10542834.181415226,4632465.8030263931],[-10542576.312296089,4632464.9135849159],[-10542571.50681507,4632464.8862312306],[-10542317.859811643,4632464.0181387262],[-10542058.943898691,4632463.1249886416],[-10542054.57751851,4632463.1138545964],[-10541799.58888497,4632462.2290270152],[-10541539.812590813,4632461.3197830543],[-10541286.093004584,4632459.4346081922],[-10541032.574047312,4632457.5436888849],[-10540778.790488373,4632455.6393608386],[-10540524.934246669,4632453.7259667646],[-10540271.871610265,4632451.8013407513],[-10540019.060360722,4632449.8723752256],[-10539766.50600432,4632447.9550319379],[-10539514.225560471,4632446.0344984997],[-10539256.018557094,4632444.7873890428],[-10538999.283432586,4632443.5402882453],[-10538742.197107596,4632442.3023797423],[-10538485.339944072,4632441.0600036001],[-10538228.63275169,4632439.8163517127],[-10537971.719424292,4632438.5656758454],[-10537715.821755409,4632437.2998105148],[-10537679.725985713,4632437.1193035981],[-10537460.672839619,4632439.808699958],[-10537459.284425108,4632181.4190635886],[-10537457.894008599,4631922.3401579075],[-10537456.507997042,4631663.9123335378],[-10537455.12488885,4631405.6622286653],[-10537453.73166943,4631146.6751477486],[-10537452.335847192,4630887.4826546544],[-10537450.957545085,4630628.1293221461],[-10537449.577240849,4630368.6055871081],[-10537451.39267984,4630112.0068357456],[-10537453.208619324,4629855.2369130952],[-10537455.040176539,4629598.2801300054],[-10537456.871333214,4629341.1296069268],[-10537458.694781005,4629083.8442058004],[-10537460.519630319,4628826.3648353498],[-10537462.319250794,4628568.6991686635],[-10537464.119371757,4628310.8209254481],[-10537208.898422834,4628309.98017033],[-10536952.996297441,4628309.1318815211],[-10536697.907399191,4628308.261131444],[-10536443.154383905,4628307.3865537886],[-10536189.636076229,4628306.5220655231],[-10535935.113824133,4628305.6474892935],[-10535681.350737549,4628304.7602800429],[-10535427.634103984,4628303.8656679625],[-10535428.341452677,4628046.5388550116],[-10535429.043794814,4627790.6681695785],[-10535429.766361263,4627532.4279708872],[-10535430.473106418,4627279.9904198777],[-10535430.425556021,4627273.1147683915],[-10535428.03036863,4627015.0699327979],[-10535425.633579696,4626756.8277591327],[-10535423.234988902,4626498.5652707638],[-10535420.831693202,4626239.80263092],[-10535674.240602138,4626241.1662794407],[-10535928.6912985,4626242.528783733],[-10535942.498033961,4626242.6362891644],[-10536184.159054363,4626243.2925151139],[-10536440.602722565,4626243.9833812686],[-10536695.676629703,4626244.6548446547],[-10536951.277337279,4626245.3226093045],[-10537207.293818772,4626245.9792730156],[-10537463.873842578,4626246.6314724255],[-10537721.186100498,4626249.2798556481],[-10537978.033729073,4626251.9170079222],[-10538234.635577725,4626254.5447166897],[-10538490.914458487,4626257.1650235457],[-10538748.135613343,4626259.7914606407],[-10539005.474802913,4626262.4124117279],[-10539261.039470246,4626264.9946892206],[-10539517.717106221,4626267.5828423519],[-10539518.217670962,4626008.4747704696],[-10539518.716733966,4625749.4135513343],[-10539518.725443792,4625745.1133299693],[-10539519.234117802,4625490.3850169592],[-10539519.75230252,4625231.3935032636],[-10539519.780834906,4625225.5667152535],[-10539520.279197121,4624972.3782692989],[-10539520.788972182,4624713.3995428244],[-10539520.799183719,4624709.0194956167],[-10539521.287834767,4624454.4056452168],[-10539521.783593783,4624195.4298788849],[-10539522.816264492,4623935.9370118873],[-10539523.831415271,4623681.2663828358],[-10539523.85213878,4623676.6462775553],[-10539524.883708095,4623417.5649326444],[-10539524.93046109,4623405.9120110348],[-10539525.562976113,4623164.9860255867],[-10539525.567981672,4623158.7164346958],[-10539526.21421187,4622900.1776948608],[-10539526.848128114,4622646.8241126556],[-10539526.84522469,4622641.8008337459],[-10539527.490353551,4622383.7187658967],[-10539528.135582473,4622125.5755607709],[-10539530.989427157,4621867.6198476022],[-10539531.254228214,4621843.6531843822],[-10539533.097722413,4621609.6420247033],[-10539533.121949919,4621605.9266065378],[-10539535.13343483,4621351.3062402392],[-10539537.175254058,4621092.755125368],[-10539537.191071961,4621088.27495954],[-10539539.209864913,4620833.819692879],[-10539541.265499551,4620574.5888716187],[-10539541.275310641,4620571.2551907683],[-10539543.304014541,4620315.0776062822],[-10539545.360750124,4620055.2838774016],[-10539801.698674837,4620054.8235709388],[-10540058.326729925,4620054.3570155241],[-10540315.256028041,4620053.8873996809],[-10540572.492876373,4620053.4111523097],[-10540829.87068519,4620052.9364356333],[-10541087.497978101,4620052.4517712612],[-10541345.383665238,4620051.9514199169],[-10541603.424328819,4620051.443161333],[-10541862.874497794,4620051.6153315799],[-10542117.896824224,4620051.7767799376],[-10542121.817889636,4620051.7693901882],[-10542372.973212225,4620051.9192249533],[-10542380.284638675,4620051.9164331993],[-10542549.045528149,4620051.8506935565],[-10542633.045189423,4620052.211666787],[-10542638.205566209,4620052.2320831791],[-10542895.572162867,4620053.3397562141],[-10543149.203806128,4620054.4261231134],[-10543152.523887139,4620054.4351848792],[-10543332.522274707,4620055.2102117194],[-10543408.96042444,4620054.9436730482],[-10543417.868369034,4620054.9129530899],[-10543665.349409143,4620057.9585809223],[-10543663.816319434,4620315.8432460045],[-10543663.145223469,4620428.6483431989],[-10543662.819635885,4620566.070611367],[-10543662.81793775,4620572.3371001519],[-10543662.168252561,4620827.8959019464],[-10543661.539686259,4621074.9997029761],[-10543917.923299089,4621073.846689322],[-10544174.322329398,4621072.6887011034],[-10544430.714451749,4621071.5236974191],[-10544687.105672982,4621070.3521884875],[-10544943.508207014,4621069.1790213501],[-10545200.567088515,4621067.9960340727],[-10545458.241070496,4621066.7992724301],[-10545716.549575085,4621065.5912875151],[-10545716.578602865,4621059.6872544764],[-10545972.658170955,4621061.1604225757],[-10546229.233203476,4621062.6298931902],[-10546486.292687869,4621064.0993653322],[-10546743.848337485,4621065.5641195476],[-10547002.875763524,4621067.0366582293],[-10547264.38431561,4621068.5191520108],[-10547519.839973681,4621069.9564789766],[-10547773.803855151,4621071.3792187814],[-10547773.798358005,4621079.855367749],[-10548033.255113296,4621080.4372469252],[-10548285.691622706,4621080.9971805597],[-10548293.732753053,4621081.0058615245],[-10548549.243729763,4621081.5656704102],[-10548801.785661329,4621082.1119559687],[-10549060.353985403,4621082.6713849902],[-10549317.837951185,4621083.221884314],[-10549574.240361921,4621083.7541425582],[-10549829.570528425,4621084.2770884475],[-10549829.423422892,4620826.3041845337],[-10549829.296860803,4620605.8710917607],[-10549829.415779084,4620568.152803719],[-10549830.255418465,4620309.7839317434],[-10549831.096759798,4620051.1609800663],[-10550087.625289613,4620051.1042339578],[-10550343.661648214,4620051.0400900086],[-10550599.869706094,4620050.9666358102],[-10550856.027405541,4620050.8850189857],[-10551112.466331393,4620050.7901382837],[-10551368.993059156,4620050.687222641],[-10551625.576352587,4620050.5933624171],[-10551882.15814429,4620050.4921048647],[-10551881.635649247,4619790.5933412025],[-10551881.129272483,4619538.9288548334],[-10551881.118660478,4619531.8187172851],[-10551880.58435148,4619274.1830692999],[-10551880.073669376,4619027.0293557458],[-10551880.067662803,4619017.690647603],[-10551879.537358215,4618762.0398993455],[-10551879.024273179,4618514.9951404845],[-10551879.020769423,4618507.6852468932],[-10551878.498774244,4618254.2768123439],[-10551877.982986111,4618002.7652762923],[-10552084.306864703,4618001.320283372],[-10552133.760889545,4618001.5804759115],[-10552389.350674242,4618002.9212337881],[-10552644.769560309,4618004.2517903633],[-10552900.102045864,4618005.5758436667],[-10553155.294168251,4618006.8956888998],[-10553410.334914682,4618008.2075005937],[-10553665.270038281,4618009.5131915361],[-10553920.088025687,4618010.8140368555],[-10554175.508512001,4618012.8749994365],[-10554431.261984678,4618014.9335399577],[-10554687.353449544,4618016.9785646023],[-10554943.797823917,4618019.019764537],[-10554943.962182762,4618279.9100611927],[-10554944.126541898,4618540.4553915774],[-10554944.296908287,4618800.6656765342],[-10554944.467074739,4619060.5304334611],[-10554944.624126256,4619320.0447900966],[-10554944.781578513,4619579.226574867],[-10554944.924013641,4619838.054974121],[-10554945.06765045,4620096.5404196614],[-10554948.987599935,4620096.5490964428],[-10555204.339059934,4620097.0939571792],[-10555456.578708302,4620097.626060646],[-10555459.539945096,4620097.6380525138],[-10555714.584148353,4620098.1702863965],[-10555969.451546341,4620098.6978010945],[-10556225.916701412,4620096.9693771368],[-10556482.212960714,4620095.2380199702],[-10556738.345930746,4620093.5071731899],[-10556994.333131848,4620091.769566997],[-10556994.594361372,4620348.5544052804],[-10556994.855190048,4620605.5796983093],[-10556995.118320979,4620862.8737803232],[-10556995.380850846,4621120.3996811174],[-10557251.668626433,4621119.8704404701],[-10557507.502175055,4621119.3341840273],[-10557762.66905022,4621118.7889983105],[-10558017.901801912,4621118.2365421718],[-10558273.735449752,4621118.3245319128],[-10558529.013252636,4621118.4056332558],[-10558784.449539421,4621118.4748722827],[-10559039.805733282,4621118.5373509107],[-10559040.822692299,4621376.4721588632],[-10559041.839751404,4621634.3593459865],[-10559042.845697772,4621892.0987719046],[-10559043.850943435,4622149.7249960573],[-10559299.010737127,4622149.6174056092],[-10559553.987718789,4622149.5027988991],[-10559808.75655904,4622149.3767110733],[-10560063.323865538,4622149.2446274972],[-10560064.227420047,4622407.1215550583],[-10560065.132476112,4622665.0277807331],[-10560066.056153607,4622922.9588416843],[-10560066.978729645,4623180.9184396621],[-10560323.411421705,4623183.0396129172],[-10560580.120333828,4623185.1560662631],[-10560837.092851361,4623187.2718822015],[-10561094.341789184,4623189.3855297975],[-10561351.491208883,4623192.4026920935],[-10561608.37632166,4623195.4101589033],[-10561864.900315253,4623198.3983617416],[-10562121.013031481,4623201.3766138228],[-10562119.895277634,4622942.6031383444],[-10562118.77552226,4622683.5049920492],[-10562117.657668466,4622424.5758931888],[-10562116.539213801,4622165.6596878171],[-10562373.562966926,4622166.158548261],[-10562630.506627094,4622166.650392496],[-10562887.405335054,4622167.1403232031],[-10563144.272906842,4622167.6251512235],[-10563401.072699966,4622168.0990084894],[-10563657.800609665,4622168.5668700673],[-10563914.451129558,4622169.0217198329],[-10564171.048487742,4622169.4701912263],[-10564424.877934067,4622170.1898663398],[-10564679.193944735,4622170.9029083913],[-10564933.926438484,4622171.6033217255],[-10565189.140590895,4622172.2974847043],[-10565444.848716235,4622172.9893518845],[-10565701.008465398,4622173.6749686729],[-10565957.634355215,4622174.3573966874],[-10566214.675927162,4622175.0328088924],[-10566214.334799033,4622433.1742726257],[-10566213.992667094,4622691.9984753737],[-10566213.648735914,4622950.127521066],[-10566213.30550671,4623207.9860683763],[-10566212.959975842,4623465.6113511128],[-10566212.613444695,4623723.0346102845],[-10566212.2659136,4623980.1736637065],[-10566211.917782718,4624237.1054280754],[-10566210.710452886,4624494.7577588987],[-10566209.503924763,4624752.2627874054],[-10566208.287786294,4625009.6183334114],[-10566207.071949152,4625266.781765827],[-10566205.869428359,4625523.7636617944],[-10566204.666908324,4625780.6054813908],[-10566203.453276169,4626037.3061932987],[-10566202.239544246,4626293.9709437992],[-10566202.684532728,4626551.1214437652],[-10566203.131518126,4626809.6147229606],[-10566203.573701765,4627067.1449178346],[-10566204.015585959,4627324.4402139941],[-10566204.452365078,4627581.5176967522],[-10566204.889144752,4627838.4461460141],[-10566205.341843873,4628095.1124618454],[-10566205.7943433,4628351.6364814471],[-10566206.813795133,4628609.2176850569],[-10566207.831945566,4628866.743049833],[-10566208.855001666,4629124.2414211491],[-10566209.876155704,4629381.6747556645],[-10565956.777960779,4629381.1580093233],[-10565702.760601392,4629380.6309228754],[-10565448.691682255,4629380.095666457],[-10565194.284671551,4629379.5517294537],[-10565194.603284046,4629636.9881684501],[-10565194.923198344,4629894.3397769034],[-10565195.226894081,4630151.6268473137],[-10565195.530890308,4630408.8696742365],[-10565195.259716708,4630667.1742745517],[-10565194.98874387,4630925.3534791786],[-10565194.726681801,4631183.427707253],[-10565194.463919576,4631441.3405158054],[-10565193.451990813,4631699.1253463468],[-10565192.438060235,4631956.817430988],[-10565191.43113826,4632214.4244243056],[-10565190.424617196,4632471.9564078338],[-10564929.969523657,4632471.6739152288],[-10564668.957485629,4632471.3824842311],[-10564407.451976528,4632471.0879887408],[-10564145.406242279,4632470.7841717657],[-10563887.891053043,4632469.7702460224],[-10563630.479683826,4632468.7491694093],[-10563373.160621345,4632467.7085556099],[-10563115.955590693,4632466.6627063621],[-10562859.477100605,4632465.6250293022],[-10562603.351718994,4632464.5816059345],[-10562347.513769869,4632463.5340963015],[-10562091.988782765,4632462.4805849791],[-10562091.468057085,4632540.5235394007],[-10562092.210096154,4632722.2731158081],[-10562093.265077526,4632980.870426259],[-10562094.310046991,4633239.5378426565],[-10562095.354817169,4633497.829800861],[-10561839.480199046,4633496.5313990805],[-10561582.997777605,4633495.224313614],[-10561326.23222846,4633493.9030529009],[-10561069.078029517,4633492.5743854679],[-10560812.011331597,4633491.2522311434],[-10560555.959707841,4633489.9289270658],[-10560299.74749811,4633488.6088158302],[-10560043.522072913,4633487.2824470522],[-10560042.576073453,4633227.8764804266],[-10560041.632175557,4632968.7993797697],[-10560040.695685191,4632710.1245459868],[-10560040.076960651,4632539.4376148321],[-10560038.965675551,4632451.8398179617],[-10560040.27227799,4632194.3615644202],[-10560041.582486665,4631936.0714135719],[-10560042.87727702,4631678.0751730008],[-10560044.171867507,4631420.0058648232],[-10559788.691355091,4631420.120968109],[-10559532.892073743,4631420.2293043705],[-10559277.450406332,4631420.3399388269],[-10559022.131481018,4631420.4443168715],[-10558766.511307092,4631420.5171577502],[-10558511.052319769,4631420.5825930918],[-10558255.039291134,4631420.658243062],[-10557998.691174673,4631420.7275090646],[-10557998.711606668,4631415.9028212996],[-10557741.618328329,4631415.3944579],[-10557484.87075007,4631414.8794550039],[-10557228.451752057,4631414.3624091204],[-10556972.350922255,4631413.8407666292],[-10556716.556245752,4631414.0374580221],[-10556461.099460386,4631414.2291697785],[-10556206.197317062,4631414.3989202594],[-10555951.128681054,4631414.5616483334],[-10555951.250917614,4631418.7882778356],[-10555950.466114571,4631671.5652846741],[-10555949.665087128,4631929.2694587521],[-10555949.048042564,4632127.0338125769],[-10555949.201551452,4632186.0494863261],[-10555949.863418635,4632442.4173504729],[-10555943.218314942,4632540.4200869221],[-10555941.455688667,4632700.8794630887],[-10555938.607391937,4632959.7812358793],[-10555935.756292904,4633218.2324826671],[-10555932.908098001,4633476.3773504831],[-10555675.223480541,4633476.566351383],[-10555420.309668683,4633476.7476885803],[-10555417.746203003,4633476.7312156297],[-10555162.536649039,4633476.8974835761],[-10554908.874885749,4633477.056726926],[-10554652.939491643,4633477.7872038651],[-10554397.594580783,4633478.5104013272],[-10554142.331765017,4633479.2086960077],[-10553888.359642563,4633479.895751968],[-10553889.049987113,4633737.9890173208],[-10553889.741833266,4633996.1462385608],[-10553890.44739542,4634253.9331846228],[-10553891.155559937,4634512.6265135314],[-10553634.72897131,4634512.716196863],[-10553382.3548699,4634512.798853213],[-10553377.667648563,4634512.7812306779],[-10553361.361688726,4634512.8025695132],[-10553120.064198144,4634514.5197760407],[-10552871.46285999,4634516.2839881415],[-10552861.925328659,4634516.3635631828],[-10552694.819750562,4634517.546857941],[-10552603.789963448,4634518.3884573914],[-10552352.243519345,4634520.7125956975],[-10552345.269152645,4634520.7677747821],[-10552086.391929956,4634523.1534790713],[-10551827.155992709,4634525.5353526557],[-10551569.493475566,4634526.0184144415],[-10551318.280017588,4634526.4838470928],[-10551312.190774659,4634526.493046537],[-10551055.233773667,4634526.964102326],[-10550806.400068277,4634527.4136964036],[-10550798.587131701,4634527.4356688662],[-10550542.495631946,4634528.0667572869],[-10550427.287880745,4634528.3484481256],[-10550291.894782925,4634528.8609408718],[-10550286.484625457,4634528.894278991],[-10550030.662137166,4634529.8021365376],[-10549774.76906736,4634530.7029696712],[-10549519.531056223,4634533.065685479],[-10549264.141870562,4634535.4241872868],[-10549257.12915959,4634535.4761735117],[-10549008.298359744,4634537.7604667544],[-10548752.113354281,4634540.1059429469],[-10548742.093164869,4634540.2012280952],[-10548626.590774065,4634541.256775761],[-10548495.037819767,4634543.1430248227],[-10548237.440783137,4634546.8313532826],[-10548231.187550647,4634546.9113098467],[-10547979.174368193,4634546.0416855933],[-10547720.08470083,4634545.1403909875],[-10547548.306617264,4634542.6784318741],[-10547460.110592587,4634542.1277900785],[-10547199.961996211,4634540.4959393786],[-10546941.217601966,4634538.8729106952],[-10546683.393257489,4634537.2498882795],[-10546425.275278123,4634535.6134539274],[-10546166.584044861,4634533.9680761015],[-10545908.778822517,4634532.3044403894],[-10545651.300573329,4634530.6359538948],[-10545653.425368583,4634271.9370380091],[-10545655.553367186,4634013.0718411133],[-10545657.671253914,4633754.0065323841],[-10545659.378216131,4633545.074933867],[-10545659.595819797,4633494.7614311734],[-10545660.665009717,4633235.3872455899],[-10545661.735400865,4632975.960610819],[-10545662.813701041,4632716.6276165508],[-10545663.544979073,4632540.5105823986]]]},"attributes":{"objectid":995,"field_kid":"1000149642","approxacre":51416,"field_name":"LACYGNE-CADMUS","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":821211.05000000005,"maxoilwell":315,"lastoilpro":2260.7800000000002,"lastoilwel":209,"lastodate":"2-2009","cumm_gas":117296,"maxgaswell":18,"lastgaspro":157,"lastgaswel":17,"lastgdate":"12-1993","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149642}},{"geometry":{"rings":[[[-10574508.984934771,4719644.0382691696],[-10574507.744011324,4719379.5423011128],[-10574506.521232119,4719119.1891720984],[-10574506.495574832,4719114.2797488999],[-10574505.258645825,4718848.0110093504],[-10574504.018708074,4718580.8188375635],[-10574761.681531882,4718583.9481263719],[-10575019.440766482,4718587.0723924916],[-10575277.116004316,4718590.1745102005],[-10575535.348242002,4718593.2764955461],[-10575535.312883407,4718607.8761363961],[-10575780.62647905,4718606.7474146597],[-10576026.110168179,4718605.610449452],[-10576272.379650936,4718604.4911185671],[-10576519.209370749,4718603.3628960587],[-10576519.373640383,4718863.3572998848],[-10576519.538808648,4719122.9143189844],[-10576519.692557409,4719381.2555217603],[-10576519.844498957,4719638.6374974018],[-10576524.370443104,4719638.5973928506],[-10576524.170771223,4719893.4550817804],[-10576523.971003788,4720149.1702773226],[-10576523.787660398,4720405.8985078316],[-10576523.601818591,4720663.4601677591],[-10576276.5345663,4720664.1635276768],[-10576027.283933014,4720664.8667835444],[-10575779.501167892,4720665.5795545243],[-10575531.972691793,4720666.2857536785],[-10575531.79861002,4720687.0482309144],[-10575274.997959238,4720682.6474598097],[-10575019.714981195,4720678.2661338653],[-10574763.305207161,4720673.8488846188],[-10574506.661764313,4720669.4224941581],[-10574507.248875488,4720410.6461108681],[-10574507.818510832,4720159.6996819051],[-10574507.838498479,4720153.452568789],[-10574508.413514443,4719897.9921803232],[-10574508.984934771,4719644.0382691696]]]},"attributes":{"objectid":1102,"field_kid":"1000149136","approxacre":617,"field_name":"DESOTO","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149136}},{"geometry":{"rings":[[[-10573265.58366536,4766195.3303667326],[-10573525.051210454,4766194.8361166203],[-10573522.328584103,4766455.2406842746],[-10573519.614169588,4766714.8100267565],[-10573516.911470946,4766973.5250582593],[-10573514.217084177,4767231.4310029149],[-10573510.898182554,4767490.5922987135],[-10573507.555248449,4767751.6578832576],[-10573504.201703712,4768012.2628111392],[-10573500.845655354,4768273.2143257754],[-10573498.30853866,4768534.6848324165],[-10573495.767115382,4768796.8129848754],[-10573493.220384035,4769059.7224338306],[-10573490.665741764,4769323.3714358099],[-10573232.656139841,4769322.0018709116],[-10572974.689386686,4769320.6247991771],[-10572716.511092529,4769319.2316798856],[-10572458.145985521,4769317.8306667712],[-10572197.282529138,4769317.6997308908],[-10571936.721817618,4769317.5646516504],[-10571676.209361041,4769317.4370788783],[-10571530.135564553,4769317.3625743492],[-10571415.745159701,4769317.204929146],[-10571417.828200962,4769058.1012771865],[-10571419.894918784,4768800.9203583831],[-10571421.951629063,4768542.2914982243],[-10571424.010742983,4768283.3557156818],[-10571426.247559369,4768024.4628284909],[-10571428.441914631,4767770.5564279156],[-10571428.461346963,4767766.6048656898],[-10571430.677234314,4767509.8201803137],[-10571432.882306673,4767254.1168424059],[-10571434.677127007,4766992.5010073129],[-10571436.480660886,4766729.521825131],[-10571436.486276334,4766726.0182429319],[-10571438.262974249,4766465.1702160956],[-10571440.07442444,4766199.4524985068],[-10571701.823369263,4766198.7935266262],[-10571963.914203694,4766198.1270485213],[-10572226.312688764,4766197.4375380026],[-10572489.011916567,4766196.7396157915],[-10572747.545797648,4766196.2835396752],[-10573006.422569474,4766195.8191809831],[-10573265.58366536,4766195.3303667326]]]},"attributes":{"objectid":1257,"field_kid":"1000149597","approxacre":948,"field_name":"CORRAL CREEK SOUTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":1342,"maxoilwell":2,"lastoilpro":110,"lastoilwel":1,"lastodate":"5-1989","cumm_gas":884494,"maxgaswell":7,"lastgaspro":78,"lastgaswel":2,"lastgdate":"10-2008","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149597}},{"geometry":{"rings":[[[-10536043.174985556,4581574.1899189148],[-10536297.772730686,4581577.988155338],[-10536298.39447153,4581834.6017366666],[-10536299.015709862,4582091.556762862],[-10536299.636344159,4582349.1140154246],[-10536300.257576244,4582607.1924641235],[-10536046.994387954,4582602.6228983682],[-10535797.811299443,4582598.1220953967],[-10535794.384851735,4582598.0661711888],[-10535542.394227622,4582593.5089393752],[-10535291.102808103,4582588.9573028591],[-10535289.07533676,4582331.7756620618],[-10535287.053669531,4582075.0291450555],[-10535285.032200033,4581818.7053938312],[-10535283.862681413,4581670.3424866339],[-10535283.256511271,4581562.8175923359],[-10535535.939451864,4581566.6042562965],[-10535789.219579961,4581570.3942269972],[-10536043.174985556,4581574.1899189148]]]},"attributes":{"objectid":1264,"field_kid":"1000146838","approxacre":158,"field_name":"FULTON NORTHEAST","status":"Active","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000146838}},{"geometry":{"rings":[[[-10550777.746408258,4739674.5011139736],[-10550779.314959003,4739596.0773054147],[-10550772.022508342,4739596.244736365],[-10550771.621826857,4739455.5035044327],[-10550770.995041316,4739236.1503108442],[-10550770.372360732,4739016.6323195295],[-10550769.748479472,4738796.729146882],[-10550769.114987878,4738576.4503665287],[-10550768.479394577,4738355.7827127501],[-10551028.985673288,4738358.1296196831],[-10551289.244868683,4738360.4667230118],[-10551549.235456085,4738362.8022808582],[-10551804.910900727,4738365.0919391932],[-10551808.958136339,4738365.1241643159],[-10552066.802965421,4738367.4291605735],[-10552324.746607382,4738369.7279632492],[-10552582.766336221,4738372.0059920251],[-10552840.94274422,4738374.2788589811],[-10552844.128021557,4738283.6948518129],[-10552843.344152279,4738193.2471685773],[-10552841.759406833,4738126.0535691744],[-10552841.697668293,4738113.3183863033],[-10552840.476015523,4737857.3942995295],[-10552840.449697085,4737852.7608998735],[-10552839.227554182,4737592.6482839789],[-10552838.035628807,4737339.2403239859],[-10552837.988890966,4737333.0225643767],[-10552836.836819658,4737076.2288005622],[-10552835.686349079,4736819.8167231176],[-10552834.52106891,4736560.4242247557],[-10552833.347484009,4736299.0793148987],[-10553092.738728799,4736300.9576399401],[-10553346.148819348,4736302.7877678853],[-10553351.852755629,4736302.8424180439],[-10553610.529681358,4736304.7064305553],[-10553855.67460013,4736306.4656761987],[-10553862.436148707,4736306.3985369774],[-10553868.832278572,4736306.3170813052],[-10554126.338676596,4736303.2526056767],[-10554378.158157926,4736300.2515197657],[-10554383.13756424,4736300.1970379986],[-10554639.108603675,4736297.1271584118],[-10554894.447519146,4736294.058058843],[-10554895.240915997,4736395.5014999788],[-10554897.230012609,4736552.2629866451],[-10554900.535097882,4736812.6180254268],[-10554900.575831281,4736816.9266153947],[-10554903.864704201,4737075.1150886249],[-10554907.234249337,4737339.7195081655],[-10554910.56666146,4737601.0849338872],[-10554913.898272319,4737862.4178929282],[-10554917.213063477,4738123.7452208092],[-10554920.5255516,4738385.0587880919],[-10555178.752019053,4738385.9204429677],[-10555430.227754258,4738386.7520880923],[-10555437.390858715,4738386.7797721075],[-10555696.408532163,4738387.6434854101],[-10555944.340708418,4738388.4647078188],[-10555955.793326033,4738388.4915830912],[-10556213.772609945,4738389.3353051748],[-10556462.581590297,4738390.1443918459],[-10556471.321400626,4738390.1892243568],[-10556728.452312639,4738391.0188891292],[-10556985.151329882,4738391.8388801608],[-10556987.340047764,4738608.5918542175],[-10556989.438593848,4738816.6345796222],[-10556989.529267056,4738825.049464928],[-10556991.704471247,4739041.1830466501],[-10556993.764585204,4739245.838538276],[-10556993.87196745,4739257.0191613501],[-10556996.032257173,4739472.3066679565],[-10556997.259517049,4739594.5977815939],[-10557003.05275121,4739594.45139693],[-10557002.836695202,4739679.1420823587],[-10557002.811936934,4739687.3515969831],[-10557002.227584608,4739902.2932729227],[-10557001.640428258,4740117.4818823515],[-10556741.927177165,4740117.1564950347],[-10556594.10393125,4740116.9674207382],[-10556484.409239575,4740116.8055380769],[-10556225.307288347,4740116.4596265815],[-10556073.149079232,4740116.251873319],[-10556071.126381595,4740376.0923693031],[-10556069.091765976,4740637.3011300117],[-10556067.080078896,4740897.926305661],[-10556065.067190502,4741158.6215745639],[-10556063.028574372,4741418.9030586155],[-10556060.989658171,4741679.1936993217],[-10556058.970464977,4741939.44806231],[-10556056.950270489,4742199.8349817544],[-10556057.567791492,4742461.1499894746],[-10556058.187211474,4742723.3863357222],[-10556058.834366586,4742984.6034805011],[-10556059.481122388,4743245.4604960959],[-10556060.114260834,4743506.8234649915],[-10556060.746100811,4743767.2773601692],[-10556061.389655562,4744027.3052162994],[-10556062.030714156,4744285.3393867267],[-10556061.195786947,4744542.6624370599],[-10556060.355044838,4744802.4605607959],[-10556059.517409194,4745061.4417322678],[-10556058.678471234,4745320.707411035],[-10556057.835627455,4745580.4123088112],[-10556056.992282692,4745840.2807742516],[-10556056.159049129,4746100.2965496164],[-10556055.325714983,4746360.4911549594],[-10555795.094211174,4746358.8010182297],[-10555535.161648916,4746357.1050689099],[-10555274.233147902,4746355.3803300783],[-10555012.732392449,4746353.6459105797],[-10554751.714488706,4746351.932924347],[-10554490.586058389,4746350.211674775],[-10554336.947413774,4746349.1724221315],[-10554229.304454308,4746347.9386411281],[-10553967.859465184,4746344.937686488],[-10553708.395723151,4746348.3001358863],[-10553448.080808476,4746351.6664659074],[-10553188.029395526,4746355.0315036448],[-10552927.854942393,4746358.3908612086],[-10552769.400284033,4746360.4384396458],[-10552667.825754041,4746362.4586433712],[-10552407.979272498,4746367.6243165862],[-10552403.397434058,4746367.7344983779],[-10552148.265851293,4746369.5833527874],[-10551889.03378086,4746371.4568996821],[-10551630.934412327,4746370.2906410536],[-10551372.064362571,4746369.1161233559],[-10551368.37884916,4746369.0972949192],[-10551112.93021071,4746367.944061216],[-10550853.393098023,4746366.7647705888],[-10550848.331311211,4746366.7329090443],[-10550593.686291225,4746365.5543602379],[-10550333.629984694,4746364.3447273141],[-10550329.986018769,4746364.3268025368],[-10550073.22397819,4746363.1393583985],[-10549812.489495998,4746361.9261148414],[-10549816.243934102,4746101.6052940674],[-10549819.994868474,4745841.442390928],[-10549823.756815676,4745581.4494014736],[-10549827.516160127,4745321.6354800984],[-10549831.271801792,4745061.2891809018],[-10549835.024640555,4744801.0799967907],[-10549838.768969845,4744541.0336099993],[-10549842.510396115,4744281.1228954419],[-10549847.362595806,4744019.8765744166],[-10549849.731625363,4743892.3094577556],[-10549852.147418551,4743758.9539501332],[-10549856.06625128,4743498.0298090503],[-10549859.982681528,4743237.2722243667],[-10549863.893706823,4742976.1250639586],[-10549867.806034334,4742714.8851278378],[-10549871.719864156,4742453.6231606761],[-10549875.636698117,4742192.281465387],[-10549873.958827531,4741932.280189882],[-10549872.286061222,4741673.0542356102],[-10549870.608190101,4741413.1047831587],[-10549868.928416913,4741152.9601577381],[-10549867.547300534,4740941.9365913114],[-10549867.571514048,4740892.2681582291],[-10549867.703716459,4740631.1444555745],[-10549867.818397725,4740370.6629743623],[-10549867.932778109,4740110.508774776],[-10550126.324117491,4740110.443527298],[-10550250.283241728,4740110.4078470413],[-10550384.641071741,4740110.3656331738],[-10550643.462703824,4740110.2848959407],[-10550769.015652895,4740110.2428796617],[-10550773.37226937,4739892.8351985123],[-10550777.746408258,4739674.5011139736]]]},"attributes":{"objectid":1335,"field_kid":"1000152681","approxacre":7912,"field_name":"BETHEL","status":"Abandoned","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":62701,"maxgaswell":2,"lastgaspro":65,"lastgaswel":1,"lastgdate":"3-1989","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000152681}},{"geometry":{"rings":[[[-10616061.714499542,4789607.5342506776],[-10616067.506642196,4789357.4723823592],[-10615804.794413295,4789352.7517396538],[-10615542.873289069,4789348.0405698512],[-10615281.694714013,4789343.3356305817],[-10615021.269900931,4789338.6365328031],[-10615025.784991885,4789080.1666386481],[-10615030.313195109,4788820.8931582654],[-10615034.844899889,4788560.904982633],[-10615039.389817296,4788300.1962022586],[-10615043.901296193,4788039.4975655442],[-10615048.414676175,4787778.543902724],[-10615052.931158671,4787517.3505339231],[-10615057.451344306,4787255.8994549885],[-10615320.48297359,4787262.7570521934],[-10615583.650959162,4787269.6123216301],[-10615846.968716305,4787276.446851545],[-10616110.441150667,4787283.2756825257],[-10616110.516823657,4787278.9508532546],[-10616371.835387124,4787282.7259125393],[-10616633.049131012,4787286.4916379368],[-10616894.153249897,4787290.2663115757],[-10617155.153650472,4787294.0322996182],[-10617415.644670993,4787298.3599790446],[-10617675.251581311,4787302.6657456737],[-10617934.000611383,4787306.9459690461],[-10618191.896766949,4787311.2046686197],[-10618189.084043777,4787574.4024526272],[-10618186.27782586,4787837.0212993789],[-10618183.490827702,4788099.0485854354],[-10618180.712236848,4788360.4576812293],[-10618175.178378647,4788616.6181181185],[-10618169.608584598,4788874.4359359071],[-10618164.04429392,4789131.5074286442],[-10618158.477099756,4789388.643736925],[-10618152.920115305,4789645.3187084934],[-10618147.340107692,4789903.0398774184],[-10618141.779421799,4790160.7690928411],[-10618136.237253746,4790417.6273702774],[-10618135.903059358,4790680.3381590368],[-10618135.56856491,4790943.148569162],[-10618135.227358181,4791204.6079162303],[-10618134.887049582,4791465.2236685744],[-10618134.55595614,4791727.2197779873],[-10618134.229054304,4791985.3256375054],[-10618134.218752313,4791988.2251726072],[-10618133.885149369,4792248.2849194622],[-10618133.554145653,4792507.2500170637],[-10617871.366817612,4792504.9142635465],[-10617608.325312912,4792502.5654045995],[-10617594.61863851,4792502.457799091],[-10617344.40420256,4792500.2331478484],[-10617124.700757958,4792498.27652134],[-10617079.613696475,4792497.3747110479],[-10617061.034349123,4792496.9877794795],[-10616814.278359698,4792492.0672676982],[-10616547.819438394,4792486.7480177497],[-10616536.231586531,4792486.5016130414],[-10616280.054123381,4792481.3776528705],[-10616046.780753508,4792476.7061583027],[-10616011.317901578,4792477.0038560582],[-10616011.262585798,4792460.0932066226],[-10616011.271212954,4792433.462900036],[-10616015.240172789,4792214.9599256525],[-10616020.000001587,4791952.9647446238],[-10616020.068469098,4791949.4952278621],[-10616024.755426241,4791691.3667268297],[-10616029.500339383,4791430.0405371403],[-10616029.596329723,4791423.7938913377],[-10616033.104641635,4791166.6504465733],[-10616036.697531115,4790903.4338157028],[-10616036.751181159,4790899.8009711569],[-10616040.287417561,4790640.4317469895],[-10616043.871997915,4790377.5068705175],[-10616049.815595353,4790121.1531310324],[-10616055.663295779,4789868.9867571052],[-10616055.76259546,4789864.539419909],[-10616061.714499542,4789607.5342506776]]]},"attributes":{"objectid":1570,"field_kid":"1000146338","approxacre":1904,"field_name":"WEHKING","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":2033913,"maxgaswell":8,"lastgaspro":6,"lastgaswel":1,"lastgdate":"7-1997","avgdepth":1585.2621082600001,"avgdepthsl":501.92735042999999,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000146338}},{"geometry":{"rings":[[[-10581556.766558468,4774556.3088666266],[-10581815.147388089,4774556.6888280082],[-10581813.270138495,4774818.1801211629],[-10581811.395292299,4775079.2592779882],[-10581809.527454756,4775339.9285975574],[-10581807.661820389,4775600.1845513713],[-10581548.507362578,4775600.5943980981],[-10581289.019023323,4775600.9981578058],[-10581029.042726619,4775601.3890960449],[-10580768.874810986,4775601.7726521958],[-10580768.891173961,4775533.0140672857],[-10580770.976960151,4775340.7291617859],[-10580773.812547779,4775079.2973402496],[-10580773.912177231,4775071.8378200792],[-10580776.663553691,4774817.439145322],[-10580779.499843448,4774555.162897856],[-10581039.036092723,4774555.5459662629],[-10581298.033626705,4774555.9238552339],[-10581556.766558468,4774556.3088666266]]]},"attributes":{"objectid":1851,"field_kid":"1000149621","approxacre":158,"field_name":"LOWEMONT SOUTHEAST","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":2063,"maxgaswell":1,"lastgaspro":92,"lastgaswel":1,"lastgdate":"3-1987","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000149621}},{"geometry":{"rings":[[[-10535141.549563248,4672629.8000430595],[-10535141.653479975,4672624.1519011864],[-10534883.377350848,4672621.5286417808],[-10534625.172603315,4672618.9003832256],[-10534367.30974659,4672616.2828950034],[-10534109.695974588,4672613.6629723581],[-10533852.174908545,4672611.027410238],[-10533594.983919799,4672608.3894140478],[-10533337.826068936,4672605.7315476332],[-10533080.79546351,4672603.069964299],[-10533083.958385561,4672346.9093915857],[-10533087.124110697,4672090.4565598071],[-10533090.291938666,4671835.1651429553],[-10533093.497808959,4671576.6994593628],[-10533095.629250137,4671315.6002861429],[-10533097.730257861,4671058.1589455698],[-10533099.849085709,4670800.0465613091],[-10533101.960305139,4670542.7124224724],[-10533104.078832628,4670284.5737165324],[-10533106.198261019,4670026.0829279367],[-10533108.318490412,4669767.8366777627],[-10533110.452535041,4669508.0649458552],[-10533114.049752401,4669248.9062597109],[-10533117.620840549,4668991.5626338031],[-10533121.18351908,4668734.1821761653],[-10533124.737087402,4668477.3849874111],[-10533128.306874076,4668220.079888803],[-10533129.985448666,4668099.0635825079],[-10533131.770839971,4667963.2717873668],[-10533135.136293277,4667706.5265200306],[-10533138.483225923,4667451.1884539519],[-10533138.590054225,4667194.0174459256],[-10533138.697582923,4666935.7630650448],[-10533138.800406342,4666677.7687662728],[-10533138.90172798,4666419.5958466465],[-10533139.010258021,4666161.8977156142],[-10533139.117386451,4665904.1819964228],[-10533139.226316975,4665646.5564312041],[-10533139.334146174,4665388.7537814537],[-10533139.33064827,4665131.3919050517],[-10533139.328250846,4664871.8888996476],[-10533139.332359958,4664609.9221227616],[-10533139.336568324,4664345.6107630692],[-10533139.330464084,4664079.0695153689],[-10533139.322857497,4663810.8034745092],[-10533139.329766849,4663540.7532171831],[-10533139.337174043,4663263.236590093],[-10533142.384664474,4663008.1748385327],[-10533145.474602133,4662749.5922882808],[-10533148.562637432,4662490.4893934522],[-10533151.656178806,4662230.8085631309],[-10533154.757428776,4661970.5196180763],[-10533157.854073623,4661710.6423549298],[-10533160.945111988,4661450.5641135285],[-10533163.962268185,4661196.7498738458],[-10533164.595197892,4660939.8074705023],[-10533165.231931372,4660681.3184245052],[-10533165.874671809,4660423.0680558328],[-10533166.518213026,4660164.4613363296],[-10533167.148639385,4659906.2137719262],[-10533167.776362786,4659648.3547835276],[-10533168.416400298,4659390.5766807739],[-10533169.050932273,4659134.8974478189],[-10533169.906116445,4658879.143693517],[-10533170.769409155,4658621.4013581714],[-10533171.612278724,4658364.1997388275],[-10533172.455248296,4658106.7217967547],[-10533173.307328632,4657850.1983955558],[-10533174.158207575,4657593.6399492789],[-10533175.013191305,4657337.3403631076],[-10533175.867674235,4657080.4231798677],[-10533179.001260741,4656819.088661436],[-10533182.084691435,4656561.9300497975],[-10533185.181437111,4656304.1017098986],[-10533188.264467521,4656047.4124497715],[-10533191.33047921,4655792.7429903978],[-10533194.39589024,4655538.1585768638],[-10533197.433570251,4655285.4248240925],[-10533200.512095705,4655029.294132743],[-10533203.751703104,4654767.1953724185],[-10533206.882789731,4654514.0545086972],[-10533210.056423327,4654256.3551622555],[-10533213.216641957,4653999.6856346764],[-10533216.398885446,4653742.1517637512],[-10533219.580628363,4653484.6197633799],[-10533222.759668311,4653227.4151507653],[-10533225.944614779,4652969.579414553],[-10533226.381721383,4652714.8528941516],[-10533226.814023351,4652462.4844734948],[-10533227.25563647,4652211.5199126191],[-10533227.692644954,4651962.2657783162],[-10533228.122245356,4651714.0835445505],[-10533228.550344674,4651467.6335235275],[-10533228.966030318,4651222.5877055693],[-10533229.375810051,4650979.8735878877],[-10533484.334246846,4650977.3630878478],[-10533632.640972659,4650975.8989026053],[-10533731.17400361,4650975.57669497],[-10533739.042097444,4650975.5290631894],[-10533993.559931165,4650974.5979445027],[-10534237.609999416,4650973.6976713343],[-10534247.924089227,4650973.6682315748],[-10534502.070498386,4650972.7510533556],[-10534749.541376898,4650971.8531202311],[-10534756.042107742,4650971.8304194408],[-10535009.848828604,4650970.8881643554],[-10535263.479748506,4650969.9391274955],[-10535263.619714268,4650711.5250686985],[-10535263.758478617,4650453.0126331476],[-10535263.778099753,4650449.4683475597],[-10535263.850329529,4650304.6973393597],[-10535265.010618482,4650194.3593228869],[-10535265.939731307,4650105.9807692235],[-10535266.788599543,4649935.5441222088],[-10535266.806923075,4649931.0328141786],[-10535267.664302867,4649757.3347051134],[-10535268.802249948,4649676.5337498449],[-10535272.453872414,4649417.4019087739],[-10535272.479002668,4649414.7440436808],[-10535276.097986177,4649158.0316879954],[-10535279.757417317,4648898.4263032265],[-10535280.869636301,4648640.2518371521],[-10535281.953018326,4648388.9423446236],[-10535281.96193213,4648382.6169285607],[-10535283.069144586,4648125.5934105627],[-10535284.132400861,4647878.8357139044],[-10535284.154731909,4647869.1697269967],[-10535285.250830844,4647613.3096423252],[-10535286.312485628,4647365.6954651717],[-10535286.334915634,4647358.0438050563],[-10535287.422003467,4647103.3341916464],[-10535288.506888382,4646849.19802335],[-10535542.960224351,4646851.1164782168],[-10535797.514776107,4646853.0304591814],[-10536052.16593839,4646854.9461041149],[-10536306.925024128,4646856.8554849783],[-10536561.815059621,4646858.7661465304],[-10536816.816722795,4646860.6716949213],[-10537071.924607484,4646862.5574246645],[-10537327.070335547,4646864.4377847426],[-10537331.453016205,4646608.1205830621],[-10537335.839801323,4646351.4917844227],[-10537336.485450022,4646312.690678996],[-10537339.117419001,4646094.5762068378],[-10537341.288049908,4645914.7600113647],[-10537341.966146521,4645837.4185018642],[-10537344.211885076,4645579.9360903185],[-10537346.461528042,4645322.0187923331],[-10537348.693750918,4645064.2380054779],[-10537350.925973643,4644806.4019482145],[-10537609.322040401,4644810.7166624488],[-10537863.774702907,4644814.957446334],[-10537867.700487351,4644815.0322739221],[-10538126.075430607,4644819.3464815291],[-10538378.144370785,4644823.5482544182],[-10538384.43906126,4644823.6366561195],[-10538641.829780858,4644827.9305316536],[-10538894.080028754,4644832.1343566207],[-10538898.809631428,4644832.1997311581],[-10539155.412051162,4644836.4442548966],[-10539411.621121865,4644840.674841932],[-10539668.140447285,4644844.6886038492],[-10539924.891037162,4644848.6991739236],[-10540181.851467028,4644852.7172911866],[-10540439.04175977,4644856.7329836721],[-10540696.434984609,4644860.7348726317],[-10540954.076193003,4644864.7343369648],[-10541211.915327789,4644868.7191027543],[-10541469.954491351,4644872.701315606],[-10541467.856670812,4645128.9786725333],[-10541465.798193721,4645380.6758961724],[-10541465.777471412,4645385.3070559967],[-10541463.660328524,4645641.6855743648],[-10541461.594141878,4645891.8959547179],[-10541461.553196935,4645898.0968428152],[-10541459.449769437,4646154.5609385679],[-10541457.384383885,4646406.4045577934],[-10541457.362760555,4646411.0756920623],[-10541455.245016415,4646667.6209031027],[-10541453.126571329,4646924.1988761267],[-10541711.745573401,4646932.3263270892],[-10541970.350760272,4646940.4473918965],[-10542229.092203408,4646948.5481337169],[-10542487.818830209,4646956.6413384406],[-10542746.25002002,4646964.7344199885],[-10543004.447042853,4646972.8140799748],[-10543262.557066856,4646980.8809592202],[-10543520.432623535,4646988.9359513381],[-10543519.530848969,4647255.7850077888],[-10543518.669613494,4647510.3581131408],[-10543518.65660366,4647518.978353316],[-10543517.768741762,4647780.5341128586],[-10543516.911810249,4648033.7018450834],[-10543777.025457677,4648033.2807070874],[-10544037.421427699,4648032.8529217765],[-10544298.110032082,4648032.4019917008],[-10544559.095175302,4648031.9427518938],[-10544820.218176028,4648031.4885011101],[-10545081.330264244,4648031.0281115221],[-10545342.413819816,4648030.5582578825],[-10545603.484360473,4648030.0818817532],[-10545603.419092838,4648038.014909151],[-10545601.956846558,4648294.4856805028],[-10545600.44595186,4648559.2793450365],[-10545600.38919377,4648567.0118594458],[-10545598.931353273,4648824.6044885423],[-10545597.430970874,4649089.9964871639],[-10545595.311476337,4649350.3455514451],[-10545593.279973017,4649600.1884945808],[-10545593.211703829,4649610.2980649956],[-10545591.078392081,4649869.3949245065],[-10545589.040378956,4650116.8896122016],[-10545588.941675641,4650127.7648751056],[-10545587.501483643,4650304.5433764411],[-10545586.503071539,4650385.3084218735],[-10545583.434853999,4650633.6488812529],[-10545583.350760914,4650642.0661584958],[-10545580.187938001,4650898.0673831338],[-10545577.035426596,4651153.3071781285],[-10545834.854334032,4651153.306620894],[-10546093.053976677,4651153.3000551239],[-10546351.675401444,4651153.2789100157],[-10546610.717206741,4651153.2497099312],[-10546870.135542436,4651153.2066976111],[-10547129.988474905,4651153.1544791153],[-10547390.209928622,4651153.0972753642],[-10547547.892071787,4651153.0585434409],[-10547650.737372106,4651151.0747674918],[-10547647.74881635,4651397.1643044604],[-10547644.73182869,4651645.5037272545],[-10547641.730258275,4651892.219243723],[-10547638.735095164,4652138.5882257009],[-10547635.755550053,4652384.8209880209],[-10547632.783113012,4652630.5706567056],[-10547629.815681722,4652876.1391591579],[-10547626.862066044,4653120.6836553449],[-10547627.071600001,4653379.6160085825],[-10547627.279030632,4653636.0117128389],[-10547627.275627859,4653639.2365495106],[-10547627.506086098,4653898.6768468041],[-10547627.731536943,4654153.5864258967],[-10547627.75496559,4654158.2223791648],[-10547627.968504356,4654417.7650207719],[-10547628.179739067,4654673.4014815157],[-10547628.197560925,4654677.1107649812],[-10547628.413001845,4654936.5754412357],[-10547628.628642723,4655195.3001914052],[-10547627.678541182,4655455.7543801945],[-10547626.725636641,4655716.8116079634],[-10547625.77143039,4655977.2224942409],[-10547624.819726942,4656237.3822292099],[-10547623.879236404,4656497.4630754823],[-10547622.940347608,4656757.2135100104],[-10547622.00886731,4657016.8115582159],[-10547621.077887336,4657275.6623692093],[-10547548.202134203,4657277.6806880822],[-10547361.486502761,4657278.265932437],[-10547103.053594308,4657279.0700661829],[-10546844.225734387,4657279.8663882883],[-10546585.502093598,4657280.654647192],[-10546326.945543788,4657281.3874815302],[-10546068.474992281,4657282.1130205076],[-10545810.177939091,4657282.8422733331],[-10545552.049678843,4657283.5673036668],[-10545550.431321729,4657540.7055923929],[-10545548.79944988,4657799.8144248398],[-10545547.1926063,4658057.9946693312],[-10545545.585462403,4658316.249661495],[-10545543.960298033,4658574.8702714667],[-10545542.333632002,4658833.638117224],[-10545540.717478042,4659092.5779195176],[-10545539.100623321,4659351.6173538361],[-10545537.089117792,4659611.5255268374],[-10545535.080215175,4659871.2463260498],[-10545533.065505847,4660130.7849869085],[-10545531.081129707,4660386.2234758968],[-10545531.049895413,4660390.134069128],[-10545529.040792366,4660649.3313323976],[-10545527.060020395,4660904.8959674891],[-10545527.045805395,4660908.3630639203],[-10545525.017680475,4661167.2082500318],[-10545522.989255149,4661425.8921041591],[-10545520.78542945,4661684.9177616835],[-10545518.578600438,4661944.2797432709],[-10545518.55337297,4661948.0696560768],[-10545516.391694326,4662203.9945954066],[-10545514.194877012,4662464.0659307847],[-10545514.147724679,4662468.4208251918],[-10545511.972830972,4662724.4703391967],[-10545509.759595122,4662985.2078464217],[-10545509.713844007,4662988.4741834449],[-10545507.547160313,4663246.2816799851],[-10545505.352345761,4663507.7087728214],[-10545504.60678317,4663756.2454215083],[-10545503.861020295,4664004.6501595899],[-10545503.104144672,4664252.9259236166],[-10545502.34997208,4664501.0487504806],[-10545501.618825246,4664747.59891182],[-10545500.887978734,4664994.1254280116],[-10545500.142214987,4665240.1302257478],[-10545499.39434915,4665487.0228388524],[-10545499.343685439,4665748.2638421077],[-10545499.29462089,4666002.1118897339],[-10545499.274800301,4666007.8414222179],[-10545499.216126729,4666267.128746205],[-10545499.159152495,4666519.2035479769],[-10545499.152447162,4666525.6591755059],[-10545499.092572037,4666784.476224239],[-10545499.035197916,4667038.1365500195],[-10545499.048815224,4667042.9795092335],[-10545498.981231052,4667301.1351800328],[-10545498.915649068,4667559.0338012092],[-10545498.458520334,4667819.1964493357],[-10545498.000390593,4668079.7648790367],[-10545497.959050486,4668099.5798922237],[-10545496.871994853,4668340.7752542561],[-10545495.693141583,4668602.2026238479],[-10545494.496367751,4668863.4188275617],[-10545493.298392609,4669124.8268922307],[-10545492.107325438,4669386.4292677054],[-10545490.914356176,4669648.2853070861],[-10545490.839564014,4669907.199538473],[-10545490.764571909,4670166.9323962247],[-10545490.710804071,4670426.677113656],[-10545490.654733697,4670686.697600117],[-10545231.952817814,4670684.3743618811],[-10544972.818507662,4670682.0409960439],[-10544713.284640785,4670679.6936575649],[-10544453.29265024,4670677.3345251139],[-10544192.88238191,4670675.9284855081],[-10543932.127219344,4670674.513472084],[-10543670.900117313,4670673.1016606735],[-10543409.230109002,4670671.6802341025],[-10543407.557390459,4670930.5764710633],[-10543405.884271376,4671189.2485480383],[-10543404.188125892,4671447.6923461398],[-10543402.492380781,4671705.9128475115],[-10543398.544560885,4671962.7574758632],[-10543394.57261396,4672221.1337988973],[-10543394.399019394,4672231.8285167124],[-10543393.297385745,4672302.7288812157],[-10543393.070190422,4672481.0095101977],[-10543392.735301981,4672742.3533095121],[-10543135.62670568,4672734.8375836322],[-10542878.329994347,4672727.3095542202],[-10542621.226603987,4672719.7821710045],[-10542364.126217062,4672712.2490232363],[-10542106.842720889,4672704.8880497832],[-10541850.753289621,4672697.5568276113],[-10541593.449269978,4672690.173940449],[-10541335.737283994,4672682.7731079804],[-10541335.675818775,4672696.7018671809],[-10541334.863583161,4672953.3003186611],[-10541334.201401955,4673162.5991087174],[-10541334.092790751,4673198.3745997902],[-10541334.072972011,4673209.196758667],[-10541333.3869802,4673464.40331461],[-10541332.702189479,4673718.8573672641],[-10541074.550203824,4673720.2886016108],[-10540815.21466529,4673721.7200881476],[-10540556.289095372,4673723.1322167944],[-10540297.245090067,4673724.538191244],[-10540038.078144234,4673725.9472426986],[-10539778.790560508,4673727.3497553086],[-10539519.434498496,4673728.7384212147],[-10539259.975318609,4673730.1209329739],[-10539001.537404431,4673726.8901402969],[-10538744.497288041,4673723.6696105618],[-10538486.553839078,4673720.4433082724],[-10538228.496760221,4673717.2103390591],[-10538227.226302151,4673976.7263063565],[-10538225.957445916,4674236.2663089223],[-10538224.685986724,4674495.8471456571],[-10538223.41432731,4674755.4695891272],[-10538222.060273731,4675015.1306930762],[-10538220.70551935,4675274.8150731176],[-10538219.348061901,4675534.5396580426],[-10538217.991105027,4675794.3071440244],[-10537959.281079939,4675790.9182534758],[-10537700.447613738,4675787.5214123847],[-10537441.596527394,4675784.1136716492],[-10537182.705795724,4675780.6999042369],[-10536923.981153034,4675774.860912892],[-10536665.194239154,4675769.0148707172],[-10536405.667279329,4675763.1258690516],[-10536145.635442395,4675757.2200691272],[-10535885.083711177,4675751.3192712069],[-10535624.02680251,4675745.3983408781],[-10535362.400643123,4675739.4407353839],[-10535100.211540245,4675733.4624844203],[-10534842.853961825,4675732.1109099621],[-10534585.562859392,4675730.7516414784],[-10534328.327520685,4675729.3710858319],[-10534071.157656824,4675727.983733817],[-10534074.319376701,4675469.3340181587],[-10534077.495012136,4675209.7229748443],[-10534077.548972581,4675206.3323083753],[-10534080.700381204,4674949.1490102503],[-10534083.904949002,4674687.6132237073],[-10534086.746102555,4674429.2895224402],[-10534089.546611015,4674174.7079706024],[-10534089.589358753,4674171.6007517548],[-10534092.42380511,4673914.5795580242],[-10534095.250843251,4673658.2380707841],[-10534352.606219586,4673660.2799479738],[-10534610.10225671,4673662.3182359003],[-10534867.738954617,4673664.3578065867],[-10535125.436321866,4673666.3912234781],[-10535129.475745026,4673407.5321562886],[-10535133.518171536,4673148.4677309813],[-10535133.543799857,4673145.8036433626],[-10535137.524857128,4672889.2256543888],[-10535141.549563248,4672629.8000430595]]]},"attributes":{"objectid":2481,"field_kid":"1000149895","approxacre":50723,"field_name":"LOUISBURG","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":927732.12,"maxoilwell":212,"lastoilpro":163.71000000000001,"lastoilwel":69,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":503.86000000000001,"avgdepthsl":-531.38999999999999,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149895}},{"geometry":{"rings":[[[-10532152.789358249,4696484.2807741137],[-10532153.113275843,4696224.0678244205],[-10532153.429981129,4695962.9493593536],[-10532153.745681215,4695700.9296887079],[-10532154.06608857,4695439.3483504755],[-10532154.386094939,4695177.657716684],[-10532154.713609453,4694915.8777099857],[-10532155.042224763,4694654.0065385411],[-10532157.915057179,4694393.5063597038],[-10532160.786388228,4694133.1370790899],[-10532163.669833414,4693872.8826282611],[-10532166.552177612,4693612.7395298146],[-10532169.416905649,4693353.5502148541],[-10532172.281232787,4693094.3109790431],[-10532175.133645477,4692834.9398728842],[-10532177.987459071,4692575.4614403145],[-10532177.773160428,4692315.4559257571],[-10532177.558162814,4692055.8647313565],[-10532177.330252362,4691796.7124858601],[-10532177.102043474,4691537.9937612982],[-10532176.881341029,4691278.7940766495],[-10532176.662341181,4691019.7447040398],[-10532176.446445799,4690760.9031672738],[-10532176.232853867,4690502.2498015426],[-10532174.526535338,4690239.2156442516],[-10532172.819414115,4689975.7621924756],[-10532171.12850973,4689711.9033473497],[-10532169.434800286,4689447.6048546722],[-10532167.739789862,4689183.4034908907],[-10532166.040071944,4688918.7051233863],[-10532164.34295501,4688653.5382957468],[-10532162.643633507,4688387.8908466995],[-10532163.179090571,4688127.4988121083],[-10532163.715249106,4687867.274050314],[-10532164.236991804,4687607.2084600078],[-10532164.759536175,4687347.3292463338],[-10532165.278573556,4687086.7911354909],[-10532165.799013833,4686826.5606041281],[-10532166.333471464,4686566.6445607934],[-10532166.86923188,4686307.0343804676],[-10532165.718472997,4686049.3630054547],[-10532165.166493304,4685925.7054212224],[-10532164.426197145,4685790.8307658089],[-10532162.9948665,4685531.4444555091],[-10532161.559831306,4685271.199877602],[-10532160.139112754,4685011.7196171777],[-10532158.71408885,4684751.0730964309],[-10532157.266939223,4684489.2497519078],[-10532155.814082649,4684226.2798350276],[-10532412.947204126,4684228.6640164033],[-10532670.695028253,4684231.0487118056],[-10532674.959903311,4684231.0983841056],[-10532929.024717493,4684233.4530444443],[-10533187.989132263,4684235.8478803085],[-10533193.341750691,4684235.8996069403],[-10533447.27721701,4684238.2355293436],[-10533632.79858114,4684239.93815138],[-10533707.304446205,4684239.4069917891],[-10533711.129918976,4684239.3972405214],[-10533967.99583349,4684237.5879126806],[-10534228.637263659,4684235.7430370254],[-10534486.179551816,4684235.3005729951],[-10534744.141319457,4684234.8514354806],[-10535001.954917733,4684234.399346035],[-10535259.806759717,4684233.940454497],[-10535517.792054253,4684233.4809214277],[-10535775.793667432,4684233.0152279604],[-10536033.807594694,4684232.5441441517],[-10536291.820721032,4684232.0658731963],[-10536291.315349517,4683973.6278210422],[-10536290.810678815,4683715.2267371519],[-10536290.324629391,4683456.8133383598],[-10536289.839480996,4683198.4168849094],[-10536289.365945645,4682939.3703291742],[-10536288.892009718,4682680.0158329559],[-10536288.400053106,4682420.4281024234],[-10536287.907595823,4682160.5886775907],[-10536545.633293968,4682160.5821042368],[-10536803.468917763,4682160.5689868359],[-10537061.383431733,4682160.5567677673],[-10537319.392854191,4682160.5376196792],[-10537577.48306899,4682160.4985824684],[-10537835.639559541,4682160.4517179858],[-10538093.889857326,4682160.406393446],[-10538352.247978356,4682160.3534983387],[-10538609.812692288,4682159.8081192495],[-10538867.686960064,4682159.2536301622],[-10539125.856765648,4682158.6979867481],[-10539384.332420846,4682158.1343881721],[-10539643.118831242,4682157.5488478616],[-10539902.186663328,4682156.9550957466],[-10540161.546629338,4682156.3581362227],[-10540421.210042208,4682155.7557879165],[-10540681.579862781,4682155.7970810113],[-10540941.509179829,4682155.8327275226],[-10541200.872049388,4682155.8596476577],[-10541459.714924546,4682155.8798945751],[-10541718.081355102,4682155.895264755],[-10541975.948815295,4682155.9046033341],[-10542233.304790821,4682155.887892778],[-10542490.170906397,4682155.8650223045],[-10542491.297887854,4682414.1267795311],[-10542492.424268698,4682672.5790952602],[-10542493.556256019,4682931.2276304774],[-10542494.68974511,4683190.0462208074],[-10542495.828239992,4683449.0622143587],[-10542496.967435746,4683708.2677977337],[-10542498.092615534,4683967.6394992033],[-10542499.21989779,4684227.2015884742],[-10542754.591105942,4684231.4509770712],[-10543010.23492571,4684235.6978001231],[-10543266.169477807,4684239.9559187414],[-10543522.417287981,4684244.2112151422],[-10543779.419460442,4684248.4830695735],[-10544037.215540396,4684252.7610862171],[-10544294.670430338,4684257.008814605],[-10544552.175978176,4684261.2515387349],[-10544551.874039881,4684002.6717044264],[-10544551.572101491,4683743.8393166997],[-10544551.274868367,4683484.68137265],[-10544550.976433756,4683225.241144456],[-10544808.363143612,4683223.27680171],[-10545066.041887281,4683221.3014235059],[-10545323.429197816,4683219.3132126294],[-10545580.705781788,4683217.318970792],[-10545838.183095198,4683215.3165167058],[-10546095.368875364,4683213.3111114148],[-10546352.240396313,4683211.3128929995],[-10546608.824188376,4683209.3090284476],[-10546609.662839899,4683467.6292350274],[-10546610.491278576,4683722.6886570025],[-10546610.498788221,4683725.6396370614],[-10546611.341043651,4683983.3693443649],[-10546612.180796091,4684240.7428697627],[-10546610.714213353,4684501.2424880899],[-10546609.24763063,4684761.7980512818],[-10546609.20047868,4684767.212883574],[-10546607.768033057,4685022.4202170474],[-10546606.304754158,4685283.122082971],[-10546606.28983913,4685288.741151019],[-10546604.838772168,4685543.8199646212],[-10546603.35527019,4685804.6336246012],[-10546603.349565228,4685808.9584371243],[-10546602.668728722,4685925.0501480671],[-10546602.467188593,4686065.488111618],[-10546602.092118675,4686326.3620369686],[-10546602.546688125,4686585.8237191709],[-10546603.002256932,4686845.0084224241],[-10546603.448114304,4687104.1410490973],[-10546603.89216885,4687363.1554774446],[-10546604.337923137,4687621.8249662574],[-10546604.782775251,4687880.3172960375],[-10546605.241041353,4688138.5985573838],[-10546605.701308832,4688396.738454028],[-10546610.227111468,4688652.7570402678],[-10546614.770240059,4688909.6987356134],[-10546619.305563737,4689167.2296235096],[-10546623.85380676,4689425.436939274],[-10546628.410359807,4689683.6832899889],[-10546632.974724885,4689942.3746039849],[-10546637.538592339,4690201.4854880869],[-10546642.11077264,4690461.0791586842],[-10546384.992318012,4690461.7472180165],[-10546128.14997909,4690462.4097552039],[-10545870.249029454,4690463.0787136285],[-10545611.772321267,4690463.7418930624],[-10545353.378607819,4690464.384011141],[-10545094.670234416,4690465.0198365375],[-10544835.580725113,4690465.6609273441],[-10544576.157033535,4690466.2970097084],[-10544320.079072092,4690467.5540190684],[-10544062.146089045,4690468.8138539474],[-10543805.428295597,4690470.0587918926],[-10543548.901220137,4690471.2955109244],[-10543544.669981206,4690471.3321116259],[-10543288.687228169,4690472.5661339508],[-10543026.186721021,4690473.8251990797],[-10542766.470197532,4690475.0475352667],[-10542507.905090746,4690476.2592124771],[-10542508.468433559,4690734.1201494671],[-10542509.036790323,4690993.3937967559],[-10542509.611354189,4691252.6685236273],[-10542510.184111457,4691511.1624085465],[-10542510.760578314,4691770.5760635864],[-10542511.338245708,4692029.8468209924],[-10542511.907002458,4692289.0385077856],[-10542512.197803933,4692421.3452806119],[-10542510.653510425,4692468.3383565936],[-10542506.743501691,4692548.2113615721],[-10542514.605653958,4692678.7149631251],[-10542516.844867263,4692808.0701995054],[-10542519.362591982,4692953.3814027365],[-10542518.098911211,4693067.7934713643],[-10542516.281290457,4693232.7627355997],[-10542517.156642623,4693327.535445964],[-10542519.463431511,4693577.0165406875],[-10542519.579124797,4693587.5006366279],[-10542522.548933275,4693847.4607768254],[-10542525.510829033,4694106.761186786],[-10542528.476927325,4694365.6421883404],[-10542531.429703414,4694623.2962790262],[-10542532.824408766,4694883.0043362947],[-10542534.228534937,4695144.429507819],[-10542535.657483514,4695404.8128240556],[-10542537.085430706,4695665.1451120218],[-10542537.962652186,4695823.0173962843],[-10542537.152268987,4695882.2357143816],[-10542537.42763936,4695926.1501651639],[-10542538.789958453,4696142.9406466009],[-10542538.819146866,4696186.8145901682],[-10542538.859809436,4696344.4195992555],[-10542545.887256408,4696431.1878098072],[-10542546.253569402,4696447.3172296369],[-10542547.489601644,4696501.9584282422],[-10542545.981065562,4696706.7423695596],[-10542284.722958069,4696707.218175143],[-10542020.14264827,4696707.6933394009],[-10541972.330427729,4696707.8011692977],[-10541757.340168638,4696707.3748738281],[-10541494.573028296,4696706.8492628047],[-10541440.803888932,4696706.7586874608],[-10541232.645545227,4696705.6578819714],[-10540969.556531696,4696704.256914705],[-10540707.383466603,4696702.8630148964],[-10540524.866670582,4696701.8890324067],[-10540445.134210771,4696700.8115701657],[-10540185.555332504,4696702.612102841],[-10539998.860367045,4696703.9036137192],[-10539927.876731478,4696704.8671472184],[-10539669.263767626,4696708.3587687714],[-10539485.399047576,4696710.8385392772],[-10539410.635751365,4696705.3752956316],[-10539379.846300576,4696703.1067299284],[-10539151.297929879,4696703.6860967176],[-10538891.801839832,4696704.3358934643],[-10538633.305393865,4696704.9921150329],[-10538446.689814605,4696705.4614695981],[-10538376.347908258,4696705.4693326466],[-10538118.240825821,4696709.5682558827],[-10537859.244225087,4696713.6743773287],[-10537850.330223674,4696713.8064807402],[-10537599.481938185,4696715.9278833009],[-10537585.401723957,4696716.0464958046],[-10537354.068387279,4696720.9107742431],[-10537338.869492318,4696720.954084821],[-10537079.752437761,4696722.0822971174],[-10536984.395703763,4696722.4970074305],[-10536821.040229481,4696719.8478598287],[-10536562.168328634,4696715.6289620874],[-10536386.487447102,4696712.7612381121],[-10536303.625108868,4696712.33708099],[-10536044.380612038,4696714.1611320777],[-10535783.590946646,4696715.9889106387],[-10535523.748565383,4696717.8337800624],[-10535264.038935898,4696719.6727387188],[-10535004.273842735,4696721.4966630088],[-10534744.203099621,4696723.3181462297],[-10534484.081898555,4696725.1243380615],[-10534313.723628433,4696726.302379095],[-10534223.856076222,4696726.6329186484],[-10534223.052988699,4696988.3223743243],[-10534222.259399435,4697247.3516140496],[-10534221.929744018,4697358.2512578573],[-10534221.835020393,4697482.5183764827],[-10534221.820822719,4697507.7160098199],[-10534221.669574911,4697768.0968371518],[-10534221.522729784,4698027.9856768176],[-10534221.3766836,4698287.464488334],[-10534221.228836646,4698547.226635132],[-10534221.079988457,4698806.9788364628],[-10534220.724815408,4699069.1497042719],[-10534220.368038373,4699330.8759148447],[-10534220.006854232,4699592.1773574306],[-10534219.645467818,4699853.0566987591],[-10534219.283180734,4700114.0251308503],[-10534218.923192561,4700374.2135439981],[-10534218.577919913,4700634.1333860662],[-10534218.324328447,4700825.2272032741],[-10534219.053178011,4700892.1911957329],[-10534096.314742774,4700893.7568103606],[-10533960.292202236,4700896.5705746626],[-10533704.853634682,4700901.8495829813],[-10533701.62483786,4700901.9228613097],[-10533632.647661434,4700903.3287809454],[-10533443.279932175,4700905.0637430996],[-10533189.40293855,4700907.3826408694],[-10533185.087497244,4700907.4120825129],[-10532927.230646413,4700909.7593939044],[-10532672.735244319,4700912.0709655788],[-10532669.628587173,4700912.1079913052],[-10532412.230561357,4700914.4447621116],[-10532155.056591902,4700916.7731772847],[-10532154.521420646,4700655.2537058285],[-10532153.986949835,4700393.6505911658],[-10532153.457084067,4700131.9939193074],[-10532152.927117901,4699870.2717398657],[-10532152.387035748,4699607.5548503837],[-10532151.847252054,4699344.4100410044],[-10532151.322683841,4699080.8259054553],[-10532150.798213758,4698816.7938663885],[-10532151.004197737,4698556.7941017598],[-10532151.211884689,4698297.0361794727],[-10532151.417370263,4698037.5460417522],[-10532151.623157294,4697778.3171137022],[-10532151.838151483,4697518.3341268357],[-10532152.052548792,4697259.2196956566],[-10532152.258840593,4697000.9666858688],[-10532152.464435438,4696743.5899380846],[-10532152.789358249,4696484.2807741137]]]},"attributes":{"objectid":3025,"field_kid":"1000149155","approxacre":26455,"field_name":"Stilwell","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":86,"maxoilwell":2,"lastoilpro":48,"lastoilwel":2,"lastodate":"7-1983","cumm_gas":1184147,"maxgaswell":45,"lastgaspro":2078,"lastgaswel":30,"lastgdate":"2-2009","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"O&G","field_kidn":1000149155}},{"geometry":{"rings":[[[-10533021.281202616,4678002.1059575323],[-10533024.570057727,4677715.9664589511],[-10533027.84880163,4677430.8126986539],[-10533031.133652328,4677145.1431157654],[-10533034.41850302,4676859.4712709803],[-10533037.700150069,4676573.8480786392],[-10533040.99651346,4676286.9097884707],[-10533044.28887224,4675999.9005705854],[-10533047.624879515,4675709.0493744053],[-10533050.182708137,4675448.0082469145],[-10533052.709902927,4675190.2128893165],[-10533055.258922461,4674931.8812587736],[-10533057.800033219,4674674.2690901747],[-10533060.334035773,4674416.435575569],[-10533062.876147265,4674157.7060528528],[-10533065.40834756,4673899.359652183],[-10533067.972683338,4673637.57592279],[-10533324.400701707,4673645.2811176404],[-10533581.289546831,4673652.9942680104],[-10533632.788814742,4673654.534283624],[-10533838.266491016,4673656.1817073235],[-10534095.250843251,4673658.2380707841],[-10534092.411691654,4673915.6528382068],[-10534089.589358753,4674171.6007517548],[-10534089.546611015,4674174.7079706024],[-10534086.721074792,4674431.6099300375],[-10534083.904949002,4674687.6132237073],[-10534080.731415752,4674946.6133200154],[-10534077.548972581,4675206.3323083753],[-10534077.495012136,4675209.7229748443],[-10534074.336696031,4675468.0479632877],[-10534071.157656824,4675727.983733817],[-10534328.103564691,4675729.3704438964],[-10534585.562859392,4675730.7516414784],[-10534842.860569382,4675732.109884087],[-10535100.211540245,4675733.4624844203],[-10535095.778176293,4676018.4842499886],[-10535091.340207189,4676303.838049545],[-10535091.265824324,4676309.772930094],[-10535086.888722768,4676589.5472521093],[-10535082.414812841,4676875.6168894442],[-10535082.308793724,4676881.3090662267],[-10535077.947510326,4677161.302216161],[-10535073.493122673,4677447.2657831917],[-10535069.090793265,4677729.7737786034],[-10535064.725205017,4678009.9831268173],[-10535255.470841167,4678011.4585546153],[-10535255.006104665,4678271.9158060309],[-10535254.541969052,4678532.9447457707],[-10535254.05650855,4678792.5744668357],[-10535253.572149038,4679051.4645993849],[-10534995.953873226,4679050.9569162894],[-10534738.367233573,4679050.4433324011],[-10534480.756266108,4679049.9242324186],[-10534223.282255189,4679049.3991036024],[-10533967.088607466,4679047.9044479327],[-10533710.448449347,4679046.4000420365],[-10533454.200439477,4679044.8988440018],[-10533198.056248281,4679043.392130225],[-10532941.466648227,4679042.6513667926],[-10532684.957740407,4679041.9047026709],[-10532427.825019525,4679041.161372277],[-10532170.290939864,4679040.4093179461],[-10532171.358665708,4678780.9018368265],[-10532172.425190354,4678521.8898021961],[-10532173.47199253,4678263.0873932745],[-10532174.513288867,4678005.5341864573],[-10532431.441475399,4678004.5079697557],[-10532688.143203063,4678003.4763655849],[-10532944.702968447,4678002.4216734953],[-10533021.281202616,4678002.1059575323]]]},"attributes":{"objectid":4658,"field_kid":"1000149896","approxacre":1487,"field_name":"LOUISBURG NORTHEAST","status":"Abandoned","prod_gas":"No","prod_oil":"No","activeprod":" ","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149896}},{"geometry":{"rings":[[[-10574496.833908919,4695961.4895959953],[-10574497.474257009,4695698.9856181424],[-10574242.421678448,4695699.063756207],[-10573987.254768291,4695699.1349565303],[-10573731.939487323,4695699.1898396295],[-10573476.511076147,4695699.2388128871],[-10573216.031046566,4695698.2879152885],[-10572955.682668427,4695697.3331622835],[-10572696.34885771,4695696.3802024191],[-10572437.714651965,4695695.4235124523],[-10572437.813461758,4695433.1045051925],[-10572437.911675308,4695171.5671357773],[-10572437.990767015,4694910.0655246191],[-10572438.069459755,4694648.8289974919],[-10572443.429527501,4694648.8210030608],[-10572441.954857882,4694391.9618152035],[-10572440.483191647,4694135.0990894586],[-10572438.992102915,4693878.2222919269],[-10572437.498811455,4693621.3216603333],[-10572696.554412749,4693621.3296909984],[-10572955.3900609,4693621.3316850699],[-10573213.970214907,4693621.3087587459],[-10573472.314096991,4693621.2785112904],[-10573726.359034726,4693621.6961063948],[-10573980.824356176,4693622.1092030946],[-10574235.715467609,4693622.5252521923],[-10574491.025961583,4693622.9347475069],[-10574492.18745511,4693879.7785364185],[-10574493.348648585,4694136.6831494803],[-10574748.694379348,4694137.1225728374],[-10575004.460794142,4694137.5554420222],[-10575005.207006671,4694394.5586532885],[-10575005.952819034,4694651.6242417572],[-10575009.297768034,4694651.6222965587],[-10575263.717028851,4694652.0775238499],[-10575378.919392103,4694652.2827190803],[-10575517.983707212,4694651.1256443141],[-10575517.615655066,4694913.0571455099],[-10575517.246503841,4695175.3749249997],[-10575516.892969882,4695437.5849864427],[-10575516.540036965,4695699.8551278887],[-10575516.182094267,4695961.3991116975],[-10575515.822346803,4696222.4599950025],[-10575515.456391232,4696483.3380418699],[-10575515.091931628,4696743.1883385926],[-10575378.858638901,4696745.538694514],[-10575260.156056659,4696745.6178992344],[-10575008.281643461,4696745.7796053533],[-10575005.177371643,4696745.7886185339],[-10574750.099272197,4696745.9521423159],[-10574498.890024317,4696746.1067770002],[-10574494.858585725,4696746.1232486805],[-10574495.5261718,4696484.7777429791],[-10574496.193257738,4696223.5132210618],[-10574496.833908919,4695961.4895959953]]]},"attributes":{"objectid":419,"field_kid":"1000149143","approxacre":988,"field_name":"GARDNER SOUTH","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":1368357.79,"maxoilwell":199,"lastoilpro":5912.4200000000001,"lastoilwel":194,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149143}},{"geometry":{"rings":[[[-10617727.848390779,4678365.6169013726],[-10617727.294040581,4678109.0705972696],[-10617568.424161384,4678110.2917887336],[-10617566.092353646,4677859.5534861432],[-10617563.781663738,4677611.1741352249],[-10617561.462366942,4677361.6262599891],[-10617559.198217906,4677117.8588288324],[-10617559.139165534,4677112.0811533695],[-10617820.549303526,4677107.6393539421],[-10618081.516634254,4677103.1974317245],[-10618341.879872886,4677098.7462820522],[-10618601.69918835,4677094.2983449763],[-10618860.946348278,4677089.8563140286],[-10619119.527244812,4677085.4180096556],[-10619377.421354368,4677081.0006178692],[-10619634.636085493,4677076.5882352544],[-10619638.82324921,4677329.8768770592],[-10619643.051352516,4677585.6094976291],[-10619647.30778205,4677843.4021353545],[-10619651.620766392,4678104.5553026088],[-10619784.315543171,4678104.8179668607],[-10619785.774657378,4678364.2599430466],[-10619787.231970303,4678623.4110543095],[-10619788.68848096,4678882.9975736672],[-10619790.147093451,4679142.7559218407],[-10619532.581340462,4679141.7743246974],[-10619279.816288723,4679140.8030801145],[-10619275.874671854,4679140.8006740902],[-10619020.027788516,4679139.8043114357],[-10618765.042892912,4679138.8055047328],[-10618508.154912937,4679139.0640998799],[-10618249.966743052,4679139.3166762637],[-10618245.964156326,4679139.3115768703],[-10617990.414510032,4679139.5732401097],[-10617729.519338086,4679139.8326367429],[-10617728.96489398,4678880.9857411627],[-10617728.417848902,4678625.6709726192],[-10617728.404240645,4678622.9241535561],[-10617727.848390779,4678365.6169013726]]]},"attributes":{"objectid":567,"field_kid":"1000148256","approxacre":629,"field_name":"CENTROPOLIS","status":"Active","prod_gas":"Yes","prod_oil":"No","activeprod":"GAS","cumm_oil":0,"maxoilwell":0,"lastoilpro":0,"lastoilwel":0,"lastodate":" ","cumm_gas":16799,"maxgaswell":2,"lastgaspro":654,"lastgaswel":2,"lastgdate":"3-1983","avgdepth":927,"avgdepthsl":-153,"polydate":1193788800000,"field_type":"GAS","field_kidn":1000148256}},{"geometry":{"rings":[[[-10589878.715231538,4693659.6918829968],[-10589879.457255701,4693402.5722468887],[-10589880.168961683,4693155.3931347616],[-10589880.198480492,4693146.3322220035],[-10589880.922987621,4692890.9213884193],[-10589881.645694176,4692636.3544552205],[-10590142.10187112,4692634.9293386247],[-10590402.24709251,4692633.4984440906],[-10590662.067442445,4692632.0780847929],[-10590921.558816198,4692630.6513054157],[-10590921.386368543,4692886.9355878336],[-10590921.213721817,4693144.0623149667],[-10590921.025458436,4693402.0550588965],[-10590920.835794566,4693660.8576188693],[-10591181.214311775,4693661.1332849879],[-10591440.847876875,4693661.4035604773],[-10591699.71826903,4693661.6762816897],[-10591957.838703344,4693661.9414284313],[-10591957.844220955,4693672.4188408768],[-10591958.213311415,4693921.1963219792],[-10591958.601536958,4694182.2784840502],[-10591958.624874383,4694192.2306073541],[-10591959.003980694,4694445.2036005305],[-10591959.39801668,4694709.9240215104],[-10591959.302789932,4694971.6350278473],[-10591959.205459742,4695232.3856781935],[-10591959.093812142,4695492.1657485189],[-10591958.983064553,4695750.9876279151],[-10591698.373130703,4695748.9333312204],[-10591437.937996384,4695746.8753073784],[-10591177.479735302,4695744.7913291631],[-10590917.097060315,4695742.7011832036],[-10590656.800984936,4695741.2354926653],[-10590396.45355062,4695739.763635098],[-10590136.199122377,4695738.2653082702],[-10589875.89323508,4695736.7603004556],[-10589616.92217694,4695737.2188495919],[-10589358.140535399,4695737.6708445633],[-10589099.176485371,4695738.1120477747],[-10588840.186005179,4695738.548111679],[-10588840.043937977,4695477.9685957618],[-10588839.902670929,4695217.0106915608],[-10588839.767911119,4694955.9676170629],[-10588839.634553131,4694695.0541901113],[-10589098.558131643,4694694.8187699299],[-10589294.660374114,4694694.6369567215],[-10589357.517951839,4694694.7032173239],[-10589616.56667437,4694694.9670527661],[-10589875.733431824,4694695.2267761799],[-10589876.478456877,4694436.7972809086],[-10589877.204870833,4694184.4843421159],[-10589877.22398207,4694178.0526613975],[-10589877.96860585,4693919.0190201737],[-10589878.681111682,4693671.3011823427],[-10589878.715231538,4693659.6918829968]]]},"attributes":{"objectid":569,"field_kid":"1000147597","approxacre":961,"field_name":"CHANAY","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":9977.3299999999999,"maxoilwell":5,"lastoilpro":60.140000000000001,"lastoilwel":2,"lastodate":"10-2008","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":0,"avgdepthsl":0,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000147597}},{"geometry":{"rings":[[[-10575379.04436364,4690513.3185687028],[-10575490.15454329,4690512.8206575429],[-10575493.293096138,4690772.8333198577],[-10575496.436255451,4691033.1458267327],[-10575496.47351764,4691036.6264024479],[-10575499.583018949,4691293.555790741],[-10575502.736490652,4691554.1464461936],[-10575244.93871467,4691553.8726040544],[-10574987.55401866,4691553.5939752022],[-10574730.169622988,4691553.3158600656],[-10574472.854707239,4691553.0320933834],[-10574476.236375485,4691813.2749515865],[-10574479.63667286,4692074.8878836054],[-10574483.008733654,4692335.7971022669],[-10574486.381294824,4692596.6873178342],[-10574230.25965756,4692595.9244519183],[-10573974.603555968,4692595.1552896369],[-10573719.321985241,4692594.3653166406],[-10573464.318134066,4692593.5712318551],[-10573460.078170815,4692333.3979066089],[-10573455.863646086,4692074.8619417408],[-10573451.639302913,4691815.0924566565],[-10573447.409651952,4691555.0465253172],[-10573443.184004229,4691294.7788812593],[-10573438.954750508,4691034.2058051834],[-10573434.710277524,4690773.3445296502],[-10573430.463299803,4690512.176583712],[-10573686.906019282,4690512.3605930228],[-10573943.667805905,4690512.5370238749],[-10573953.97897221,4690512.5453240611],[-10574200.737446673,4690512.6903371206],[-10574458.12265056,4690512.8367140498],[-10574471.698674083,4690512.8403760102],[-10574715.693568101,4690512.9721741434],[-10574973.586255923,4690513.1051927004],[-10574983.816929569,4690513.1087415889],[-10575231.740444718,4690513.2433469687],[-10575379.04436364,4690513.3185687028]]]},"attributes":{"objectid":678,"field_kid":"1000149137","approxacre":476,"field_name":"EDGERTON NORTHEAST","status":"Active","prod_gas":"No","prod_oil":"Yes","activeprod":"OIL","cumm_oil":323142.04999999999,"maxoilwell":74,"lastoilpro":445.52999999999997,"lastoilwel":38,"lastodate":"2-2009","cumm_gas":0,"maxgaswell":0,"lastgaspro":0,"lastgaswel":0,"lastgdate":" ","avgdepth":890.55999999999995,"avgdepthsl":-115.77333333,"polydate":1193788800000,"field_type":"OIL","field_kidn":1000149137}},{"geometry":{"rings":[[[-10571388.979489291,4690765.6888851477],[-10571388.115984546,4690503.6940984055],[-10571132.888860403,4690502.9025129881],[-10570876.924387652,4690502.102840282],[-10570873.904011587,4690502.0738305002],[-10570620.206147395,4690501.2955940515],[-10570362.752160477,4690500.4988818755],[-10570358.724525258,4690500.4729588609],[-10570104.554717772,4690499.6683977945],[-10569845.599402895,4690498.8408709066],[-10569842.538079927,4690498.849874571],[-10569585.91094433,4690498.0196400965],[-10569325.465914903,4690497.1681048749],[-10569063.831809536,4690495.0283623924],[-10568803.411701236,4690492.8919535792],[-10568543.682487922,4690490.7421858134],[-10568284.822775219,4690488.593698537],[-10568026.823352564,4690486.4529129285],[-10567769.696233755,4690484.3149488736],[-10567513.451129878,4690482.164267119],[-10567258.074325232,4690480.0165353529],[-10567001.645215953,4690478.9542397819],[-10566744.439012308,4690477.8830865808],[-10566487.307294253,4690476.7924127607],[-10566229.960328408,4690475.6926219016],[-10565972.404822562,4690474.5929604191],[-10565714.63436929,4690473.4854661357],[-10565456.675999738,4690472.377715881],[-10565198.503984265,4690471.2634170381],[-10564939.442547938,4690470.6066932222],[-10564680.163360974,4690469.9430355411],[-10564677.223477535,4690469.9153096518],[-10564420.618668236,4690469.2445764327],[-10564160.817079928,4690468.5588323558],[-10564156.951631377,4690468.5376602756],[-10563900.819365794,4690467.8552383576],[-10563640.584879192,4690467.156011804],[-10563637.68594289,4690467.1294415426],[-10563380.102206968,4690466.4569147918],[-10563119.385165093,4690465.7713032309],[-10562866.05362572,4690465.6066696504],[-10562611.881318724,4690465.4349766541],[-10562356.081538755,4690465.2558425572],[-10562098.898466833,4690465.070422058],[-10561840.42821358,4690464.8820537189],[-10561580.639442906,4690464.6870134054],[-10561463.220514568,4690464.5938024782],[-10561319.523642931,4690464.1415128969],[-10561057.058488343,4690463.3082227111],[-10560798.565413931,4690463.961795304],[-10560539.903345009,4690464.6103602899],[-10560528.864541559,4690464.6429018667],[-10560281.107422087,4690465.2631639522],[-10560022.183651974,4690465.9045386575],[-10560007.478329176,4690465.9609837206],[-10559763.096193472,4690466.5411625626],[-10559503.860163832,4690467.1509468388],[-10559492.860805778,4690467.1838735295],[-10559244.479367701,4690467.7763994969],[-10558984.970924597,4690468.3891389528],[-10558725.63047382,4690468.8358266912],[-10558472.2580911,4690469.2669479605],[-10558466.295229046,4690469.2852113592],[-10558206.965290288,4690469.7176442202],[-10557955.596913716,4690470.1302635064],[-10557947.660080031,4690470.1561129168],[-10557688.360676359,4690470.5776297897],[-10557435.027839022,4690470.9828096507],[-10557429.064776735,4690471.0005593663],[-10557169.795908051,4690471.3952357871],[-10556910.550966863,4690471.782848876],[-10556647.044422716,4690472.3898283355],[-10556396.776113136,4690472.9589908142],[-10556385.335346978,4690472.9717571298],[-10556125.446966561,4690473.5561177172],[-10555882.6373404,4690474.0963509697],[-10555867.409916596,4690474.1255728155],[-10555611.146407681,4690474.6974599222],[-10555368.135549923,4690475.2335847253],[-10555356.696085254,4690475.2439110065],[-10555104.037925301,4690475.7909960831],[-10554853.192251129,4690476.3277990706],[-10554595.139782043,4690476.6707160035],[-10554336.569817381,4690477.0070857676],[-10554332.742613066,4690477.0232846411],[-10554077.470844055,4690477.3643910047],[-10553817.852272669,4690477.7034625635],[-10553812.735684451,4690477.7100355988],[-10553557.687772879,4690478.0201910036],[-10553297.000371292,4690478.331399682],[-10553293.173066862,4690478.3472132916],[-10553035.788065761,4690478.6609753417],[-10552774.053258821,4690478.9732162943],[-10552774.087784024,4690223.724590743],[-10552774.123703953,4689967.3928738646],[-10552774.111037686,4689959.2215810781],[-10552774.151808267,4689710.0229637539],[-10552774.193921946,4689451.5905409604],[-10552774.201562172,4689440.7512962753],[-10552774.229922108,4689192.1401152285],[-10552774.260709647,4688931.6490367875],[-10552774.246541658,4688923.4798590029],[-10552774.285683746,4688670.0974832885],[-10552774.327270228,4688407.4879757911],[-10552773.394655172,4688147.9923760705],[-10552772.467352824,4687889.5478449408],[-10552771.538645368,4687630.559858527],[-10552770.610838771,4687371.5532926973],[-10552769.684333438,4687112.5189053426],[-10552768.759029297,4686853.4632457579],[-10552767.814002423,4686594.4105783161],[-10552766.870977538,4686335.3169996832],[-10552768.422903236,4686072.917724316],[-10552769.293472936,4685925.5948899593],[-10552770.026998512,4685816.9058021996],[-10552770.077255426,4685811.3290619804],[-10552771.893702742,4685550.5045659058],[-10552773.65258519,4685297.8965662578],[-10552773.692630049,4685290.459580685],[-10552775.478442425,4685031.1826230986],[-10552777.221706916,4684778.2636680463],[-10552777.271763608,4684772.6874961806],[-10552779.065985981,4684514.9417969463],[-10552780.85590356,4684257.9735757336],[-10552781.469366523,4683997.8341297535],[-10552782.082328895,4683737.5370513136],[-10552782.70580335,4683477.1093024537],[-10552783.328677112,4683216.5610312503],[-10552783.943441518,4682955.8534920588],[-10552784.558306025,4682695.0055605704],[-10552785.184483545,4682434.0083933212],[-10552785.810861284,4682172.870983935],[-10552787.209127991,4681914.3783979006],[-10552788.601087641,4681656.9238561159],[-10552789.044885468,4681578.2158276243],[-10552789.45142366,4681398.3876395719],[-10552790.036854699,4681139.5369612351],[-10552790.607468612,4680880.1782377139],[-10552791.177381665,4680620.4260775866],[-10552791.510941476,4680474.481659539],[-10552793.071530616,4680430.09197581],[-10552792.915839836,4680360.295004054],[-10552792.337831339,4680099.7681236826],[-10552794.423289189,4679840.6499486482],[-10552796.510048544,4679581.3926249277],[-10552796.527868448,4679577.7164972434],[-10552798.580989713,4679322.003475152],[-10552800.663644381,4679062.4772497751],[-10552800.688171804,4679057.5477746287],[-10552802.734485516,4678803.0998841692],[-10552804.82344749,4678543.3857300626],[-10552804.836361773,4678539.8713422054],[-10552806.899694812,4678283.3453312023],[-10552808.993462291,4678022.9879474333],[-10552857.185843607,4678023.2504708525],[-10553068.006950678,4678024.3420611862],[-10553326.388311295,4678025.6719351141],[-10553441.555797445,4678026.2641292466],[-10553584.123628132,4678026.9971938338],[-10553841.207895424,4678028.3134763399],[-10554021.302128214,4678029.2281654542],[-10554097.312634978,4678029.3424481815],[-10554353.014510656,4678029.7220144849],[-10554533.454341223,4678029.9946066607],[-10554608.510048773,4678030.1137667047],[-10554863.03346774,4678030.5124485586],[-10554920.764630774,4678033.8753680373],[-10555046.61251248,4678032.9151314534],[-10555119.66731644,4678032.3534661932],[-10555376.869018571,4678030.3719204599],[-10555559.787602672,4678028.9422961771],[-10555633.791999862,4678028.3666470302],[-10555890.607657639,4678026.3626570497],[-10556076.865185739,4678024.9282762269],[-10556104.929594876,4678027.5668525388],[-10556147.885747958,4678027.5546497256],[-10556397.473584844,4678027.4815887837],[-10556405.360965159,4678027.4568068134],[-10556594.029368808,4678027.1538449833],[-10556663.043120584,4678027.0412502848],[-10556920.909988672,4678026.6138927629],[-10557110.81021047,4678027.7630171282],[-10557179.079405081,4678028.1666924311],[-10557437.03507538,4678029.6862723399],[-10557630.877735851,4678030.8521863725],[-10557694.832763784,4678031.2303516502],[-10557952.434927056,4678032.7458286742],[-10558152.715398982,4678033.9018447148],[-10558209.758269319,4678033.8113522232],[-10558466.919224689,4678033.4000299238],[-10558670.915975012,4678033.0694388058],[-10558723.788744546,4678032.9794735499],[-10558980.412281232,4678032.5374977347],[-10559189.399576914,4678032.182391041],[-10559237.581145732,4678032.1002659071],[-10559495.273412798,4678031.6589278402],[-10559708.042462222,4678031.2734094933],[-10559753.488481756,4678031.1894979393],[-10560012.228254778,4678030.7121138489],[-10560226.968473524,4678030.30734907],[-10560271.506047051,4678031.6444911649],[-10560493.821385771,4678038.3125048261],[-10560531.473132141,4678038.5081098313],[-10560752.073196754,4678039.5649082502],[-10560791.954610018,4678039.7556316201],[-10561053.126883144,4678040.9968661945],[-10561275.364432981,4678041.2944565583],[-10561309.655810751,4678041.3446201039],[-10561463.443858445,4678041.5667664167],[-10561565.477223856,4678041.5337121841],[-10561796.861003295,4678041.475335109],[-10561820.761818994,4678041.4685841259],[-10562075.437613251,4678041.3916577362],[-10562317.000010774,4678041.3363244673],[-10562317.030795308,4677778.3078723969],[-10562317.060376983,4677523.1686017793],[-10562317.043558955,4677516.0186869083],[-10562317.067435352,4677253.9723621728],[-10562317.091210254,4676999.3304829635],[-10562317.107930811,4676992.343687051],[-10562317.14251947,4676730.6976091908],[-10562317.177908335,4676472.8965030657],[-10562317.161690397,4676468.9770605825],[-10562317.158705655,4676368.8069720715],[-10562316.953099106,4676207.2228286108],[-10562316.618662927,4675945.4546642313],[-10562316.768483918,4675685.6434214422],[-10562316.917403761,4675426.4330218462],[-10562317.081741633,4675165.7780350717],[-10562317.246179756,4674904.4097159905],[-10562317.389293214,4674643.6626607152],[-10562317.532506868,4674382.4909359515],[-10562317.686032433,4674121.1925483756],[-10562317.840659449,4673858.9045072366],[-10562058.970897688,4673854.3153289659],[-10561800.189637741,4673849.7199981716],[-10561541.232975749,4673845.1289009517],[-10561463.597286209,4673843.7507386208],[-10561282.24147349,4673840.980908487],[-10561023.236856023,4673837.0044660429],[-10560764.144437386,4673833.0181529913],[-10560504.970524848,4673829.0206872011],[-10560245.604791366,4673825.0119408341],[-10559986.483939482,4673823.8057890115],[-10559727.019291731,4673822.5906635625],[-10559723.320933441,4673822.5737515092],[-10559467.211548913,4673821.3850270547],[-10559207.065216227,4673820.1718272381],[-10559202.079575757,4673820.146200927],[-10558946.500902247,4673818.924396215],[-10558685.625530096,4673817.6704274938],[-10558681.445617342,4673817.635054443],[-10558424.386138789,4673816.4250503052],[-10558399.051368304,4673816.3058949523],[-10558162.805955125,4673813.3539317567],[-10558144.099116074,4673812.4474035855],[-10557904.96347505,4673808.1580694253],[-10557646.143969923,4673803.5074989703],[-10557641.280970655,4673803.4050732292],[-10557386.416719526,4673798.8082128912],[-10557125.805751521,4673794.1018800922],[-10557118.772553483,4673793.9568950841],[-10556864.347007299,4673789.3634991283],[-10556601.971507424,4673784.6180715775],[-10556596.705744414,4673784.5394947417],[-10556338.71289064,4673779.8759825239],[-10556074.55964368,4673775.0918450039],[-10555815.109712016,4673769.8861342762],[-10555556.992815109,4673764.7002946055],[-10555298.431506408,4673759.4845856056],[-10555040.029881472,4673754.2654169379],[-10554781.821979478,4673749.0498401346],[-10554523.793483963,4673743.8302907664],[-10554265.895838998,4673738.5933068004],[-10554008.160681026,4673733.3519657115],[-10553720.12413564,4673742.1093464624],[-10553436.014712121,4673750.738126074],[-10553432.230154583,4673750.837502229],[-10553144.512977289,4673759.5733577646],[-10552862.014709219,4673768.1430416899],[-10552856.982014587,4673768.3148616785],[-10552569.55537218,4673777.0270124087],[-10552286.19991751,4673785.6074839309],[-10552282.334867308,4673785.7416061284],[-10551995.270942891,4673794.4036400188],[-10551708.533794912,4673803.0474742651],[-10551451.873375695,4673803.2998578418],[-10551194.367983585,4673803.546346412],[-10551189.500579251,4673803.5622604853],[-10550936.199427906,4673803.7965552965],[-10550677.30643812,4673804.0294578867],[-10550670.912375988,4673804.0262732906],[-10550417.772009779,4673804.2445410751],[-10550157.550790668,4673804.4620625293],[-10550152.764880165,4673804.4806688],[-10549896.64758632,4673804.6836889898],[-10549635.059693623,4673804.8842908861],[-10549634.554886051,4674065.6982567264],[-10549634.047175471,4674327.6978575848],[-10549633.550177131,4674589.3196452064],[-10549633.053779537,4674851.1041886089],[-10549632.543766323,4675113.0788131524],[-10549632.034253735,4675375.1832645303],[-10549631.514329214,4675637.4621787285],[-10549630.993103234,4675899.8535018312],[-10549627.249368107,4676165.6588389724],[-10549623.514242811,4676430.9263140345],[-10549619.783222333,4676696.2628853805],[-10549616.05470477,4676961.4634837918],[-10549612.333295448,4677226.6208272437],[-10549608.614288894,4677491.5430377638],[-10549604.887973946,4677756.2798627596],[-10549601.166064078,4678020.7617681324],[-10549342.747761207,4678021.1852793889],[-10549177.385288436,4678021.4521194268],[-10549084.838143971,4678021.6035300745],[-10548827.439615123,4678021.9938172325],[-10548660.334335962,4678022.244630076],[-10548570.569294339,4678022.2549395896],[-10548314.236392193,4678022.3092966536],[-10548146.890035417,4678022.3409051206],[-10548058.412576128,4678022.3567256704],[-10547803.13679098,4678022.4029984353],[-10547633.928791001,4678022.4296108829],[-10547548.348166671,4678022.4313124306],[-10547287.05398747,4678024.2330093309],[-10547121.301921666,4678025.3713120436],[-10547025.637070283,4678026.0284198206],[-10546764.100215999,4678027.8125432469],[-10546609.055289173,4678028.8666045647],[-10546502.41158778,4678028.3660894716],[-10546240.590507505,4678027.1031421516],[-10546085.209996434,4678026.3500727508],[-10545978.525348227,4678025.8425029228],[-10545716.271873681,4678024.539920399],[-10545563.779964482,4678023.7800604925],[-10545565.213697104,4678284.1283041202],[-10545566.651734821,4678544.9888392808],[-10545568.108193219,4678804.7991862502],[-10545569.563750405,4679064.1235613497],[-10545310.938223368,4679063.9786490863],[-10545053.183091249,4679063.8264269521],[-10544795.405333266,4679063.6694584498],[-10544537.928319048,4679063.505820143],[-10544537.855133073,4679057.0789460866],[-10544282.873570956,4679055.8699731417],[-10544027.268596232,4679054.6515061241],[-10543771.082757542,4679053.4421454715],[-10543514.227353487,4679052.2239320129],[-10543256.827527117,4679050.9977640007],[-10542998.933435766,4679049.7615890801],[-10542740.396609714,4679048.4962934628],[-10542481.266805839,4679047.2221452305],[-10542480.911106648,4678790.8317383854],[-10542480.564319843,4678540.5288877767],[-10542480.54920046,4678534.7111174054],[-10542480.209519804,4678278.9391471567],[-10542479.869939294,4678023.2769710841],[-10542355.379037119,4678022.2751473533],[-10542096.927808529,4678020.2173470445],[-10541965.092611291,4678019.1648392323],[-10541838.591210974,4678018.1585210115],[-10541580.321089394,4678016.0799423847],[-10541450.476367412,4678015.0326987952],[-10541322.164697809,4678013.9885376235],[-10541322.892431749,4677743.2012030184],[-10541323.623468921,4677470.950443211],[-10541323.657804487,4677460.7705714656],[-10541324.388244135,4677197.2297060871],[-10541325.149715032,4676922.0439832732],[-10541325.172836389,4676908.0280171297],[-10541065.805861926,4676908.6918462785],[-10540806.335869705,4676909.3501604609],[-10540546.716706967,4676910.0116806272],[-10540286.9746037,4676910.6657619905],[-10540027.12287513,4676911.3248449853],[-10539767.129885081,4676911.9767456148],[-10539507.006045464,4676912.6313392846],[-10539246.760867141,4676913.2797766747],[-10539248.068762016,4676636.8994707176],[-10539249.352731433,4676365.7739085602],[-10539249.356934335,4676360.5230594641],[-10539250.654417299,4676084.1492601465],[-10539251.952601071,4675807.7960257065],[-10538993.713213956,4675804.4313712539],[-10538735.293620856,4675801.0582531076],[-10538476.722154155,4675797.6870586118],[-10538217.991305258,4675794.3081699312],[-10538219.348562477,4675534.550942665],[-10538220.705219008,4675274.816098961],[-10538222.060173616,4675015.122230039],[-10538223.413926855,4674755.4707431486],[-10538224.685786493,4674495.8583009094],[-10538225.95704546,4674236.2669500103],[-10538227.226902833,4673976.7164338185],[-10538228.496459879,4673717.2109801136],[-10538486.557943767,4673720.444333978],[-10538744.497087814,4673723.6701234085],[-10539002.297573365,4673726.8996309387],[-10539259.975618951,4673730.1218304504],[-10539519.433997925,4673728.7389340606],[-10539778.790760737,4673727.3507810039],[-10540038.058021234,4673725.9471144099],[-10540297.244889839,4673724.5388322985],[-10540556.290396856,4673723.1328578563],[-10540815.214364948,4673721.720729202],[-10541074.012188835,4673720.2918047803],[-10541332.701889139,4673718.8585211681],[-10541590.889119163,4673728.722454967],[-10541849.067438995,4673738.5792168798],[-10542106.64256933,4673748.4058546573],[-10542363.789009629,4673758.2103180252],[-10542363.867003664,4673495.014102038],[-10542363.944597652,4673232.9546717508],[-10542364.036208065,4672972.0324524026],[-10542364.126016835,4672712.2495360309],[-10542621.20928419,4672719.7822991274],[-10542878.329694005,4672727.3101952076],[-10543135.503364692,4672734.8350191284],[-10543392.73500164,4672742.353950507],[-10543393.053576088,4672493.9037011899],[-10543393.297385745,4672302.7297785776],[-10543394.398819162,4672231.8292858694],[-10543394.572513845,4672221.1346962405],[-10543398.445049454,4671969.1883462276],[-10543402.49218055,4671705.9138729973],[-10543664.512689944,4671708.8018112835],[-10543924.564348791,4671711.6614118805],[-10544185.04870224,4671714.5392172085],[-10544445.188161444,4671717.4061255176],[-10544449.769798608,4671717.4644709816],[-10544706.25678275,4671720.264193546],[-10544967.461359452,4671723.1073929556],[-10544970.877364211,4671723.1598365745],[-10545228.830724534,4671725.9875110639],[-10545490.377091933,4671728.8476332901],[-10545490.45348539,4671468.3951705918],[-10545490.530379402,4671207.9017954925],[-10545490.593357477,4670947.3296989137],[-10545490.655134154,4670686.69811281],[-10545490.710603843,4670426.6733967299],[-10545490.764772139,4670166.9332933882],[-10545490.83876319,4669907.468809667],[-10545490.914055834,4669648.2860760456],[-10545492.105523514,4669386.8083555484],[-10545493.29819238,4669124.827917465],[-10545494.495867176,4668863.4087036885],[-10545495.693241697,4668602.2036490301],[-10545496.869592262,4668341.2042793483],[-10545497.95875014,4668099.5809173444],[-10545498.000190364,4668079.7653916031],[-10545498.458019754,4667819.1718469998],[-10545498.915649068,4667559.0346981399],[-10545498.982931983,4667298.3374475027],[-10545499.048514882,4667042.9801498689],[-10545499.035197916,4667038.1369343977],[-10545499.094171684,4666778.4205647632],[-10545499.15224693,4666525.6598161124],[-10545499.158952268,4666519.2043166999],[-10545499.218126595,4666260.4188403552],[-10545499.274800301,4666007.8425752446],[-10545499.294320548,4666002.1125303004],[-10545499.344685163,4665744.3184025083],[-10545499.39434915,4665487.0237356052],[-10545500.139912663,4665240.9813542096],[-10545500.888178963,4664994.1267090254],[-10545501.619425936,4664747.6156927543],[-10545502.350172309,4664501.0497752512],[-10545503.103744322,4664253.2188710561],[-10545503.860820068,4664004.6511843102],[-10545504.605381565,4663756.2436282849],[-10545505.352345763,4663507.710053659],[-10545507.532544298,4663248.2053112146],[-10545509.713643778,4662988.4746957486],[-10545509.75929478,4662985.2087429613],[-10545511.938393073,4662728.5382041195],[-10545514.147924913,4662468.4212094015],[-10545514.194676783,4662464.0663150027],[-10545516.353452226,4662208.4761653002],[-10545518.553272856,4661948.070552527],[-10545518.578400211,4661944.2807677835],[-10545520.765607622,4661687.2109373771],[-10545522.988954809,4661425.8932566652],[-10545525.034398828,4661165.1012530448],[-10545527.046105744,4660908.3640883332],[-10545527.059920281,4660904.8966077389],[-10545529.072627293,4660645.2664711652],[-10545531.050195757,4660390.1348373909],[-10545531.081229823,4660386.2242441606],[-10545533.086028323,4660128.0697535267],[-10545535.080415402,4659871.24696624],[-10545537.086014424,4659612.0180749111],[-10545539.100122752,4659351.6185061084],[-10545540.722383307,4659091.6266727503],[-10545542.333431773,4658833.6388853714],[-10545543.960097803,4658574.8680950981],[-10545545.58516206,4658316.2504296079],[-10545547.19290665,4658058.0164318681],[-10545548.799549993,4657799.8154489305],[-10545550.424113836,4657541.6651435308],[-10545552.049478615,4657283.5676876782],[-10545810.1925558,4657282.8439375358],[-10546068.474992281,4657282.1137885358],[-10546326.908401335,4657281.3881212212],[-10546585.502193714,4657280.6554152193],[-10546844.181984376,4657279.8665159037],[-10547103.053894648,4657279.0705782035],[-10547362.014105853,4657278.2647850858],[-10547548.201733736,4657277.6814561198],[-10547621.077787222,4657275.6626252187],[-10547622.010969492,4657016.1346847359],[-10547622.940647954,4656757.2142780023],[-10547623.878835944,4656497.4671713309],[-10547624.819426598,4656237.383253145],[-10547625.772231311,4655977.2258219477],[-10547626.726037102,4655716.8122478975],[-10547627.676839367,4655456.1686588395],[-10547628.628642723,4655195.3007033188],[-10547628.412099922,4654934.1007737443],[-10547628.197360694,4654677.1117887571],[-10547628.179238494,4654673.4022493474],[-10547627.964398004,4654413.2341406578],[-10547627.754665244,4654158.2223791648],[-10547627.731236598,4654153.5870657265],[-10547884.727929981,4654153.4529522797],[-10548141.986124655,4654153.3130797101],[-10548399.532451292,4654153.1671920093],[-10548657.364106664,4654153.0151612367],[-10548915.754605902,4654152.8623612784],[-10549175.069970705,4654152.7013691748],[-10549435.327120559,4654152.5265543796],[-10549696.510437489,4654152.343547456],[-10549696.442761483,4654159.3541660011],[-10549952.970414229,4654158.4650538797],[-10550209.747954886,4654157.5671115611],[-10550466.756762009,4654156.6635382548],[-10550724.015757397,4654155.7512627356],[-10550981.51042437,4654154.9933137223],[-10551239.235456754,4654154.2283260673],[-10551497.222791361,4654153.4364649728],[-10551755.458812499,4654152.6367973974],[-10552037.080777105,4654150.903687574],[-10552318.155110803,4654149.1669963952],[-10552598.700835513,4654147.418022153],[-10552878.724158378,4654145.6650826102],[-10553158.00822957,4654143.9039554447],[-10553436.360727498,4654142.1419352014],[-10553713.807381822,4654140.397064982],[-10553990.34318676,4654138.6495101014],[-10553990.359173751,4653879.9840206103],[-10553990.375160675,4653620.9065099228],[-10553990.382737875,4653361.4298048457],[-10553990.390615361,4653101.5370458197],[-10554247.625293065,4653101.995377142],[-10554501.72465835,4653102.4418166],[-10554504.895611824,4653102.4420646727],[-10554762.184952486,4653102.8682797132],[-10555015.229101969,4653103.2828615438],[-10555019.523149434,4653103.2833627416],[-10555276.823502773,4653103.7180226697],[-10555530.937584981,4653104.1388715599],[-10555534.149085168,4653104.1405270174],[-10555791.460951755,4653104.5385924121],[-10556048.776822943,4653104.9303881153],[-10556051.07445862,4652848.4011666449],[-10556053.367789406,4652592.3721158234],[-10556055.654712804,4652335.4327516202],[-10556057.94463969,4652078.0681630736],[-10556060.249483783,4651820.0635762094],[-10556062.556029866,4651561.7750784718],[-10556064.859872874,4651303.3821775392],[-10556067.168120978,4651044.4202498849],[-10556324.550989011,4651044.8543300424],[-10556582.170429626,4651045.2815015847],[-10556584.979666552,4651045.2662715279],[-10556600.908019911,4651045.3044836018],[-10556824.18288715,4651044.0697081937],[-10556840.004417419,4651044.1180267604],[-10557098.019013356,4651044.8994275127],[-10557356.225029834,4651045.6590802502],[-10557614.638585435,4651046.4132316532],[-10557873.264786046,4651047.1754419981],[-10558132.101329003,4651047.932278946],[-10558391.560889691,4651051.6845294097],[-10558650.422761628,4651055.4209196232],[-10558653.029565301,4651055.43831148],[-10558908.709971339,4651059.1249469006],[-10559166.419415252,4651062.8349894164],[-10559423.58122809,4651066.5298111541],[-10559538.838432349,4651068.1841479968],[-10559680.160769921,4651070.4616850819],[-10559936.168552857,4651074.5674152477],[-10560191.594265025,4651078.6594601301],[-10560188.383493144,4650822.5905172005],[-10560185.142186293,4650564.0235348288],[-10560185.081817137,4650560.2334892331],[-10560181.847517954,4650304.8498396566],[-10560181.83730628,4650303.9926620899],[-10560177.380774405,4650044.7335668085],[-10560177.284775313,4650039.7756561032],[-10560172.949761145,4649789.8596429499],[-10560168.444172589,4649530.1431149794],[-10560168.29171994,4649520.2276659114],[-10560167.036140427,4649448.151167416],[-10560164.10748367,4649268.0159219783],[-10560159.768302515,4649001.0468683727],[-10560154.710888583,4648735.9060206795],[-10560149.748772217,4648475.7529720683],[-10560146.116224201,4648286.2171652],[-10560144.786451427,4648217.1057846313],[-10560139.857261969,4647961.12479172],[-10560139.687485658,4647952.7412842093],[-10560134.811848998,4647700.3177156467],[-10560129.764133884,4647438.9841411225],[-10560129.642007904,4647432.5745123969],[-10560124.698398255,4647177.228839878],[-10560119.621450046,4646915.0138655091],[-10560116.693171078,4646656.2830402702],[-10560113.748676531,4646396.0234384732],[-10560113.600639025,4646381.6400082642],[-10560110.822806664,4646134.2058954705],[-10560107.866304677,4645870.8169773286],[-10560107.663515504,4645851.4390174765],[-10560104.898995152,4645605.1159973675],[-10560101.902954997,4645338.1448927587],[-10560101.740199488,4645324.1649201754],[-10560098.882188892,4645069.8707770221],[-10560095.852114601,4644800.3011674564],[-10560095.592507008,4644543.5720438194],[-10560095.332898069,4644287.4167067977],[-10560095.084603431,4644030.7129504737],[-10560094.837710697,4643773.8742339909],[-10560094.604033271,4643517.0043666856],[-10560094.371656066,4643260.6806242708],[-10560094.131371854,4643003.4301626906],[-10560093.890788293,4642745.7403092971],[-10560094.47095363,4642487.4306156682],[-10560095.053522874,4642228.6739365188],[-10560095.050429052,4642224.4460519431],[-10560095.605457865,4641969.4728618637],[-10560095.741659643,4641906.8117449079],[-10560095.360974398,4641709.8302381784],[-10560095.35617852,4641705.6433385322],[-10560094.886629153,4641448.5975062223],[-10560094.412482284,4641188.1470599053],[-10560093.935730368,4640928.556413793],[-10560093.461179033,4640669.7915087491],[-10560090.130214402,4640417.1421505874],[-10560086.825275032,4640166.3834029362],[-10560086.772721006,4640163.4839773886],[-10560083.420435507,4639908.8138691531],[-10560080.145025095,4639659.8991924124],[-10560080.074559271,4639653.1349679334],[-10560076.73078171,4639398.8894874975],[-10560073.461176367,4639150.3012541868],[-10560073.380495571,4639144.9045817843],[-10560070.054636648,4638891.1588930767],[-10560066.731379701,4638637.6676082937],[-10560323.857483743,4638638.2112576934],[-10560580.609355301,4638638.7473689904],[-10560836.962766355,4638639.2899970273],[-10561092.923723882,4638639.8244481413],[-10561348.579628853,4638640.3569830079],[-10561463.933417695,4638640.5943873711],[-10561603.812443307,4638641.4656374408],[-10561858.734997815,4638643.0365675529],[-10562113.363412244,4638644.6005984992],[-10562111.491986668,4638387.2001431761],[-10562109.619359532,4638129.7747121751],[-10562107.730913956,4637872.3168971445],[-10562105.841967685,4637614.8127747579],[-10562103.967737947,4637357.3880592762],[-10562102.094208207,4637100.159765223],[-10562100.200956814,4636842.4454450514],[-10562098.305303097,4636584.4845299842],[-10562097.256322956,4636328.2832279857],[-10562096.207143037,4636071.8761439919],[-10562095.154359229,4635815.3302268833],[-10562094.232435429,4635590.6765218889],[-10562094.335145844,4635558.6176410876],[-10562095.20878922,4635302.1735720262],[-10562096.08163069,4635046.1220228635],[-10562096.122718578,4635032.0030514365],[-10562097.776626654,4634788.8500775564],[-10562099.533696722,4634530.8605332877],[-10562356.843803411,4634531.7095892681],[-10562608.130343102,4634532.5336157698],[-10562612.936902391,4634532.5516214082],[-10562868.403776973,4634533.3875233894],[-10563118.28969649,4634534.1981401714],[-10563123.057010394,4634534.2144854805],[-10563378.312740564,4634535.0374879194],[-10563629.650338914,4634535.8419733364],[-10563633.296556136,4634535.8572975472],[-10563888.011460584,4634536.669699599],[-10564142.493896063,4634537.4752049372],[-10564404.279879672,4634538.0396986036],[-10564666.211631808,4634538.5987002337],[-10564670.497789253,4634538.5963987252],[-10564928.317785593,4634539.1560413949],[-10565190.608452674,4634539.7200238761],[-10565196.256885706,4634539.7270451048],[-10565453.067314386,4634540.239942898],[-10565715.690065572,4634540.7590955086],[-10565719.535513198,4634540.7796561178],[-10565978.466594445,4634541.3059632331],[-10566241.410116456,4634541.8336728681],[-10566498.296034222,4634541.8376069563],[-10566755.06912151,4634541.8348996853],[-10567011.746698391,4634541.8180155531],[-10567268.328364365,4634541.7951286556],[-10567524.815020429,4634541.7779892161],[-10567781.186243016,4634541.7542083999],[-10568037.463156588,4634541.7162507456],[-10568293.644259376,4634541.6724180402],[-10568548.410618383,4634543.2402827963],[-10568803.341066988,4634544.8024002155],[-10569058.397360906,4634546.36783842],[-10569313.597921493,4634547.9282956114],[-10569314.006834276,4634807.8079772973],[-10569314.41585012,4635067.0760395397],[-10569314.831076032,4635325.7420158274],[-10569315.24390211,4635583.7973026698],[-10569315.661336359,4635841.2596094189],[-10569316.07817276,4636098.1299134847],[-10569316.480695393,4636354.4219667176],[-10569316.880417857,4636610.0744080534],[-10569317.257207692,4636866.9847694198],[-10569317.633193457,4637124.5371254468],[-10569318.028499169,4637382.5779628232],[-10569318.423801636,4637641.2805588497],[-10569318.956760291,4637900.5773776397],[-10569319.490817651,4638160.3924443545],[-10569320.006551322,4638420.7185156951],[-10569320.522883032,4638681.5825903676],[-10569325.891386019,4638681.6177217886],[-10569579.66781163,4638682.8656508084],[-10569828.92491526,4638684.0845806086],[-10569832.971090373,4638684.1107694414],[-10570085.807729857,4638685.3353174636],[-10570338.168919848,4638686.5507942997],[-10570595.395627109,4638688.6370280525],[-10570852.841687554,4638690.7181510245],[-10570856.285967076,4638690.7629951304],[-10571110.546947109,4638692.8166509327],[-10571368.51430933,4638694.8943241276],[-10571373.081286082,4638694.9401892358],[-10571626.732160674,4638696.9744250113],[-10571885.190689893,4638699.0408543898],[-10571888.595623946,4638699.0840375442],[-10572143.907016568,4638701.1297715874],[-10572402.868226027,4638703.1973509667],[-10572659.794091688,4638703.8301859479],[-10572916.801451474,4638704.4554823209],[-10573173.777274756,4638705.0756678563],[-10573430.734876949,4638705.6874205051],[-10573687.780280523,4638706.2970009325],[-10573944.867632518,4638706.9001927497],[-10574201.947275553,4638707.4980181511],[-10574459.041235093,4638708.0885605775],[-10574458.390202496,4638449.5553518888],[-10574457.73757115,4638190.5196383623],[-10574457.742906557,4638185.8521234011],[-10574457.129394004,4637931.0240025977],[-10574456.501797391,4637671.0465049548],[-10574456.472901059,4637665.1307691121],[-10574455.826643115,4637411.4916904569],[-10574455.164008396,4637151.1147093559],[-10574455.162548812,4637144.3946902128],[-10574454.542225225,4636890.0405625664],[-10574453.902027063,4636627.9518551575],[-10574710.764344377,4636631.9728216361],[-10574967.885560434,4636635.9899568791],[-10575225.300615603,4636640.0096481247],[-10575379.273094054,4636642.409991161],[-10575482.978001531,4636643.2372127585],[-10575740.862441631,4636645.3178561162],[-10575999.017491827,4636647.393900184],[-10576257.329021445,4636649.454231563],[-10576515.858600946,4636651.5107303327],[-10576630.874777053,4636650.8813447049],[-10576770.099879125,4636651.7629631311],[-10577025.487461837,4636653.3735147854],[-10577034.541134205,4636653.4151212741],[-10577282.0615041,4636654.9513588538],[-10577539.837723611,4636656.5444000363],[-10577551.854991158,4636656.6110321255],[-10577799.625447568,4636658.1580002252],[-10578059.994637694,4636659.7763250358],[-10578067.84583243,4636659.8149985578],[-10578320.922267772,4636661.3761247545],[-10578582.435168382,4636662.9821820064],[-10578578.865827333,4636921.2198518496],[-10578575.298890391,4637179.2401939239],[-10578571.742163148,4637437.5705681304],[-10578568.185836148,4637695.9285226688],[-10578568.115328098,4637700.1912056785],[-10578562.259894261,4637954.2720351899],[-10578556.302815996,4638212.7144232206],[-10578550.353145355,4638471.2809923841],[-10578544.401571672,4638729.9688134445],[-10578798.601606706,4638732.7736201165],[-10579055.641195081,4638735.6044829739],[-10579069.420982383,4638735.7725801375],[-10579315.512527702,4638738.4858065536],[-10579578.217406899,4638741.3767038267],[-10579589.955054605,4638741.5113323694],[-10579839.006891677,4638744.248188029],[-10580100.714328293,4638747.1177535038],[-10580109.52702485,4638747.2296494804],[-10580363.346724626,4638750.0066103972],[-10580626.936818385,4638752.8830710975],[-10580884.059811966,4638754.2486488177],[-10581112.554605411,4638755.4567890419],[-10581141.603687912,4638755.5976149514],[-10581147.534983717,4638755.6069204854],[-10581399.564542543,4638756.8029637644],[-10581657.924053876,4638758.0226219315],[-10581665.817397553,4638758.0599024054],[-10581916.694636282,4638759.2328237463],[-10582175.885600403,4638760.438041212],[-10582181.45478115,4638760.4734136742],[-10582435.467412343,4638761.6477295896],[-10582695.451485295,4638762.8423396507],[-10582695.843239084,4638505.4793973053],[-10582696.22785526,4638252.842844245],[-10582696.224980073,4638248.3360215481],[-10582696.597208923,4637991.3966087308],[-10582696.959287278,4637740.6943422332],[-10582696.970537804,4637734.6588437082],[-10582697.701274356,4637478.21827171],[-10582698.417459765,4637227.3089273414],[-10582698.444224047,4637221.9190126341],[-10582698.498889295,4637205.4649071302],[-10582697.348765999,4636965.8607086763],[-10582696.121855453,4636710.116533855],[-10582950.200260073,4636708.3760485146],[-10583205.368513361,4636706.6225283947],[-10583460.184362829,4636704.8765468849],[-10583715.136668649,4636703.122389039],[-10583969.927589599,4636701.3575011864],[-10584224.664448606,4636699.5880147293],[-10584479.012161676,4636697.8288774854],[-10584733.949350135,4636696.0588792795],[-10584990.986221919,4636697.9009150509],[-10585247.51120734,4636699.7341390634],[-10585504.553986099,4636701.5539480336],[-10585761.794891926,4636703.3689023564],[-10585761.481158048,4636960.6776937013],[-10585761.167023174,4637218.080061635],[-10585760.867704883,4637475.5512284422],[-10585760.570088115,4637733.0989928134],[-10585760.565606596,4637990.7503174571],[-10585760.562526448,4638248.4465667587],[-10585760.573261553,4638506.2433238514],[-10585760.584496636,4638764.1440463169],[-10585759.548731081,4639022.216594846],[-10585758.515269501,4639280.0741913253],[-10585757.478506081,4639537.6177884145],[-10585756.444146996,4639794.9055049364],[-10585755.41909929,4640052.0799338752],[-10585754.394853108,4640309.1593410866],[-10585753.375511531,4640566.4076163452],[-10585752.359477796,4640822.9962561857],[-10585752.167766688,4641083.1720522605],[-10585751.975453412,4641343.5970192757],[-10585751.764817497,4641604.295715495],[-10585751.553879574,4641865.2713571228],[-10585751.379779937,4642126.896033328],[-10585751.203170918,4642389.5905701555],[-10585751.041383844,4642651.4808095582],[-10585750.878897211,4642913.1723216511],[-10585494.010358853,4642910.9651851524],[-10585236.90945431,4642908.7512753382],[-10584980.041116344,4642906.532252769],[-10584723.019202476,4642904.3067123564],[-10584723.515272601,4643163.978404738],[-10584724.011245862,4643423.1316708699],[-10584724.494007207,4643681.7687725965],[-10584724.855327372,4643875.7497925935],[-10584724.970088163,4643935.983354196],[-10584724.994692322,4643939.8890317157],[-10584725.432308393,4644197.4926651381],[-10584725.863637118,4644451.8767671883],[-10584725.851506615,4644454.5743923644],[-10584726.277415827,4644711.1282932116],[-10584726.70232746,4644967.1109870719],[-10584986.024203761,4644968.3256999543],[-10585240.967462339,4644969.5129338792],[-10585244.696235465,4644969.5218761833],[-10585502.725430498,4644970.7204831084],[-10585755.152906157,4644971.8859880092],[-10585760.124603668,4644971.8985077227],[-10585848.649350962,4644972.2887908686],[-10586016.809656564,4644973.3892551214],[-10586269.271368582,4644975.035093192],[-10586272.879403381,4644975.0394331366],[-10586524.321947545,4644976.6710823113],[-10586528.273475848,4644976.6977953641],[-10586783.258479087,4644978.4345309883],[-10587039.724987211,4644979.0089788735],[-10587296.803696955,4644979.579845883],[-10587301.855486244,4644979.5930047156],[-10587554.741991887,4644980.1367756855],[-10587813.475297961,4644980.6846267134],[-10587820.332956893,4644980.6810337026],[-10588073.702015644,4644981.2102290429],[-10588334.31817957,4644981.7477207882],[-10588338.649343167,4644981.7368451897],[-10588596.154341782,4644982.260151661],[-10588643.818364363,4644982.3569703531],[-10588795.477160085,4644983.3358832337],[-10588856.846278545,4644985.1366636241],[-10589092.425346578,4644986.232014914],[-10589294.129695022,4644987.1651896043],[-10589330.257898098,4644987.1649922468],[-10589567.876110174,4644987.0637890408],[-10589806.03173816,4644986.9568315251],[-10590043.782702437,4644986.8437379543],[-10590281.725486575,4644986.7236122387],[-10590519.851280522,4644986.590956823],[-10590758.142464029,4644986.4530592049],[-10590756.26627028,4645247.1436033305],[-10590754.393181328,4645507.6258477475],[-10590752.511784073,4645767.9007996079],[-10590750.630287636,4646028.019844248],[-10590748.750995643,4646287.8158482956],[-10590746.873008106,4646547.1105367914],[-10590745.007938271,4646805.917298438],[-10590743.145875119,4647064.1763781765],[-10591002.082427982,4647065.9118244546],[-10591261.041406624,4647067.6399822878],[-10591519.987971216,4647069.3426932991],[-10591778.938640594,4647071.038883145],[-10592037.884704653,4647072.7467102678],[-10592296.834873484,4647074.4492949955],[-10592555.802862925,4647076.1260491777],[-10592814.773455426,4647077.794875538],[-10592814.019877058,4647337.1295176521],[-10592813.265798688,4647596.3704606965],[-10592812.518328346,4647855.5362411533],[-10592811.771559382,4648114.6095883558],[-10592811.028194658,4648373.6277121417],[-10592810.284129236,4648632.6324303821],[-10592809.533057272,4648891.3862334993],[-10592808.781786168,4649149.9565071017],[-10593068.284412272,4649151.0972021781],[-10593322.650951771,4649152.2089954447],[-10593327.142699866,4649152.2409676872],[-10593585.377573121,4649153.3541652849],[-10593837.721794933,4649154.4352640491],[-10593843.017164184,4649154.4548291666],[-10594100.397057483,4649155.5771090416],[-10594354.036463719,4649156.6764974417],[-10594357.60645551,4649156.6777738016],[-10594614.657071633,4649157.7678230572],[-10594871.51586796,4649158.8513496947],[-10594869.787189627,4649418.7306043366],[-10594868.056306101,4649679.0732128518],[-10594866.308502279,4649939.5736282226],[-10594864.559895845,4650200.3683484485],[-10594863.868306406,4650304.1555784391],[-10594863.333562419,4650461.6884218296],[-10594862.441722164,4650723.7518624561],[-10594861.51624392,4650985.1436153408],[-10594860.591466665,4651246.3269888097],[-10595119.375286005,4651245.1816254668],[-10595324.274542596,4651244.2693786565],[-10595378.615727946,4651244.9849849753],[-10595638.368754324,4651248.4665650371],[-10595898.726473786,4651251.9472502144],[-10596159.578960348,4651255.4116890421],[-10596421.006205687,4651258.8756167749],[-10596682.981278932,4651262.3432550896],[-10596945.530910717,4651265.8116616057],[-10596940.737098882,4651521.6022124309],[-10596935.95860531,4651776.5865025539],[-10596931.220759055,4652030.7492470993],[-10596926.497229928,4652284.0870585088],[-10596921.747971186,4652537.6073170817],[-10596916.987599153,4652791.811978369],[-10596912.274181917,4653044.8839238156],[-10596907.549951812,4653298.5571132153],[-10596647.158998249,4653295.5777693121],[-10596391.994635269,4653292.6498596445],[-10596387.260609234,4653292.6110931942],[-10596382.325652899,4653292.5642657634],[-10596204.942540944,4653290.3895630669],[-10596127.90784503,4653290.3096539387],[-10595876.08721232,4653290.0488308622],[-10595869.063662032,4653290.0522913439],[-10595610.780321877,4653289.7690814305],[-10595358.064362977,4653289.4858669834],[-10595353.047913205,4653289.4766583135],[-10595095.89617007,4653289.1961345086],[-10594839.317784106,4653288.9113877127],[-10594838.118794864,4653547.4556487063],[-10594836.91710213,4653806.4791260688],[-10594836.871043274,4653813.7718937984],[-10594835.700692147,4654065.9800647786],[-10594834.493091894,4654325.927660997],[-10594834.442925217,4654336.9683360886],[-10594833.271174926,4654586.2603948331],[-10594832.980790637,4654648.157828128],[-10594830.364126017,4654847.1973892981],[-10594830.236772947,4654855.7374961609],[-10594829.812360214,4654887.3607677529],[-10594828.357909141,4655108.726530307],[-10594826.635717325,4655370.84632813],[-10594823.573192419,4655629.1856639516],[-10594820.583756482,4655881.3028951734],[-10594820.491545536,4655887.6272538006],[-10594817.443236796,4656146.1717453934],[-10594814.490544425,4656396.5793003151],[-10594814.372602381,4656404.8382177511],[-10594814.026782643,4656432.9611576311],[-10594814.044784991,4656575.2907497464],[-10594812.224425115,4656663.6891415399],[-10594811.65374798,4656691.4193293005],[-10594809.313878842,4656916.7908310909],[-10594809.232480559,4656922.7940371111],[-10594806.52756501,4657181.8928195192],[-10594803.813438166,4657441.8947200133],[-10594801.837859135,4657700.3207666762],[-10594799.859576663,4657959.1784708668],[-10594797.888803085,4658217.7048878828],[-10594795.917729234,4658476.1652493309],[-10594793.936443895,4658734.3845430892],[-10594791.953656804,4658992.6527300281],[-10594789.988690099,4659250.9808244109],[-10594788.023122707,4659509.3286286928],[-10594785.258738991,4659768.6229966627],[-10594782.564741466,4660021.3013768885],[-10594782.480640046,4660027.3472489743],[-10594779.735579476,4660285.4859773219],[-10594777.077225164,4660535.3560286146],[-10594776.978205282,4660543.0547591103],[-10594774.239653168,4660800.0280696116],[-10594771.560774079,4661051.4520499595],[-10594771.501101267,4661056.772604703],[-10594768.755140897,4661313.5048884284],[-10594766.013886448,4661569.6291926578],[-10594764.032399297,4661829.9603281375],[-10594762.043102501,4662091.1516424734],[-10594760.050202599,4662351.123119439],[-10594758.062308889,4662610.5647144755],[-10594756.093137302,4662869.2179327849],[-10594754.125968333,4663127.5037064729],[-10594752.160401506,4663385.4339193152],[-10594750.198639341,4663643.0177665669],[-10594752.53461493,4663765.5190664399],[-10594752.523087762,4663902.8265695879],[-10594752.562130416,4663905.3418246713],[-10594756.556590438,4664168.0240908451],[-10594760.551251672,4664429.5062030219],[-10594764.534600517,4664690.2875209758],[-10594768.498327501,4664950.2894655],[-10594772.451843288,4665209.6710822424],[-10594776.41336895,4665468.2055743933],[-10594780.372792283,4665726.6208009692],[-10594526.66672482,4665725.9592176909],[-10594271.54183127,4665725.2864922741],[-10594266.158861961,4665725.264598541],[-10594172.708860768,4665725.0279505523],[-10594015.069592932,4665725.3533513509],[-10593757.301969603,4665725.8798736753],[-10593750.31055687,4665725.8834778303],[-10593498.762361513,4665726.4130596798],[-10593372.635209212,4665726.6759938877],[-10593238.639138781,4665726.5788289532],[-10593232.772214802,4665726.5806368245],[-10592976.90036477,4665726.3890957925],[-10592713.541233722,4665726.1834808793],[-10592712.1962821,4665984.7186930142],[-10592710.868052589,4666239.6557485256],[-10592710.860741127,4666243.4472393002],[-10592709.515989415,4666502.4107735893],[-10592708.195569394,4666756.7024452379],[-10592708.149712875,4666761.583561074],[-10592706.814772112,4667020.9293577997],[-10592705.497554468,4667276.8432430262],[-10592705.494047467,4667280.5149327572],[-10592704.152999386,4667540.2822600724],[-10592702.809648501,4667800.2782515949],[-10592703.596638925,4668060.5176550727],[-10592703.713941753,4668099.409787368],[-10592703.440047039,4668321.8750731843],[-10592703.109156152,4668582.3210096434],[-10592702.777364427,4668842.5274102818],[-10592702.462492313,4669102.473880522],[-10592702.147420118,4669362.2392166341],[-10592701.828844149,4669621.7253630608],[-10592701.510768928,4669881.0063765412],[-10592959.708674181,4669883.3996816799],[-10593218.11211499,4669885.7865784727],[-10593476.752927834,4669888.1618121583],[-10593735.638921665,4669890.5320471572],[-10593994.711429235,4669892.9074085001],[-10594254.008093689,4669895.2782838689],[-10594513.506589463,4669897.6336513357],[-10594773.143443787,4669899.9842767585],[-10594772.131367689,4670160.6040578913],[-10594771.114985483,4670422.6440677382],[-10594770.112319823,4670683.6992574325],[-10594769.112157201,4670944.5642416626],[-10594768.102183551,4671205.1801717952],[-10594767.092810608,4671465.7842943743],[-10594766.074127588,4671725.690943677],[-10594765.056746453,4671985.1333702775],[-10594506.325935483,4671982.113571493],[-10594248.193009691,4671979.0942842066],[-10593989.9072087,4671976.071152444],[-10593731.72963172,4671973.0423807055],[-10593473.656174056,4671970.0133529548],[-10593215.709161291,4671966.9791979389],[-10592957.857057283,4671963.944274175],[-10592700.05120627,4671960.9019160122],[-10592698.503221307,4672220.5361405332],[-10592696.955737095,4672479.9600606523],[-10592695.421167847,4672739.2071201745],[-10592693.887299586,4672998.2384606628],[-10592692.341718256,4673256.8459893018],[-10592690.791531105,4673516.1386743402],[-10592689.230632477,4673774.4650770687],[-10592687.671135742,4674032.447221539],[-10592428.229313144,4674030.7853218811],[-10592169.28025526,4674029.1190613378],[-10591910.788921943,4674027.4366443027],[-10591661.585332451,4674025.8080447726],[-10591652.733588122,4674025.9477016684],[-10591565.704350226,4674027.4035006538],[-10591394.940253614,4674025.6215360491],[-10591393.855910944,4674025.6201295154],[-10591134.814646302,4674025.2880704207],[-10590876.117776347,4674024.9388293466],[-10590617.578887446,4674024.5844591176],[-10590617.756184386,4674283.9654338341],[-10590617.928381078,4674536.317511146],[-10590617.950401206,4674542.7383075003],[-10590618.134607024,4674800.9258580031],[-10590618.313212315,4675051.7122359378],[-10590618.322817929,4675058.4968816517],[-10590618.449391695,4675273.9409330469],[-10590618.018864429,4675316.558991259],[-10590615.466438869,4675568.7183551509],[-10590615.401760411,4675574.1668896778],[-10590614.369094849,4675677.4751880933],[-10590614.86113641,4675831.3325806139],[-10590615.682373546,4676087.9548515035],[-10590614.857731875,4676335.3039993271],[-10590614.032188971,4676582.9214071957],[-10590614.024776561,4676587.8481339058],[-10590613.198436508,4676830.7400200777],[-10590612.354171844,4677078.7590832217],[-10590612.349061204,4677084.7768411627],[-10590611.53433557,4677326.2965454804],[-10590610.698080409,4677573.9347968949],[-10590610.689266356,4677578.9030450834],[-10590609.881848041,4677821.7635000655],[-10590609.244665314,4678013.6801792942],[-10590607.655800018,4678069.6517157918],[-10590409.581010411,4678069.2976094931],[-10590386.72321585,4678069.2519115359],[-10590166.895097401,4678068.8164450098],[-10589947.661660429,4678068.4059878141],[-10589895.486969315,4678068.3080765782],[-10589895.344801404,4678328.153209663],[-10589895.203435132,4678587.0901259966],[-10589895.196324054,4678590.8068053871],[-10589895.040143386,4678846.4869395345],[-10589894.88045579,4679105.8573817918],[-10589894.883254442,4679111.6342745237],[-10589894.734183155,4679365.7669165358],[-10589894.58120233,4679626.3078220766],[-10589894.578996047,4679631.0748931244],[-10589894.432025693,4679887.0857887045],[-10589894.280645499,4680149.1689901911],[-10589636.069646643,4680147.1842839019],[-10589378.854789311,4680145.2021393841],[-10589294.217999145,4680144.5418047048],[-10589121.353803238,4680144.2996976506],[-10588864.020108448,4680143.9353097891],[-10588863.814369109,4680404.837907224],[-10588863.60822895,4680666.2146975314],[-10588863.417106451,4680927.0158271128],[-10588863.22558365,4681187.6318112873],[-10588606.37114046,4681187.0147872726],[-10588349.825150751,4681186.3913466493],[-10588093.090044305,4681185.780095798],[-10587836.3034789,4681185.1603770778],[-10587578.540894719,4681184.9266030295],[-10587320.903654177,4681184.6866697753],[-10587062.768543122,4681184.4200513838],[-10586804.336792136,4681184.1459926357],[-10586546.086248662,4681184.0461707572],[-10586287.678625198,4681183.93967772],[-10586029.527896116,4681183.8313872842],[-10585771.302081,4681183.716681934],[-10585511.791995056,4681182.4145228928],[-10585252.109211203,4681181.1062060772],[-10584992.970350653,4681179.8100758512],[-10584734.082077267,4681178.5082991747],[-10584734.388823215,4680917.9643839523],[-10584734.692664705,4680658.9509211844],[-10584735.027142018,4680398.9811841631],[-10584735.360818509,4680138.8964534914],[-10584480.312342163,4680138.9514405029],[-10584220.310189081,4680139.0011890214],[-10584216.52915616,4680138.9904289134],[-10583959.788540687,4680139.0445252229],[-10583698.740288813,4680139.0945348581],[-10583439.738682779,4680138.5291211391],[-10583179.70849804,4680137.9552446278],[-10582920.382820643,4680137.3649437362],[-10582661.199606506,4680136.7692539794],[-10582661.56243193,4680397.7859313618],[-10582661.925057152,4680658.7750336286],[-10582662.287682651,4680919.392069581],[-10582662.648806611,4681179.7587718945],[-10582663.544943966,4681439.7285914319],[-10582664.43837871,4681699.0269143963],[-10582665.330711924,4681958.7052264744],[-10582666.223946119,4682218.4430191293],[-10582408.595617363,4682219.0361348474],[-10582151.308880061,4682219.6227048617],[-10581893.682954071,4682220.2078650184],[-10581636.633388564,4682220.7857084796],[-10581634.729594216,4681960.9105292773],[-10581633.520127116,4681795.9596118424],[-10581633.111827854,4681700.7406973494],[-10581632.769995352,4681618.5755300801],[-10581632.296581361,4681440.2630171292],[-10581631.606378399,4681179.4585261447],[-10581375.070800755,4681178.5691095619],[-10581118.937584208,4681177.6728910534],[-10580861.078289658,4681176.7607705025],[-10580602.126242863,4681175.8362093018],[-10580602.063956803,4680915.6743046092],[-10580602.002270484,4680656.8506428087],[-10580601.939282889,4680397.7357773297],[-10580601.876896471,4680137.9324112376],[-10580595.357725732,4680137.9438574249],[-10580337.885772342,4680137.7434264002],[-10580085.628594903,4680137.5411766917],[-10580080.80056216,4680137.5314474413],[-10579824.048533794,4680137.3195953276],[-10579567.611866813,4680137.1017121328],[-10579310.906892421,4680136.8122433843],[-10579054.184998645,4680136.5154620893],[-10578797.421056682,4680136.2108551702],[-10578540.639894987,4680135.8989356877],[-10578540.765218122,4679877.7685055351],[-10578540.892143182,4679619.5213261405],[-10578541.025976209,4679361.2016634811],[-10578541.158708034,4679102.8061877731],[-10578541.283631044,4678844.2265120558],[-10578541.409955844,4678585.3900481965],[-10578541.553700795,4678326.2892477326],[-10578541.698246837,4678066.951451336],[-10578315.834611703,4678066.5864264499],[-10578087.9225291,4678066.2137139514],[-10578028.78616002,4678066.1250659395],[-10577857.908938207,4678065.8374185301],[-10577625.818267031,4678065.4426612873],[-10577515.030306289,4678065.2437862754],[-10577514.452266382,4678323.5383656016],[-10577513.872724032,4678582.8866978893],[-10577513.291980645,4678841.7543058097],[-10577512.710836766,4679100.6760745076],[-10577512.152028691,4679344.7541362494],[-10577512.174444381,4679359.305390493],[-10577512.577728903,4679617.8424808132],[-10577512.982415115,4679876.269638679],[-10577513.386200376,4680134.5828788187],[-10577512.696535921,4680388.0388820339],[-10577512.003466684,4680642.7854470508],[-10577511.983738249,4680651.2703090012],[-10577511.304890271,4680898.8103537532],[-10577510.598203667,4681156.1457746411],[-10577510.553844145,4681168.7918526623],[-10577509.884808529,4681414.7214963986],[-10577509.177719774,4681674.5406928938],[-10577509.129055263,4681687.267993235],[-10577508.472932784,4681935.6364360331],[-10577507.779658116,4682198.0158814201],[-10577507.764234699,4682206.3803924257],[-10577507.546108035,4682463.656165909],[-10577507.321469136,4682727.8947568433],[-10577507.08051247,4682990.780566535],[-10577506.846669365,4683245.7976235794],[-10577506.857677506,4683252.3046354549],[-10577506.623129828,4683512.8202911196],[-10577506.396496737,4683765.3038114626],[-10577506.410208032,4683771.7303024251],[-10577506.324045211,4683865.0531627703],[-10577505.322484547,4684029.5349514298],[-10577503.767927736,4684284.9598266166],[-10577563.864593426,4684286.2169180959],[-10577762.428132785,4684286.934932217],[-10578020.060861135,4684287.8627572441],[-10578276.693643615,4684288.7882769732],[-10578532.285733532,4684289.7028925773],[-10578788.47180412,4684290.601975698],[-10579044.953613609,4684291.4943835055],[-10579301.47056336,4684292.3882029522],[-10579558.105047792,4684293.2757329876],[-10579557.345394516,4684553.0703060087],[-10579556.586441958,4684812.9958729334],[-10579555.818278773,4685073.0432024496],[-10579555.049414663,4685333.2664705934],[-10579554.287358578,4685593.1839548238],[-10579553.525002116,4685853.1597992228],[-10579553.317213228,4685925.3531191796],[-10579555.219537508,4686113.082154572],[-10579557.850620799,4686372.8448625235],[-10579814.820760332,4686373.9678066205],[-10580072.216887766,4686375.0848434633],[-10580330.021983642,4686376.2029051855],[-10580588.234646328,4686377.3169853147],[-10580588.25416103,4686636.5410618288],[-10580588.273374742,4686895.621788743],[-10580588.282676581,4687154.5844462849],[-10580588.291076852,4687413.4274848802],[-10580330.876904018,4687412.6472615544],[-10580073.929766061,4687411.862413886],[-10579817.320314799,4687411.0765373372],[-10579561.098707682,4687410.2857800955],[-10579303.844517538,4687409.4743585568],[-10579046.375381012,4687408.6553635048],[-10578788.699707687,4687407.8158281054],[-10578530.807586258,4687406.9687192049],[-10578530.469158391,4687147.5581806125],[-10578530.130729757,4686888.0045588836],[-10578529.781487992,4686628.312871499],[-10578529.432846257,4686368.5004589381],[-10578270.939861199,4686367.4030686254],[-10578013.975727728,4686366.3045150787],[-10577755.339478062,4686365.179525801],[-10577497.674140695,4686364.0520924786],[-10577497.544800067,4686622.1605318626],[-10577497.413859744,4686880.694020194],[-10577497.416379632,4686884.0499338424],[-10577497.295836365,4687139.6532317316],[-10577497.173910765,4687399.0613082303],[-10577497.177337226,4687403.5091698347],[-10577497.055989971,4687658.5146347182],[-10577496.933467228,4687918.6274347324],[-10577496.917368246,4687922.4679793948],[-10577496.799234441,4688179.4077193569],[-10577496.678820806,4688440.8469371861],[-10577496.268969404,4688701.0436601937],[-10577495.858415458,4688960.8904534495],[-10577495.451363942,4689220.4206760228],[-10577495.044010654,4689479.6658927165],[-10577494.631753463,4689739.2420810042],[-10577494.218294574,4689998.7507892959],[-10577493.813044712,4690258.180069413],[-10577493.407994324,4690517.4569710158],[-10577493.091749767,4690777.5546980584],[-10577492.781884454,4691032.1111607142],[-10577492.762387946,4691037.2066111257],[-10577492.466962812,4691296.4289869107],[-10577492.178509193,4691548.4517884897],[-10577492.180846078,4691555.2062520571],[-10577240.319126856,4691555.6715704994],[-10576989.360441063,4691556.1284067128],[-10576739.310495142,4691556.5637885742],[-10576490.165985394,4691556.9922294049],[-10576241.94933752,4691557.4214352611],[-10575994.638125805,4691557.842287288],[-10575748.244063713,4691558.2649318818],[-10575502.775560804,4691558.6788372248],[-10575502.736190313,4691554.1470883731],[-10575499.635102756,4691297.8654911015],[-10575496.473217301,4691036.6271730261],[-10575496.436255455,4691033.1467257412],[-10575493.319638388,4690774.9478621148],[-10575490.154643407,4690512.8214280782],[-10575379.044263532,4690513.3198529426],[-10575237.697299981,4690513.2460165164],[-10574983.817229915,4690513.1092552757],[-10574973.586756509,4690513.105834811],[-10574728.490294822,4690512.9789218372],[-10574471.69847386,4690512.8411465557],[-10574458.123051023,4690512.8373561604],[-10574213.538878825,4690512.69926799],[-10573953.978972219,4690512.5467367228],[-10573943.66820637,4690512.5379228406],[-10573692.974703252,4690512.3657020992],[-10573430.463099582,4690512.1777395289],[-10573434.710077118,4690773.3134504259],[-10573438.954350051,4691034.206447335],[-10573443.184504746,4691294.768863475],[-10573447.409351612,4691555.0475528035],[-10573193.255772067,4691554.447175174],[-10572938.290458353,4691553.840251158],[-10572682.514611855,4691553.2293494744],[-10572425.946653754,4691552.6111306855],[-10572168.572167492,4691551.9903470147],[-10571910.381942423,4691551.3610904254],[-10571651.374476867,4691550.7288836921],[-10571391.55387551,4691550.0882040206],[-10571391.548744636,4691545.7589992639],[-10571390.698785232,4691288.8966181707],[-10571389.835483838,4691027.4239212973],[-10571389.830659619,4691024.1871054228],[-10571388.979489291,4690765.6888851477]]]},"attributes":{"objectid":223,"field_kid":"1000148266","approxacre":298169,"field_name":"PAOLA-RANTOUL","status":"Active","prod_gas":"Yes","prod_oil":"Yes","activeprod":"OILGAS","cumm_oil":12865212.859999999,"maxoilwell":3708,"lastoilpro":14681.030000000001,"lastoilwel":2115,"lastodate":"2-2009","cumm_gas":1341823,"maxgaswell":51,"lastgaspro":2220,"lastgaswel":44,"lastgdate":"2-2009","avgdepth":531.97100829999999,"avgdepthsl":-478.52499390000003,"polydate":1214179200000,"field_type":"O&G","field_kidn":1000148266}}]} \ No newline at end of file diff --git a/test/spec/ol/format/esrijsonformat.test.js b/test/spec/ol/format/esrijsonformat.test.js new file mode 100644 index 0000000000..fd25ed600b --- /dev/null +++ b/test/spec/ol/format/esrijsonformat.test.js @@ -0,0 +1,1065 @@ +goog.provide('ol.test.reader.EsriJSON'); + + +describe('ol.format.EsriJSON', function() { + + var format; + beforeEach(function() { + format = new ol.format.EsriJSON(); + }); + + var pointEsriJSON = { + geometry: { + x: 102.0, + y: 0.5 + }, + attributes: { + 'prop0': 'value0' + } + }; + + var multiPointEsriJSON = { + geometry: { + 'points' : [[102.0, 0.0], [103.0, 1.0]] + }, + attributes: { + 'prop0': 'value0' + } + }; + + var lineStringEsriJSON = { + geometry: { + paths: [[ + [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0] + ]] + }, + attributes: { + 'prop0': 'value0', + 'prop1': 0.0 + } + }; + + var multiLineStringEsriJSON = { + geometry: { + paths: [[ + [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0] + ], [ + [105.0, 3.0], [106.0, 4.0], [107.0, 3.0], [108.0, 4.0] + ]] + }, + attributes: { + 'prop0': 'value0', + 'prop1': 0.0 + } + }; + + var polygonEsriJSON = { + geometry: { + rings: [[ + [100.0, 0.0], [100.0, 1.0], [101.0, 1.0], [101.0, 0.0] + ]] + }, + attributes: { + 'prop0': 'value0', + 'prop1': {'this': 'that'} + } + }; + + var multiPolygonEsriJSON = { + geometry: { + rings: [ + [ + [0, 1], + [1, 4], + [4, 3], + [3, 0] + ], [ + [2, 2], + [3, 2], + [3, 3], + [2, 3] + ], [ + [10, 1], + [11, 5], + [14, 3], + [13, 0] + ] + ] + } + }; + + var featureCollectionEsriJSON = { + features: [pointEsriJSON, lineStringEsriJSON, polygonEsriJSON] + }; + + var data = { + features: [ + { + attributes: { + 'LINK_ID': 573730499, + 'RP_TYPE': 14, + 'RP_FUNC': 0, + 'DIRECTION': 2, + 'LOGKOD': '', + 'CHANGED': '', + 'USERID': '', + 'ST_NAME': '', + 'L_REFADDR': '', + 'L_NREFADDR': '', + 'R_REFADDR': '', + 'R_NREFADDR': '', + 'SPEED_CAT': '7', + 'ZIPCODE': '59330', + 'SHAPE_LEN': 46.3826 + }, + geometry: { + paths: [[ + [1549497.66985, 6403707.96], + [1549491.1, 6403710.1], + [1549488.03995, 6403716.7504], + [1549488.5401, 6403724.5504], + [1549494.37985, 6403733.54], + [1549499.6799, 6403738.0504], + [1549506.22, 6403739.2504] + ]] + } + }, { + attributes: { + 'LINK_ID': 30760556, + 'RP_TYPE': 12, + 'RP_FUNC': 1, + 'DIRECTION': 0, + 'LOGKOD': '', + 'CHANGED': '', + 'USERID': '', + 'ST_NAME': 'BRUNNSGATAN', + 'L_REFADDR': '24', + 'L_NREFADDR': '16', + 'R_REFADDR': '', + 'R_NREFADDR': '', + 'SPEED_CAT': '7', + 'ZIPCODE': '59330', + 'SHAPE_LEN': 70.3106 + }, + geometry: { + paths: [[ + [1549754.2769, 6403854.8024], + [1549728.45985, 6403920.2] + ]] + } + } + ] + }; + + describe('#readFeature', function() { + + it('can read a single point feature', function() { + var feature = format.readFeature(pointEsriJSON); + expect(feature).to.be.an(ol.Feature); + var geometry = feature.getGeometry(); + expect(geometry).to.be.an(ol.geom.Point); + expect(geometry.getCoordinates()).to.eql([102.0, 0.5]); + expect(feature.get('prop0')).to.be('value0'); + }); + + it('can read a single multipoint feature', function() { + var feature = format.readFeature(multiPointEsriJSON); + expect(feature).to.be.an(ol.Feature); + var geometry = feature.getGeometry(); + expect(geometry).to.be.an(ol.geom.MultiPoint); + expect(geometry.getCoordinates()).to.eql([[102.0, 0.0] , [103.0, 1.0]]); + expect(feature.get('prop0')).to.be('value0'); + }); + + it('can read a single line string feature', function() { + var feature = format.readFeature(lineStringEsriJSON); + expect(feature).to.be.an(ol.Feature); + var geometry = feature.getGeometry(); + expect(geometry).to.be.an(ol.geom.LineString); + expect(geometry.getCoordinates()).to.eql( + [[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]]); + expect(feature.get('prop0')).to.be('value0'); + expect(feature.get('prop1')).to.be(0.0); + }); + + it('can read a multi line string feature', function() { + var feature = format.readFeature(multiLineStringEsriJSON); + expect(feature).to.be.an(ol.Feature); + var geometry = feature.getGeometry(); + expect(geometry).to.be.an(ol.geom.MultiLineString); + expect(geometry.getCoordinates()).to.eql([ + [[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]], + [[105.0, 3.0], [106.0, 4.0], [107.0, 3.0], [108.0, 4.0]] + ]); + expect(feature.get('prop0')).to.be('value0'); + expect(feature.get('prop1')).to.be(0.0); + }); + + it('can read a single polygon feature', function() { + var feature = format.readFeature(polygonEsriJSON); + expect(feature).to.be.an(ol.Feature); + var geometry = feature.getGeometry(); + expect(geometry).to.be.an(ol.geom.Polygon); + expect(geometry.getCoordinates()).to.eql([[ + [100.0, 0.0], [100.0, 1.0], [101.0, 1.0], [101.0, 0.0] + ]]); + expect(feature.get('prop0')).to.be('value0'); + expect(feature.get('prop1')).to.eql({'this': 'that'}); + }); + + it('can read a multi polygon feature', function() { + var feature = format.readFeature(multiPolygonEsriJSON); + expect(feature).to.be.an(ol.Feature); + var geometry = feature.getGeometry(); + expect(geometry).to.be.an(ol.geom.MultiPolygon); + expect(geometry.getCoordinates()).to.eql([ + [[[0, 1], [1, 4], [4, 3], [3, 0]], [[2, 2], [3, 2], [3, 3], [2, 3]]], + [[[10, 1], [11, 5], [14, 3], [13, 0]]] + ]); + }); + + it('can read a feature collection', function() { + var features = format.readFeatures(featureCollectionEsriJSON); + expect(features).to.have.length(3); + expect(features[0].getGeometry()).to.be.an(ol.geom.Point); + expect(features[1].getGeometry()).to.be.an(ol.geom.LineString); + expect(features[2].getGeometry()).to.be.an(ol.geom.Polygon); + }); + + it('can read and transform a point', function() { + var feature = format.readFeatures(pointEsriJSON, { + featureProjection: 'EPSG:3857', + dataProjection: 'EPSG:4326' + }); + expect(feature[0].getGeometry()).to.be.an(ol.geom.Point); + expect(feature[0].getGeometry().getCoordinates()).to.eql( + ol.proj.transform([102.0, 0.5], 'EPSG:4326', 'EPSG:3857')); + }); + + it('can read and transform a feature collection', function() { + var features = format.readFeatures(featureCollectionEsriJSON, { + featureProjection: 'EPSG:3857', + dataProjection: 'EPSG:4326' + }); + expect(features[0].getGeometry()).to.be.an(ol.geom.Point); + expect(features[0].getGeometry().getCoordinates()).to.eql( + ol.proj.transform([102.0, 0.5], 'EPSG:4326', 'EPSG:3857')); + expect(features[1].getGeometry().getCoordinates()).to.eql([ + ol.proj.transform([102.0, 0.0], 'EPSG:4326', 'EPSG:3857'), + ol.proj.transform([103.0, 1.0], 'EPSG:4326', 'EPSG:3857'), + ol.proj.transform([104.0, 0.0], 'EPSG:4326', 'EPSG:3857'), + ol.proj.transform([105.0, 1.0], 'EPSG:4326', 'EPSG:3857') + ]); + expect(features[2].getGeometry().getCoordinates()).to.eql([[ + ol.proj.transform([100.0, 0.0], 'EPSG:4326', 'EPSG:3857'), + ol.proj.transform([100.0, 1.0], 'EPSG:4326', 'EPSG:3857'), + ol.proj.transform([101.0, 1.0], 'EPSG:4326', 'EPSG:3857'), + ol.proj.transform([101.0, 0.0], 'EPSG:4326', 'EPSG:3857') + ]]); + }); + + it('can create a feature with a specific geometryName', function() { + var feature = new ol.format.EsriJSON({geometryName: 'the_geom'}). + readFeature(pointEsriJSON); + expect(feature.getGeometryName()).to.be('the_geom'); + expect(feature.getGeometry()).to.be.an(ol.geom.Point); + }); + + }); + + describe('#readFeatures', function() { + + it('parses feature collection', function() { + var str = JSON.stringify(data), + array = format.readFeatures(str); + + expect(array.length).to.be(2); + + var first = array[0]; + expect(first).to.be.a(ol.Feature); + expect(first.get('LINK_ID')).to.be(573730499); + var firstGeom = first.getGeometry(); + expect(firstGeom).to.be.a(ol.geom.LineString); + + var second = array[1]; + expect(second).to.be.a(ol.Feature); + expect(second.get('ST_NAME')).to.be('BRUNNSGATAN'); + var secondGeom = second.getGeometry(); + expect(secondGeom).to.be.a(ol.geom.LineString); + }); + + it('parses ksfields.geojson', function(done) { + afterLoadText('spec/ol/format/esrijson/ksfields.json', function(text) { + var result = format.readFeatures(text); + expect(result.length).to.be(306); + + var first = result[0]; + expect(first).to.be.a(ol.Feature); + expect(first.get('field_name')).to.be('EUDORA'); + expect(first.getId()).to.be(6406); + var firstGeom = first.getGeometry(); + expect(firstGeom).to.be.a(ol.geom.Polygon); + expect(ol.extent.equals(firstGeom.getExtent(), + [-10585772.743554419, 4712365.161160459, + -10579560.16462974, 4716567.373073828])) + .to.be(true); + + var last = result[305]; + expect(last).to.be.a(ol.Feature); + expect(last.get('field_name')).to.be('PAOLA-RANTOUL'); + expect(last.getId()).to.be(223); + var lastGeom = last.getGeometry(); + expect(lastGeom).to.be.a(ol.geom.Polygon); + expect(ol.extent.equals(lastGeom.getExtent(), + [-10596945.530910717, 4634530.860533288, + -10538217.991305258, 4691558.678837225])) + .to.be(true); + done(); + }); + + }); + + }); + + describe('#readGeometry', function() { + + it('parses point', function() { + var str = JSON.stringify({ + x: 10, + y: 20 + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.Point); + expect(obj.getCoordinates()).to.eql([10, 20]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XY); + }); + + it('parses XYZ point', function() { + var str = JSON.stringify({ + x: 10, + y: 20, + z: 10 + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.Point); + expect(obj.getCoordinates()).to.eql([10, 20, 10]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZ); + }); + + it('parses XYM point', function() { + var str = JSON.stringify({ + x: 10, + y: 20, + m: 10 + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.Point); + expect(obj.getCoordinates()).to.eql([10, 20, 10]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYM); + }); + + it('parses XYZM point', function() { + var str = JSON.stringify({ + x: 10, + y: 20, + z: 0, + m: 10 + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.Point); + expect(obj.getCoordinates()).to.eql([10, 20, 0, 10]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZM); + }); + + it('parses multipoint', function() { + var str = JSON.stringify({ + points: [[10, 20], [20, 30]] + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiPoint); + expect(obj.getCoordinates()).to.eql([[10, 20], [20, 30]]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XY); + }); + + it('parses XYZ multipoint', function() { + var str = JSON.stringify({ + points: [[10, 20, 0], [20, 30, 0]], + hasZ: true + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiPoint); + expect(obj.getCoordinates()).to.eql([[10, 20, 0], [20, 30, 0]]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZ); + }); + + it('parses XYM multipoint', function() { + var str = JSON.stringify({ + points: [[10, 20, 0], [20, 30, 0]], + hasM: true + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiPoint); + expect(obj.getCoordinates()).to.eql([[10, 20, 0], [20, 30, 0]]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYM); + }); + + it('parses XYZM multipoint', function() { + var str = JSON.stringify({ + points: [[10, 20, 0, 1], [20, 30, 0, 1]], + hasZ: true, + hasM: true + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiPoint); + expect(obj.getCoordinates()).to.eql([[10, 20, 0, 1], [20, 30, 0, 1]]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZM); + }); + + it('parses linestring', function() { + var str = JSON.stringify({ + paths: [[[10, 20], [30, 40]]] + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.LineString); + expect(obj.getCoordinates()).to.eql([[10, 20], [30, 40]]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XY); + }); + + it('parses XYZ linestring', function() { + var str = JSON.stringify({ + hasZ: true, + paths: [[[10, 20, 1534], [30, 40, 1420]]] + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.LineString); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZ); + expect(obj.getCoordinates()).to.eql([[10, 20, 1534], [30, 40, 1420]]); + }); + + it('parses XYM linestring', function() { + var str = JSON.stringify({ + hasM: true, + paths: [[[10, 20, 1534], [30, 40, 1420]]] + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.LineString); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYM); + expect(obj.getCoordinates()).to.eql([[10, 20, 1534], [30, 40, 1420]]); + }); + + it('parses XYZM linestring', function() { + var str = JSON.stringify({ + hasZ: true, + hasM: true, + paths: [[[10, 20, 1534, 1], [30, 40, 1420, 2]]] + }); + + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.LineString); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZM); + expect(obj.getCoordinates()).to.eql([[10, 20, 1534, 1], + [30, 40, 1420, 2]]); + }); + + it('parses multilinestring', function() { + var str = JSON.stringify({ + paths: [[ + [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0] + ], [ + [105.0, 3.0], [106.0, 4.0], [107.0, 3.0], [108.0, 4.0] + ]] + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiLineString); + expect(obj.getCoordinates()).to.eql([ + [[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]], + [[105.0, 3.0], [106.0, 4.0], [107.0, 3.0], [108.0, 4.0]] + ]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XY); + }); + + it('parses XYZ multilinestring', function() { + var str = JSON.stringify({ + hasZ: true, + paths: [[ + [102.0, 0.0, 1], [103.0, 1.0, 1], [104.0, 0.0, 1], [105.0, 1.0, 1] + ], [ + [105.0, 3.0, 1], [106.0, 4.0, 1], [107.0, 3.0, 1], [108.0, 4.0, 1] + ]] + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiLineString); + expect(obj.getCoordinates()).to.eql([ + [[102.0, 0.0, 1], [103.0, 1.0, 1], [104.0, 0.0, 1], [105.0, 1.0, 1]], + [[105.0, 3.0, 1], [106.0, 4.0, 1], [107.0, 3.0, 1], [108.0, 4.0, 1]] + ]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZ); + }); + + it('parses XYM multilinestring', function() { + var str = JSON.stringify({ + hasM: true, + paths: [[ + [102.0, 0.0, 1], [103.0, 1.0, 1], [104.0, 0.0, 1], [105.0, 1.0, 1] + ], [ + [105.0, 3.0, 1], [106.0, 4.0, 1], [107.0, 3.0, 1], [108.0, 4.0, 1] + ]] + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiLineString); + expect(obj.getCoordinates()).to.eql([ + [[102.0, 0.0, 1], [103.0, 1.0, 1], [104.0, 0.0, 1], [105.0, 1.0, 1]], + [[105.0, 3.0, 1], [106.0, 4.0, 1], [107.0, 3.0, 1], [108.0, 4.0, 1]] + ]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYM); + }); + + it('parses XYZM multilinestring', function() { + var str = JSON.stringify({ + hasM: true, + hasZ: true, + paths: [[ + [102, 0, 1, 2], [103, 1, 1, 2], [104, 0, 1, 2], [105, 1, 1, 2] + ], [ + [105, 3, 1, 2], [106, 4, 1, 2], [107, 3, 1, 2], [108, 4, 1, 2] + ]] + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiLineString); + expect(obj.getCoordinates()).to.eql([ + [[102, 0, 1, 2], [103, 1, 1, 2], [104, 0, 1, 2], [105, 1, 1, 2]], + [[105, 3, 1, 2], [106, 4, 1, 2], [107, 3, 1, 2], [108, 4, 1, 2]] + ]); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZM); + }); + + it('parses polygon', function() { + var outer = [[0, 0], [0, 10], [10, 10], [10, 0], [0, 0]], + inner1 = [[1, 1], [2, 1], [2, 2], [1, 2], [1, 1]], + inner2 = [[8, 8], [9, 8], [9, 9], [8, 9], [8, 8]], + str = JSON.stringify({ + rings: [outer, inner1, inner2] + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.Polygon); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XY); + var rings = obj.getLinearRings(); + expect(rings.length).to.be(3); + expect(rings[0].getCoordinates()[0].length).to.equal(2); + expect(rings[0]).to.be.a(ol.geom.LinearRing); + expect(rings[1]).to.be.a(ol.geom.LinearRing); + expect(rings[2]).to.be.a(ol.geom.LinearRing); + }); + + it('parses XYZ polygon', function() { + var outer = [[0, 0, 5], [0, 10, 5], [10, 10, 5], [10, 0, 5], [0, 0, 5]], + inner1 = [[1, 1, 3], [2, 1, 3], [2, 2, 3], [1, 2, 3], [1, 1, 3]], + inner2 = [[8, 8, 2], [9, 8, 2], [9, 9, 2], [8, 9, 2], [8, 8, 2]], + str = JSON.stringify({ + rings: [outer, inner1, inner2], + hasZ: true + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.Polygon); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZ); + var rings = obj.getLinearRings(); + expect(rings.length).to.be(3); + expect(rings[0].getCoordinates()[0].length).to.equal(3); + expect(rings[0]).to.be.a(ol.geom.LinearRing); + expect(rings[1]).to.be.a(ol.geom.LinearRing); + expect(rings[2]).to.be.a(ol.geom.LinearRing); + }); + + it('parses XYM polygon', function() { + var outer = [[0, 0, 5], [0, 10, 5], [10, 10, 5], [10, 0, 5], [0, 0, 5]], + inner1 = [[1, 1, 3], [2, 1, 3], [2, 2, 3], [1, 2, 3], [1, 1, 3]], + inner2 = [[8, 8, 2], [9, 8, 2], [9, 9, 2], [8, 9, 2], [8, 8, 2]], + str = JSON.stringify({ + rings: [outer, inner1, inner2], + hasM: true + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.Polygon); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYM); + var rings = obj.getLinearRings(); + expect(rings.length).to.be(3); + expect(rings[0].getCoordinates()[0].length).to.equal(3); + expect(rings[0]).to.be.a(ol.geom.LinearRing); + expect(rings[1]).to.be.a(ol.geom.LinearRing); + expect(rings[2]).to.be.a(ol.geom.LinearRing); + }); + + it('parses XYZM polygon', function() { + var outer = [[0, 0, 5, 1], [0, 10, 5, 1], [10, 10, 5, 1], + [10, 0, 5, 1], [0, 0, 5, 1]], + inner1 = [[1, 1, 3, 2], [2, 1, 3, 2], [2, 2, 3, 2], + [1, 2, 3, 2], [1, 1, 3, 2]], + inner2 = [[8, 8, 2, 1], [9, 8, 2, 1], [9, 9, 2, 1], + [8, 9, 2, 1], [8, 8, 2, 1]], + str = JSON.stringify({ + rings: [outer, inner1, inner2], + hasZ: true, + hasM: true + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.Polygon); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZM); + var rings = obj.getLinearRings(); + expect(rings.length).to.be(3); + expect(rings[0].getCoordinates()[0].length).to.equal(4); + expect(rings[0]).to.be.a(ol.geom.LinearRing); + expect(rings[1]).to.be.a(ol.geom.LinearRing); + expect(rings[2]).to.be.a(ol.geom.LinearRing); + }); + + it('parses XY multipolygon', function() { + var str = JSON.stringify({ + rings: [ + [[0, 1], [1, 4], [4, 3], [3, 0]], + [[2, 2], [3, 2], [3, 3], [2, 3]], + [[10, 1], [11, 5], [14, 3], [13, 0]] + ] + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiPolygon); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XY); + expect(obj.getCoordinates()).to.eql([ + [[[0, 1], [1, 4], [4, 3], [3, 0]], [[2, 2], [3, 2], + [3, 3], [2, 3]]], + [[[10, 1], [11, 5], [14, 3], [13, 0]]] + ]); + }); + + it('parses XYZ multipolygon', function() { + var str = JSON.stringify({ + rings: [ + [[0, 1, 0], [1, 4, 0], [4, 3, 0], [3, 0, 0]], + [[2, 2, 0], [3, 2, 0], [3, 3, 0], [2, 3, 0]], + [[10, 1, 0], [11, 5, 0], [14, 3, 0], [13, 0, 0]] + ], + hasZ: true + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiPolygon); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZ); + expect(obj.getCoordinates()).to.eql([ + [[[0, 1, 0], [1, 4, 0], [4, 3, 0], [3, 0, 0]], [[2, 2, 0], [3, 2, 0], + [3, 3, 0], [2, 3, 0]]], + [[[10, 1, 0], [11, 5, 0], [14, 3, 0], [13, 0, 0]]] + ]); + }); + + it('parses XYM multipolygon', function() { + var str = JSON.stringify({ + rings: [ + [[0, 1, 0], [1, 4, 0], [4, 3, 0], [3, 0, 0]], + [[2, 2, 0], [3, 2, 0], [3, 3, 0], [2, 3, 0]], + [[10, 1, 0], [11, 5, 0], [14, 3, 0], [13, 0, 0]] + ], + hasM: true + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiPolygon); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYM); + expect(obj.getCoordinates()).to.eql([ + [[[0, 1, 0], [1, 4, 0], [4, 3, 0], [3, 0, 0]], [[2, 2, 0], [3, 2, 0], + [3, 3, 0], [2, 3, 0]]], + [[[10, 1, 0], [11, 5, 0], [14, 3, 0], [13, 0, 0]]] + ]); + }); + + it('parses XYZM multipolygon', function() { + var str = JSON.stringify({ + rings: [ + [[0, 1, 0, 1], [1, 4, 0, 1], [4, 3, 0, 1], [3, 0, 0, 1]], + [[2, 2, 0, 1], [3, 2, 0, 1], [3, 3, 0, 1], [2, 3, 0, 1]], + [[10, 1, 0, 1], [11, 5, 0, 1], [14, 3, 0, 1], [13, 0, 0, 1]] + ], + hasZ: true, + hasM: true + }); + var obj = format.readGeometry(str); + expect(obj).to.be.a(ol.geom.MultiPolygon); + expect(obj.getLayout()).to.eql(ol.geom.GeometryLayout.XYZM); + expect(obj.getCoordinates()).to.eql([ + [[[0, 1, 0, 1], [1, 4, 0, 1], [4, 3, 0, 1], [3, 0, 0, 1]], + [[2, 2, 0, 1], [3, 2, 0, 1], + [3, 3, 0, 1], [2, 3, 0, 1]]], + [[[10, 1, 0, 1], [11, 5, 0, 1], [14, 3, 0, 1], [13, 0, 0, 1]]] + ]); + }); + + }); + + describe('#readProjection', function() { + + it('reads named crs from top-level object', function() { + + var json = { + spatialReference: { + wkid: 3857 + }, + features: [{ + attributes: { + foo: 'bar' + }, + geometry: { + x: 1, + y: 2 + } + }, { + attributes: { + bam: 'baz' + }, + geometry: { + paths: [[[1, 2], [3, 4]]] + } + }] + }; + var features = format.readFeatures(json); + + expect(features.length).to.be(2); + + var first = features[0]; + expect(first).to.be.a(ol.Feature); + expect(first.get('foo')).to.be('bar'); + expect(first.getGeometry()).to.be.a(ol.geom.Point); + + var second = features[1]; + expect(second).to.be.a(ol.Feature); + expect(second.get('bam')).to.be('baz'); + expect(second.getGeometry()).to.be.a(ol.geom.LineString); + + expect(format.readProjection(json)).to.be(ol.proj.get('EPSG:3857')); + + }); + + }); + + describe('#writeGeometry', function() { + + it('encodes point', function() { + var point = new ol.geom.Point([10, 20]); + var esrijson = format.writeGeometry(point); + expect(point.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZ point', function() { + var point = new ol.geom.Point([10, 20, 0], ol.geom.GeometryLayout.XYZ); + var esrijson = format.writeGeometry(point); + expect(point.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYM point', function() { + var point = new ol.geom.Point([10, 20, 0], ol.geom.GeometryLayout.XYM); + var esrijson = format.writeGeometry(point); + expect(point.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZM point', function() { + var point = new ol.geom.Point([10, 20, 5, 0], + ol.geom.GeometryLayout.XYZM); + var esrijson = format.writeGeometry(point); + expect(point.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes linestring', function() { + var linestring = new ol.geom.LineString([[10, 20], [30, 40]]); + var esrijson = format.writeGeometry(linestring); + expect(linestring.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZ linestring', function() { + var linestring = new ol.geom.LineString([[10, 20, 1534], [30, 40, 1420]], + ol.geom.GeometryLayout.XYZ); + var esrijson = format.writeGeometry(linestring); + expect(linestring.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYM linestring', function() { + var linestring = new ol.geom.LineString([[10, 20, 1534], [30, 40, 1420]], + ol.geom.GeometryLayout.XYM); + var esrijson = format.writeGeometry(linestring); + expect(linestring.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZM linestring', function() { + var linestring = new ol.geom.LineString([[10, 20, 1534, 1], + [30, 40, 1420, 1]], + ol.geom.GeometryLayout.XYZM); + var esrijson = format.writeGeometry(linestring); + expect(linestring.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes polygon', function() { + var outer = [[0, 0], [10, 0], [10, 10], [0, 10], [0, 0]], + inner1 = [[1, 1], [2, 1], [2, 2], [1, 2], [1, 1]], + inner2 = [[8, 8], [9, 8], [9, 9], [8, 9], [8, 8]]; + var polygon = new ol.geom.Polygon([outer, inner1, inner2]); + var esrijson = format.writeGeometry(polygon); + expect(polygon.getCoordinates(false)).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZ polygon', function() { + var outer = [[0, 0, 5], [0, 10, 5], [10, 10, 5], [10, 0, 5], [0, 0, 5]], + inner1 = [[1, 1, 3], [2, 1, 3], [2, 2, 3], [1, 2, 3], [1, 1, 3]], + inner2 = [[8, 8, 2], [9, 8, 2], [9, 9, 2], [8, 9, 2], [8, 8, 2]]; + var polygon = new ol.geom.Polygon([outer, inner1, inner2], + ol.geom.GeometryLayout.XYZ); + var esrijson = format.writeGeometry(polygon); + expect(polygon.getCoordinates(false)).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYM polygon', function() { + var outer = [[0, 0, 5], [0, 10, 5], [10, 10, 5], [10, 0, 5], [0, 0, 5]], + inner1 = [[1, 1, 3], [2, 1, 3], [2, 2, 3], [1, 2, 3], [1, 1, 3]], + inner2 = [[8, 8, 2], [9, 8, 2], [9, 9, 2], [8, 9, 2], [8, 8, 2]]; + var polygon = new ol.geom.Polygon([outer, inner1, inner2], + ol.geom.GeometryLayout.XYM); + var esrijson = format.writeGeometry(polygon); + expect(polygon.getCoordinates(false)).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZM polygon', function() { + var outer = [[0, 0, 5, 1], [0, 10, 5, 2], [10, 10, 5, 1], + [10, 0, 5, 1], [0, 0, 5, 1]], + inner1 = [[1, 1, 3, 1], [2, 1, 3, 2], [2, 2, 3, 1], [1, 2, 3, 1], + [1, 1, 3, 1]], + inner2 = [[8, 8, 2, 1], [9, 8, 2, 2], [9, 9, 2, 1], [8, 9, 2, 1], + [8, 8, 2, 1]]; + var polygon = new ol.geom.Polygon([outer, inner1, inner2], + ol.geom.GeometryLayout.XYZM); + var esrijson = format.writeGeometry(polygon); + expect(polygon.getCoordinates(false)).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes multipoint', function() { + var multipoint = new ol.geom.MultiPoint([[102.0, 0.0] , [103.0, 1.0]]); + var esrijson = format.writeGeometry(multipoint); + expect(multipoint.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZ multipoint', function() { + var multipoint = new ol.geom.MultiPoint([[102.0, 0.0, 3], + [103.0, 1.0, 4]], ol.geom.GeometryLayout.XYZ); + var esrijson = format.writeGeometry(multipoint); + expect(multipoint.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYM multipoint', function() { + var multipoint = new ol.geom.MultiPoint([[102.0, 0.0, 3], + [103.0, 1.0, 4]], ol.geom.GeometryLayout.XYM); + var esrijson = format.writeGeometry(multipoint); + expect(multipoint.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZM multipoint', function() { + var multipoint = new ol.geom.MultiPoint([[102.0, 0.0, 3, 1], + [103.0, 1.0, 4, 1]], ol.geom.GeometryLayout.XYZM); + var esrijson = format.writeGeometry(multipoint); + expect(multipoint.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes multilinestring', function() { + var multilinestring = new ol.geom.MultiLineString([ + [[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]], + [[105.0, 3.0], [106.0, 4.0], [107.0, 3.0], [108.0, 4.0]] + ]); + var esrijson = format.writeGeometry(multilinestring); + expect(multilinestring.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZ multilinestring', function() { + var multilinestring = new ol.geom.MultiLineString([ + [[102.0, 0.0, 1], [103.0, 1.0, 2], [104.0, 0.0, 3], [105.0, 1.0, 4]], + [[105.0, 3.0, 1], [106.0, 4.0, 2], [107.0, 3.0, 3], [108.0, 4.0, 4]] + ], ol.geom.GeometryLayout.XYZ); + var esrijson = format.writeGeometry(multilinestring); + expect(multilinestring.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYM multilinestring', function() { + var multilinestring = new ol.geom.MultiLineString([ + [[102.0, 0.0, 1], [103.0, 1.0, 2], [104.0, 0.0, 3], [105.0, 1.0, 4]], + [[105.0, 3.0, 1], [106.0, 4.0, 2], [107.0, 3.0, 3], [108.0, 4.0, 4]] + ], ol.geom.GeometryLayout.XYM); + var esrijson = format.writeGeometry(multilinestring); + expect(multilinestring.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZM multilinestring', function() { + var multilinestring = new ol.geom.MultiLineString([ + [[102.0, 0.0, 1, 0], [103.0, 1.0, 2, 2], [104.0, 0.0, 3, 1], + [105.0, 1.0, 4, 2]], + [[105.0, 3.0, 1, 0], [106.0, 4.0, 2, 1], [107.0, 3.0, 3, 1], + [108.0, 4.0, 4, 2]] + ], ol.geom.GeometryLayout.XYZM); + var esrijson = format.writeGeometry(multilinestring); + expect(multilinestring.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes multipolygon', function() { + var multipolygon = new ol.geom.MultiPolygon([ + [[[0, 1], [1, 4], [4, 3], [3, 0]], [[2, 2], [3, 2], [3, 3], [2, 3]]], + [[[10, 1], [11, 5], [14, 3], [13, 0]]] + ]); + var esrijson = format.writeGeometry(multipolygon); + expect(multipolygon.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZ multipolygon', function() { + var multipolygon = new ol.geom.MultiPolygon([ + [[[0, 1, 0], [1, 4, 0], [4, 3, 0], [3, 0, 0]], [[2, 2, 0], [3, 2, 0], + [3, 3, 0], [2, 3, 0]]], + [[[10, 1, 0], [11, 5, 0], [14, 3, 0], [13, 0, 0]]] + ], ol.geom.GeometryLayout.XYZ); + var esrijson = format.writeGeometry(multipolygon); + expect(multipolygon.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYM multipolygon', function() { + var multipolygon = new ol.geom.MultiPolygon([ + [[[0, 1, 0], [1, 4, 0], [4, 3, 0], [3, 0, 0]], [[2, 2, 0], [3, 2, 0], + [3, 3, 0], [2, 3, 0]]], + [[[10, 1, 0], [11, 5, 0], [14, 3, 0], [13, 0, 0]]] + ], ol.geom.GeometryLayout.XYM); + var esrijson = format.writeGeometry(multipolygon); + expect(multipolygon.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('encodes XYZM multipolygon', function() { + var multipolygon = new ol.geom.MultiPolygon([ + [[[0, 1, 0, 1], [1, 4, 0, 1], [4, 3, 0, 3], [3, 0, 0, 3]], + [[2, 2, 0, 3], [3, 2, 0, 4], + [3, 3, 0, 1], [2, 3, 0, 1]]], + [[[10, 1, 0, 1], [11, 5, 0, 2], [14, 3, 0, 3], [13, 0, 0, 3]]] + ], ol.geom.GeometryLayout.XYZM); + var esrijson = format.writeGeometry(multipolygon); + expect(multipolygon.getCoordinates()).to.eql( + format.readGeometry(esrijson).getCoordinates()); + }); + + it('transforms and encodes a point', function() { + var point = new ol.geom.Point([2, 3]); + var esrijson = format.writeGeometry(point, { + dataProjection: 'EPSG:4326', + featureProjection: 'EPSG:3857' + }); + var newPoint = format.readGeometry(esrijson, { + dataProjection: 'EPSG:4326', + featureProjection: 'EPSG:3857' + }); + expect(point.getCoordinates()[0]).to.roughlyEqual( + newPoint.getCoordinates()[0], 1e-8); + expect( + Math.abs(point.getCoordinates()[1] - newPoint.getCoordinates()[1])) + .to.be.lessThan(0.0000001); + }); + + }); + + describe('#writeFeatures', function() { + + it('encodes feature collection', function() { + var str = JSON.stringify(data), + array = format.readFeatures(str); + var esrijson = format.writeFeaturesObject(array); + var result = format.readFeatures(esrijson); + expect(array.length).to.equal(result.length); + var got, exp, gotProp, expProp; + for (var i = 0, ii = array.length; i < ii; ++i) { + got = array[i]; + exp = result[i]; + expect(got.getGeometry().getCoordinates()).to.eql( + exp.getGeometry().getCoordinates()); + gotProp = got.getProperties(); + delete gotProp.geometry; + expProp = exp.getProperties(); + delete expProp.geometry; + expect(gotProp).to.eql(expProp); + } + }); + + it('transforms and encodes feature collection', function() { + var str = JSON.stringify(data), + array = format.readFeatures(str); + var esrijson = format.writeFeatures(array, { + featureProjection: 'EPSG:3857', + dataProjection: 'EPSG:4326' + }); + var result = format.readFeatures(esrijson); + var got, exp; + for (var i = 0, ii = array.length; i < ii; ++i) { + got = array[i]; + exp = result[i]; + expect(got.getGeometry().transform('EPSG:3857', 'EPSG:4326') + .getCoordinates()).to.eql(exp.getGeometry().getCoordinates()); + } + }); + + it('writes out a feature with a different geometryName correctly', + function() { + var feature = new ol.Feature({'foo': 'bar'}); + feature.setGeometryName('mygeom'); + feature.setGeometry(new ol.geom.Point([5, 10])); + var esrijson = format.writeFeaturesObject([feature]); + expect(esrijson.features[0].attributes.mygeom).to.eql(undefined); + }); + + it('writes out a feature without properties correctly', function() { + var feature = new ol.Feature(new ol.geom.Point([5, 10])); + var esrijson = format.writeFeatureObject(feature); + expect(esrijson.attributes).to.eql({}); + }); + + }); + +}); + + +goog.require('ol.Feature'); +goog.require('ol.extent'); +goog.require('ol.format.EsriJSON'); +goog.require('ol.geom.GeometryLayout'); +goog.require('ol.geom.LineString'); +goog.require('ol.geom.LinearRing'); +goog.require('ol.geom.MultiLineString'); +goog.require('ol.geom.MultiPoint'); +goog.require('ol.geom.MultiPolygon'); +goog.require('ol.geom.Point'); +goog.require('ol.geom.Polygon'); +goog.require('ol.proj');