Skip to content

Instantly share code, notes, and snippets.

@rgdonohue
Last active November 5, 2015 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rgdonohue/e214b88043c5ec1dfa8f to your computer and use it in GitHub Desktop.
Save rgdonohue/e214b88043c5ec1dfa8f to your computer and use it in GitHub Desktop.
GeoJSON with CartoDB layer

Demonstrates loading a local data file (encoded in TopoJSON format) and symbolizes using Leaflet functionality. Also loads a data layer form CartoDB database. JQuery detects zoom level to remove or add the hexbin layer and toggle between the relevant legends/layer switcher.

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Kentucky Oil and Gas Wells Demo</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link rel="stylesheet" href="http://libs.cartocdn.com/cartodb.js/v3/3.15/themes/css/cartodb.css" />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
form {
position:absolute;
top: 15px;
right: 10px;
font-size: 1.3em;
background: #fff;
width: 70px;
padding: 5px 15px 10px;
border-radius: 4px;
}
input {
display: inline-block;
}
label {
margin: 0 10px 0 4px;
}
</style>
</head>
<body>
<div id='map'></div>
<form id="menu">
<input type="radio" name="well" id="wells" checked="true" /><label for="all">all</label>
<input type="radio" name="well" id="gas" /><label for="gas">gas</label>
<input type="radio" name="well" id="oil" /><label for="oil">oil</label>
<input type="radio" name="well" id="d&a" /><label for="d&a">d&amp;a</label>
</form>
<script src='//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.2.0/leaflet-omnivore.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/simple-statistics/1.0.0/simple_statistics.min.js'></script>
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js"></script>
<script>
var map = L.map('map')
.setView([37.85, -84.77], 8);
L.tileLayer('http://tile.stamen.com/toner/{z}/{x}/{y}.png', {
attribution: 'Stamen'
}).addTo(map);
cartodb.createLayer(map, 'https://rgdonohue.cartodb.com/api/v2/viz/bcdbfe36-6f4f-11e5-833d-0e674067d321/viz.json', { https: true })
.addTo(map)
.on('done', function(layer) {
layer.setInteraction(true);
$('.cartodb-legend').hide();
})
.on('error', function(err) {
alert("some error occurred: " + err);
});
var hexStyle = {
color: '#fff',
fillColor: 'grey',
opacity: 1,
weight: 1,
fillOpacity: 1
}
var classBreaks;
var colors = ["#feedde","#fdbe85","#fd8d3c","#e6550d","#a63603"];
var currentVar = 'wells';
var hex = omnivore.topojson('ky-wells.json')
.on('ready', function() {
hex.setStyle(hexStyle);
getClassBreaks();
symbolize();
retrieve();
})
.on('error', function() {
alert('hex data failed to load');
})
.addTo(map);
function getClassBreaks() {
var range = [];
hex.eachLayer(function(l) {
range.push(Number(l.feature.properties[currentVar]));
});
classBreaks = ss.quantile(range,[0,.2,.4,.6,.8,1]);
}
function getColor(val) {
return val > classBreaks[5] ? "#a63603" :
val > classBreaks[4] ? "#e6550d" :
val > classBreaks[3] ? "#fd8d3c" :
val > classBreaks[2] ? "#fdbe85" :
"#feedde";
}
function symbolize() {
hex.eachLayer(function(l) {
l.setStyle({
fillColor: getColor(Number(l.feature.properties[currentVar]))
})
});
}
function retrieve(){
hex.eachLayer(function(layer){
var popup = 'all wells: <b>'+layer.feature.properties.wells+'</b><br>'+
'gas wells: <b>'+layer.feature.properties.gas+'</b><br>'+
'oil wells: <b>'+layer.feature.properties.oil+'</b><br>'+
'd&amp;a wells: <b>'+layer.feature.properties['d&a']+'</b><br>';
layer.bindPopup(popup);
});
}
$('input').on('change', function() {
currentVar = this.id;
getClassBreaks();
symbolize();
});
map.on('zoomend', function(e) {
if(map.getZoom()>= 9){
map.removeLayer(hex);
$('#menu').hide();
$('.cartodb-legend').show();
} else {
if(!map.hasLayer(hex)){
map.addLayer(hex);
}
$('#menu').show();
$('.cartodb-legend').hide();
}
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0005344988177975205,0.0004598172728839856],"translate":[-89.38,36.449]},"arcs":[[[112,226],[38,-75]],[[150,151],[-38,-76],[-75,0],[-37,76],[37,75],[75,0]],[[112,226],[38,75],[75,0],[37,-75],[-37,-75],[-75,0]],[[486,829],[75,0]],[[561,829],[38,-76],[-38,-75],[-75,0],[-37,75],[37,76]],[[486,829],[-37,75],[37,75],[75,0],[38,-75],[-38,-75]],[[486,1281],[75,0]],[[561,1281],[38,-76]],[[599,1205],[-38,-75]],[[561,1130],[-75,0],[-37,75],[37,76]],[[486,1281],[-37,75],[37,75],[75,0],[38,-75],[-38,-75]],[[711,226],[-37,-75]],[[674,151],[-75,0],[-38,75],[38,75],[75,0],[37,-75]],[[599,1205],[75,0]],[[674,1205],[37,-75]],[[711,1130],[-37,-75],[-75,0],[-38,75]],[[711,226],[75,0]],[[786,226],[37,-75]],[[823,151],[-37,-76]],[[786,75],[-75,0],[-37,76]],[[786,829],[37,-76]],[[823,753],[-37,-75],[-75,0],[-37,75],[37,76],[75,0]],[[674,1205],[37,76]],[[711,1281],[75,0]],[[786,1281],[37,-76],[-37,-75],[-75,0]],[[711,1281],[-37,75],[37,75],[75,0],[37,-75],[-37,-75]],[[823,1657],[-37,-75]],[[786,1582],[-75,0],[-37,75],[37,76],[75,0],[37,-76]],[[823,151],[75,0]],[[898,151],[37,-76]],[[935,75],[-37,-75],[-75,0],[-37,75]],[[786,226],[37,75]],[[823,301],[75,0]],[[898,301],[37,-75]],[[935,226],[-37,-75]],[[898,452],[37,-75]],[[935,377],[-37,-76]],[[823,301],[-37,76],[37,75],[75,0]],[[786,829],[37,75]],[[823,904],[75,0]],[[898,904],[37,-75],[-37,-76],[-75,0]],[[823,904],[-37,75],[37,76],[75,0],[37,-76],[-37,-75]],[[823,1657],[75,0],[37,-75]],[[935,1582],[-37,-75]],[[898,1507],[-75,0],[-37,75]],[[935,226],[75,0]],[[1010,226],[38,-75]],[[1048,151],[-38,-76]],[[1010,75],[-75,0]],[[935,377],[75,0]],[[1010,377],[38,-76]],[[1048,301],[-38,-75]],[[898,452],[37,75],[75,0],[38,-75]],[[1048,452],[-38,-75]],[[1048,1205],[-38,-75]],[[1010,1130],[-75,0],[-37,75],[37,76],[75,0],[38,-76]],[[935,1582],[75,0],[38,-75],[-38,-76],[-75,0],[-37,76]],[[1048,151],[75,0]],[[1123,151],[37,-76]],[[1160,75],[-37,-75],[-75,0],[-38,75]],[[1048,301],[75,0]],[[1123,301],[37,-75]],[[1160,226],[-37,-75]],[[1048,452],[75,0],[37,-75]],[[1160,377],[-37,-76]],[[1048,753],[75,0]],[[1123,753],[37,-75]],[[1160,678],[-37,-75],[-75,0],[-38,75],[38,75]],[[1160,829],[-37,-76]],[[1048,753],[-38,76],[38,75],[75,0],[37,-75]],[[1048,1205],[75,0],[37,-75],[-37,-75],[-75,0],[-38,75]],[[1160,226],[75,0]],[[1235,226],[37,-75]],[[1272,151],[-37,-76],[-75,0]],[[1160,377],[75,0]],[[1235,377],[37,-76]],[[1272,301],[-37,-75]],[[1160,829],[75,0],[37,-76],[-37,-75],[-75,0]],[[1123,1356],[37,75],[75,0],[37,-75],[-37,-75],[-75,0],[-37,75]],[[1272,301],[75,0]],[[1347,301],[37,-75]],[[1384,226],[-37,-75]],[[1347,151],[-75,0]],[[1235,377],[37,75],[75,0],[37,-75]],[[1384,377],[-37,-76]],[[1347,1055],[37,-76]],[[1384,979],[-37,-75],[-75,0],[-37,75],[37,76],[75,0]],[[1384,226],[75,0]],[[1459,226],[38,-75]],[[1497,151],[-38,-76],[-75,0],[-37,76]],[[1384,377],[75,0]],[[1459,377],[38,-76]],[[1497,301],[-38,-75]],[[1347,753],[37,76],[75,0],[38,-76],[-38,-75],[-75,0],[-37,75]],[[1347,1055],[37,75]],[[1384,1130],[75,0]],[[1459,1130],[38,-75],[-38,-76],[-75,0]],[[1384,1281],[75,0]],[[1459,1281],[38,-76]],[[1497,1205],[-38,-75]],[[1384,1130],[-37,75],[37,76]],[[1497,1356],[-38,-75]],[[1384,1281],[-37,75],[37,75],[75,0],[38,-75]],[[1497,301],[75,0]],[[1572,301],[37,-75]],[[1609,226],[-37,-75],[-75,0]],[[1459,377],[38,75]],[[1497,452],[75,0]],[[1572,452],[37,-75]],[[1609,377],[-37,-76]],[[1609,527],[-37,-75]],[[1497,452],[-38,75],[38,76],[75,0],[37,-76]],[[1497,1356],[75,0],[37,-75]],[[1609,1281],[-37,-76]],[[1572,1205],[-75,0]],[[1609,377],[75,0]],[[1684,377],[37,-76],[-37,-75],[-75,0]],[[1609,527],[75,0],[37,-75],[-37,-75]],[[1609,1281],[75,0]],[[1684,1281],[37,-76]],[[1721,1205],[-37,-75],[-75,0],[-37,75]],[[1684,678],[37,75],[75,0],[37,-75],[-37,-75],[-75,0],[-37,75]],[[1796,1055],[37,-76]],[[1833,979],[-37,-75],[-75,0],[-37,75],[37,76],[75,0]],[[1684,1281],[37,75],[75,0]],[[1796,1356],[37,-75]],[[1833,1281],[-37,-76],[-75,0]],[[1684,1733],[37,75],[75,0],[37,-75],[-37,-76],[-75,0],[-37,76]],[[1684,2034],[37,75],[75,0],[37,-75],[-37,-75],[-75,0],[-37,75]],[[1908,226],[38,-75]],[[1946,151],[-38,-76]],[[1908,75],[-75,0],[-37,76],[37,75],[75,0]],[[1796,452],[37,75],[75,0],[38,-75],[-38,-75],[-75,0],[-37,75]],[[1796,1055],[37,75],[75,0],[38,-75],[-38,-76],[-75,0]],[[1796,1356],[37,75],[75,0],[38,-75]],[[1946,1356],[-38,-75]],[[1908,1281],[-75,0]],[[1946,151],[75,0]],[[2021,151],[37,-76]],[[2058,75],[-37,-75],[-75,0],[-38,75]],[[1908,226],[38,75],[75,0]],[[2021,301],[37,-75]],[[2058,226],[-37,-75]],[[1946,1356],[75,0],[37,-75]],[[2058,1281],[-37,-76]],[[2021,1205],[-75,0],[-38,76]],[[1946,1959],[75,0]],[[2021,1959],[37,-76]],[[2058,1883],[-37,-75],[-75,0],[-38,75],[38,76]],[[2021,2109],[37,-75]],[[2058,2034],[-37,-75]],[[1946,1959],[-38,75],[38,75],[75,0]],[[2058,226],[75,0]],[[2133,226],[37,-75]],[[2170,151],[-37,-76],[-75,0]],[[2021,301],[37,76]],[[2058,377],[75,0]],[[2133,377],[37,-76]],[[2170,301],[-37,-75]],[[2133,527],[37,-75]],[[2170,452],[-37,-75]],[[2058,377],[-37,75],[37,75],[75,0]],[[2058,1281],[75,0]],[[2133,1281],[37,-76]],[[2170,1205],[-37,-75],[-75,0],[-37,75]],[[2058,2034],[75,0]],[[2133,2034],[37,-75]],[[2170,1959],[-37,-76],[-75,0]],[[2021,2109],[37,76],[75,0]],[[2133,2185],[37,-76]],[[2170,2109],[-37,-75]],[[2170,301],[75,0]],[[2245,301],[38,-75]],[[2283,226],[-38,-75],[-75,0]],[[2133,527],[37,76],[75,0]],[[2245,603],[38,-76]],[[2283,527],[-38,-75],[-75,0]],[[2133,1281],[37,75],[75,0]],[[2245,1356],[38,-75]],[[2283,1281],[-38,-76],[-75,0]],[[2133,1582],[37,75],[75,0],[38,-75],[-38,-75],[-75,0],[-37,75]],[[2170,2109],[75,0]],[[2245,2109],[38,-75]],[[2283,2034],[-38,-75]],[[2245,1959],[-75,0]],[[2133,2185],[37,75],[75,0],[38,-75],[-38,-76]],[[2245,301],[38,76],[74,0]],[[2357,377],[38,-76]],[[2395,301],[-38,-75],[-74,0]],[[2245,603],[38,75],[74,0]],[[2357,678],[38,-75]],[[2395,603],[-38,-76],[-74,0]],[[2245,1356],[38,75],[74,0]],[[2357,1431],[38,-75]],[[2395,1356],[-38,-75],[-74,0]],[[2283,1883],[74,0]],[[2357,1883],[38,-75]],[[2395,1808],[-38,-75]],[[2357,1733],[-74,0],[-38,75],[38,75]],[[2283,2034],[74,0]],[[2357,2034],[38,-75]],[[2395,1959],[-38,-76]],[[2283,1883],[-38,76]],[[2283,2486],[74,0]],[[2357,2486],[38,-75]],[[2395,2411],[-38,-76],[-74,0],[-38,76],[38,75]],[[2283,2637],[74,0]],[[2357,2637],[38,-76]],[[2395,2561],[-38,-75]],[[2283,2486],[-38,75],[38,76]],[[2357,2787],[38,-75]],[[2395,2712],[-38,-75]],[[2283,2637],[-38,75],[38,75],[74,0]],[[2357,377],[38,75],[75,0]],[[2470,452],[37,-75]],[[2507,377],[-37,-76],[-75,0]],[[2357,678],[38,75],[75,0],[37,-75],[-37,-75],[-75,0]],[[2357,1431],[38,76]],[[2395,1507],[75,0]],[[2470,1507],[37,-76]],[[2507,1431],[-37,-75],[-75,0]],[[2395,1657],[75,0]],[[2470,1657],[37,-75]],[[2507,1582],[-37,-75]],[[2395,1507],[-38,75],[38,75]],[[2395,1808],[75,0]],[[2470,1808],[37,-75]],[[2507,1733],[-37,-76]],[[2395,1657],[-38,76]],[[2395,1959],[75,0]],[[2470,1959],[37,-76]],[[2507,1883],[-37,-75]],[[2357,2034],[38,75]],[[2395,2109],[75,0]],[[2470,2109],[37,-75]],[[2507,2034],[-37,-75]],[[2470,2260],[37,-75]],[[2507,2185],[-37,-76]],[[2395,2109],[-38,76],[38,75],[75,0]],[[2395,2561],[75,0]],[[2470,2561],[37,-75]],[[2507,2486],[-37,-75],[-75,0]],[[2395,2712],[75,0]],[[2470,2712],[37,-75]],[[2507,2637],[-37,-76]],[[2357,2787],[38,76],[75,0]],[[2470,2863],[37,-76]],[[2507,2787],[-37,-75]],[[2470,151],[37,75],[75,0],[37,-75],[-37,-76],[-75,0],[-37,76]],[[2470,452],[37,75],[75,0],[37,-75],[-37,-75],[-75,0]],[[2619,904],[-37,-75]],[[2582,829],[-75,0],[-37,75],[37,75],[75,0],[37,-75]],[[2507,1582],[75,0]],[[2582,1582],[37,-75]],[[2619,1507],[-37,-76]],[[2582,1431],[-75,0]],[[2507,1733],[75,0]],[[2582,1733],[37,-76]],[[2619,1657],[-37,-75]],[[2507,1883],[75,0]],[[2582,1883],[37,-75]],[[2619,1808],[-37,-75]],[[2507,2034],[75,0]],[[2582,2034],[37,-75]],[[2619,1959],[-37,-76]],[[2507,2185],[75,0]],[[2582,2185],[37,-76]],[[2619,2109],[-37,-75]],[[2470,2260],[37,75],[75,0]],[[2582,2335],[37,-75]],[[2619,2260],[-37,-75]],[[2507,2637],[75,0]],[[2582,2637],[37,-76]],[[2619,2561],[-37,-75]],[[2582,2486],[-75,0]],[[2507,2787],[75,0]],[[2582,2787],[37,-75]],[[2619,2712],[-37,-75]],[[2470,2863],[37,75],[75,0]],[[2582,2938],[37,-75]],[[2619,2863],[-37,-76]],[[2619,904],[75,0]],[[2694,904],[38,-75]],[[2732,829],[-38,-76],[-75,0],[-37,76]],[[2582,1130],[37,75],[75,0],[38,-75],[-38,-75],[-75,0],[-37,75]],[[2619,1507],[75,0]],[[2694,1507],[38,-76]],[[2732,1431],[-38,-75]],[[2694,1356],[-75,0],[-37,75]],[[2619,1657],[75,0]],[[2694,1657],[38,-75]],[[2732,1582],[-38,-75]],[[2619,1808],[75,0]],[[2694,1808],[38,-75]],[[2732,1733],[-38,-76]],[[2619,1959],[75,0]],[[2694,1959],[38,-76]],[[2732,1883],[-38,-75]],[[2619,2109],[75,0]],[[2694,2109],[38,-75]],[[2732,2034],[-38,-75]],[[2619,2260],[75,0]],[[2694,2260],[38,-75]],[[2732,2185],[-38,-76]],[[2582,2335],[37,76]],[[2619,2411],[75,0]],[[2694,2411],[38,-76]],[[2732,2335],[-38,-75]],[[2619,2561],[75,0]],[[2694,2561],[38,-75]],[[2732,2486],[-38,-75]],[[2619,2411],[-37,75]],[[2619,2712],[75,0]],[[2694,2712],[38,-75]],[[2732,2637],[-38,-76]],[[2619,2863],[75,0]],[[2694,2863],[38,-76]],[[2732,2787],[-38,-75]],[[2582,2938],[37,75]],[[2619,3013],[75,0]],[[2694,3013],[38,-75]],[[2732,2938],[-38,-75]],[[2694,3164],[38,-75]],[[2732,3089],[-38,-76]],[[2619,3013],[-37,76],[37,75],[75,0]],[[2694,452],[38,75],[74,0],[38,-75],[-38,-75],[-74,0],[-38,75]],[[2694,904],[38,75],[74,0],[38,-75]],[[2844,904],[-38,-75]],[[2806,829],[-74,0]],[[2732,1431],[74,0]],[[2806,1431],[38,-75]],[[2844,1356],[-38,-75],[-74,0],[-38,75]],[[2732,1733],[74,0]],[[2806,1733],[38,-76]],[[2844,1657],[-38,-75]],[[2806,1582],[-74,0]],[[2732,1883],[74,0]],[[2806,1883],[38,-75]],[[2844,1808],[-38,-75]],[[2732,2034],[74,0]],[[2806,2034],[38,-75]],[[2844,1959],[-38,-76]],[[2732,2185],[74,0]],[[2806,2185],[38,-76]],[[2844,2109],[-38,-75]],[[2732,2335],[74,0]],[[2806,2335],[38,-75]],[[2844,2260],[-38,-75]],[[2732,2486],[74,0]],[[2806,2486],[38,-75]],[[2844,2411],[-38,-76]],[[2732,2637],[74,0]],[[2806,2637],[38,-76]],[[2844,2561],[-38,-75]],[[2732,2787],[74,0]],[[2806,2787],[38,-75]],[[2844,2712],[-38,-75]],[[2732,2938],[74,0]],[[2806,2938],[38,-75]],[[2844,2863],[-38,-76]],[[2732,3089],[74,0]],[[2806,3089],[38,-76]],[[2844,3013],[-38,-75]],[[2694,3164],[38,76],[74,0],[38,-76]],[[2844,3164],[-38,-75]],[[2844,753],[75,0]],[[2919,753],[37,-75]],[[2956,678],[-37,-75]],[[2919,603],[-75,0],[-38,75],[38,75]],[[2844,904],[75,0]],[[2919,904],[37,-75]],[[2956,829],[-37,-76]],[[2844,753],[-38,76]],[[2806,1431],[38,76]],[[2844,1507],[75,0]],[[2919,1507],[37,-76]],[[2956,1431],[-37,-75]],[[2919,1356],[-75,0]],[[2844,1657],[75,0]],[[2919,1657],[37,-75]],[[2956,1582],[-37,-75]],[[2844,1507],[-38,75]],[[2844,1808],[75,0]],[[2919,1808],[37,-75]],[[2956,1733],[-37,-76]],[[2844,1959],[75,0]],[[2919,1959],[37,-76]],[[2956,1883],[-37,-75]],[[2844,2109],[75,0]],[[2919,2109],[37,-75]],[[2956,2034],[-37,-75]],[[2844,2260],[75,0]],[[2919,2260],[37,-75]],[[2956,2185],[-37,-76]],[[2844,2411],[75,0]],[[2919,2411],[37,-76]],[[2956,2335],[-37,-75]],[[2844,2561],[75,0]],[[2919,2561],[37,-75]],[[2956,2486],[-37,-75]],[[2844,2712],[75,0]],[[2919,2712],[37,-75]],[[2956,2637],[-37,-76]],[[2844,2863],[75,0]],[[2919,2863],[37,-76]],[[2956,2787],[-37,-75]],[[2844,3013],[75,0]],[[2919,3013],[37,-75]],[[2956,2938],[-37,-75]],[[2844,3164],[75,0]],[[2919,3164],[37,-75]],[[2956,3089],[-37,-76]],[[2956,678],[75,0],[37,-75],[-37,-76],[-75,0],[-37,76]],[[2919,904],[37,75],[75,0]],[[3031,979],[37,-75]],[[3068,904],[-37,-75]],[[3031,829],[-75,0]],[[2956,1281],[75,0]],[[3031,1281],[37,-76]],[[3068,1205],[-37,-75],[-75,0],[-37,75],[37,76]],[[2956,1431],[75,0]],[[3031,1431],[37,-75]],[[3068,1356],[-37,-75]],[[2956,1281],[-37,75]],[[2956,1582],[75,0]],[[3031,1582],[37,-75]],[[3068,1507],[-37,-76]],[[2956,1733],[75,0]],[[3031,1733],[37,-76]],[[3068,1657],[-37,-75]],[[2956,1883],[75,0]],[[3031,1883],[37,-75]],[[3068,1808],[-37,-75]],[[2956,2034],[75,0]],[[3031,2034],[37,-75]],[[3068,1959],[-37,-76]],[[2956,2185],[75,0]],[[3031,2185],[37,-76]],[[3068,2109],[-37,-75]],[[2956,2335],[75,0]],[[3031,2335],[37,-75]],[[3068,2260],[-37,-75]],[[2956,2486],[75,0]],[[3031,2486],[37,-75]],[[3068,2411],[-37,-76]],[[2956,2637],[75,0]],[[3031,2637],[37,-76]],[[3068,2561],[-37,-75]],[[2956,2787],[75,0]],[[3031,2787],[37,-75]],[[3068,2712],[-37,-75]],[[2956,2938],[75,0]],[[3031,2938],[37,-75]],[[3068,2863],[-37,-76]],[[2956,3089],[75,0]],[[3031,3089],[37,-76]],[[3068,3013],[-37,-75]],[[2919,3164],[37,76],[75,0],[37,-76]],[[3068,3164],[-37,-75]],[[3068,904],[75,0]],[[3143,904],[38,-75],[-38,-76],[-75,0],[-37,76]],[[3031,979],[37,76],[75,0]],[[3143,1055],[38,-76]],[[3181,979],[-38,-75]],[[3068,1356],[75,0]],[[3143,1356],[38,-75]],[[3181,1281],[-38,-76]],[[3143,1205],[-75,0]],[[3068,1507],[75,0]],[[3143,1507],[38,-76]],[[3181,1431],[-38,-75]],[[3068,1657],[75,0]],[[3143,1657],[38,-75]],[[3181,1582],[-38,-75]],[[3068,1808],[75,0]],[[3143,1808],[38,-75]],[[3181,1733],[-38,-76]],[[3068,1959],[75,0]],[[3143,1959],[38,-76]],[[3181,1883],[-38,-75]],[[3068,2109],[75,0]],[[3143,2109],[38,-75]],[[3181,2034],[-38,-75]],[[3068,2260],[75,0]],[[3143,2260],[38,-75]],[[3181,2185],[-38,-76]],[[3068,2411],[75,0]],[[3143,2411],[38,-76]],[[3181,2335],[-38,-75]],[[3068,2561],[75,0]],[[3143,2561],[38,-75]],[[3181,2486],[-38,-75]],[[3068,2712],[75,0]],[[3143,2712],[38,-75]],[[3181,2637],[-38,-76]],[[3068,2863],[75,0]],[[3143,2863],[38,-76]],[[3181,2787],[-38,-75]],[[3068,3013],[75,0]],[[3143,3013],[38,-75]],[[3181,2938],[-38,-75]],[[3068,3164],[75,0]],[[3143,3164],[38,-75]],[[3181,3089],[-38,-76]],[[3293,603],[-38,-76]],[[3255,527],[-74,0],[-38,76],[38,75],[74,0],[38,-75]],[[3143,1055],[38,75]],[[3181,1130],[74,0]],[[3255,1130],[38,-75]],[[3293,1055],[-38,-76]],[[3255,979],[-74,0]],[[3181,1281],[74,0]],[[3255,1281],[38,-76]],[[3293,1205],[-38,-75]],[[3181,1130],[-38,75]],[[3181,1431],[74,0]],[[3255,1431],[38,-75]],[[3293,1356],[-38,-75]],[[3181,1582],[74,0]],[[3255,1582],[38,-75]],[[3293,1507],[-38,-76]],[[3181,1733],[74,0]],[[3255,1733],[38,-76]],[[3293,1657],[-38,-75]],[[3181,1883],[74,0]],[[3255,1883],[38,-75]],[[3293,1808],[-38,-75]],[[3181,2034],[74,0]],[[3255,2034],[38,-75]],[[3293,1959],[-38,-76]],[[3181,2185],[74,0]],[[3255,2185],[38,-76]],[[3293,2109],[-38,-75]],[[3181,2335],[74,0]],[[3255,2335],[38,-75]],[[3293,2260],[-38,-75]],[[3181,2486],[74,0]],[[3255,2486],[38,-75]],[[3293,2411],[-38,-76]],[[3181,2637],[74,0]],[[3255,2637],[38,-76]],[[3293,2561],[-38,-75]],[[3181,2787],[74,0]],[[3255,2787],[38,-75]],[[3293,2712],[-38,-75]],[[3181,2938],[74,0]],[[3255,2938],[38,-75]],[[3293,2863],[-38,-76]],[[3181,3089],[74,0]],[[3255,3089],[38,-76]],[[3293,3013],[-38,-75]],[[3143,3164],[38,76],[74,0]],[[3255,3240],[38,-76]],[[3293,3164],[-38,-75]],[[3293,603],[75,0],[37,-76],[-37,-75],[-75,0],[-38,75]],[[3293,904],[75,0]],[[3368,904],[37,-75]],[[3405,829],[-37,-76],[-75,0],[-38,76],[38,75]],[[3293,1055],[75,0]],[[3368,1055],[37,-76]],[[3405,979],[-37,-75]],[[3293,904],[-38,75]],[[3293,1205],[75,0]],[[3368,1205],[37,-75]],[[3405,1130],[-37,-75]],[[3293,1356],[75,0]],[[3368,1356],[37,-75]],[[3405,1281],[-37,-76]],[[3293,1507],[75,0]],[[3368,1507],[37,-76]],[[3405,1431],[-37,-75]],[[3293,1657],[75,0]],[[3368,1657],[37,-75]],[[3405,1582],[-37,-75]],[[3293,1808],[75,0]],[[3368,1808],[37,-75]],[[3405,1733],[-37,-76]],[[3293,1959],[75,0]],[[3368,1959],[37,-76]],[[3405,1883],[-37,-75]],[[3293,2109],[75,0]],[[3368,2109],[37,-75]],[[3405,2034],[-37,-75]],[[3293,2260],[75,0]],[[3368,2260],[37,-75]],[[3405,2185],[-37,-76]],[[3293,2411],[75,0]],[[3368,2411],[37,-76]],[[3405,2335],[-37,-75]],[[3293,2561],[75,0]],[[3368,2561],[37,-75]],[[3405,2486],[-37,-75]],[[3293,2712],[75,0]],[[3368,2712],[37,-75]],[[3405,2637],[-37,-76]],[[3293,2863],[75,0]],[[3368,2863],[37,-76]],[[3405,2787],[-37,-75]],[[3293,3013],[75,0]],[[3368,3013],[37,-75]],[[3405,2938],[-37,-75]],[[3293,3164],[75,0]],[[3368,3164],[37,-75]],[[3405,3089],[-37,-76]],[[3255,3240],[38,75],[75,0],[37,-75]],[[3405,3240],[-37,-76]],[[3405,979],[75,0]],[[3480,979],[37,-75]],[[3517,904],[-37,-75],[-75,0]],[[3405,1130],[75,0]],[[3480,1130],[37,-75]],[[3517,1055],[-37,-76]],[[3405,1281],[75,0]],[[3480,1281],[37,-76]],[[3517,1205],[-37,-75]],[[3405,1431],[75,0]],[[3480,1431],[37,-75]],[[3517,1356],[-37,-75]],[[3405,1582],[75,0]],[[3480,1582],[37,-75]],[[3517,1507],[-37,-76]],[[3405,1733],[75,0]],[[3480,1733],[37,-76]],[[3517,1657],[-37,-75]],[[3405,1883],[75,0]],[[3480,1883],[37,-75]],[[3517,1808],[-37,-75]],[[3405,2034],[75,0]],[[3480,2034],[37,-75]],[[3517,1959],[-37,-76]],[[3405,2185],[75,0]],[[3480,2185],[37,-76]],[[3517,2109],[-37,-75]],[[3405,2335],[75,0]],[[3480,2335],[37,-75]],[[3517,2260],[-37,-75]],[[3405,2486],[75,0]],[[3480,2486],[37,-75]],[[3517,2411],[-37,-76]],[[3405,2637],[75,0]],[[3480,2637],[37,-76]],[[3517,2561],[-37,-75]],[[3405,2787],[75,0]],[[3480,2787],[37,-75]],[[3517,2712],[-37,-75]],[[3405,2938],[75,0]],[[3480,2938],[37,-75]],[[3517,2863],[-37,-76]],[[3405,3089],[75,0]],[[3480,3089],[37,-76]],[[3517,3013],[-37,-75]],[[3405,3240],[75,0]],[[3480,3240],[37,-76]],[[3517,3164],[-37,-75]],[[3517,1055],[75,0]],[[3592,1055],[38,-76]],[[3630,979],[-38,-75]],[[3592,904],[-75,0]],[[3517,1205],[75,0]],[[3592,1205],[38,-75]],[[3630,1130],[-38,-75]],[[3517,1356],[75,0]],[[3592,1356],[38,-75]],[[3630,1281],[-38,-76]],[[3517,1507],[75,0]],[[3592,1507],[38,-76]],[[3630,1431],[-38,-75]],[[3517,1657],[75,0]],[[3592,1657],[38,-75]],[[3630,1582],[-38,-75]],[[3517,1808],[75,0]],[[3592,1808],[38,-75]],[[3630,1733],[-38,-76]],[[3517,1959],[75,0]],[[3592,1959],[38,-76]],[[3630,1883],[-38,-75]],[[3517,2109],[75,0]],[[3592,2109],[38,-75]],[[3630,2034],[-38,-75]],[[3517,2260],[75,0]],[[3592,2260],[38,-75]],[[3630,2185],[-38,-76]],[[3517,2411],[75,0]],[[3592,2411],[38,-76]],[[3630,2335],[-38,-75]],[[3517,2561],[75,0]],[[3592,2561],[38,-75]],[[3630,2486],[-38,-75]],[[3517,2712],[75,0]],[[3592,2712],[38,-75]],[[3630,2637],[-38,-76]],[[3517,2863],[75,0]],[[3592,2863],[38,-76]],[[3630,2787],[-38,-75]],[[3517,3013],[75,0]],[[3592,3013],[38,-75]],[[3630,2938],[-38,-75]],[[3517,3164],[75,0]],[[3592,3164],[38,-75]],[[3630,3089],[-38,-76]],[[3480,3240],[37,75],[75,0],[38,-75]],[[3630,3240],[-38,-76]],[[3704,678],[38,-75]],[[3742,603],[-38,-76]],[[3704,527],[-74,0],[-38,76],[38,75],[74,0]],[[3630,979],[74,0]],[[3704,979],[38,-75]],[[3742,904],[-38,-75]],[[3704,829],[-74,0],[-38,75]],[[3630,1130],[74,0]],[[3704,1130],[38,-75]],[[3742,1055],[-38,-76]],[[3630,1281],[74,0]],[[3704,1281],[38,-76]],[[3742,1205],[-38,-75]],[[3630,1431],[74,0]],[[3704,1431],[38,-75]],[[3742,1356],[-38,-75]],[[3630,1582],[74,0]],[[3704,1582],[38,-75]],[[3742,1507],[-38,-76]],[[3630,1733],[74,0]],[[3704,1733],[38,-76]],[[3742,1657],[-38,-75]],[[3630,1883],[74,0]],[[3704,1883],[38,-75]],[[3742,1808],[-38,-75]],[[3630,2034],[74,0]],[[3704,2034],[38,-75]],[[3742,1959],[-38,-76]],[[3630,2185],[74,0]],[[3704,2185],[38,-76]],[[3742,2109],[-38,-75]],[[3630,2335],[74,0]],[[3704,2335],[38,-75]],[[3742,2260],[-38,-75]],[[3630,2486],[74,0]],[[3704,2486],[38,-75]],[[3742,2411],[-38,-76]],[[3630,2637],[74,0]],[[3704,2637],[38,-76]],[[3742,2561],[-38,-75]],[[3630,2787],[74,0]],[[3704,2787],[38,-75]],[[3742,2712],[-38,-75]],[[3630,2938],[74,0]],[[3704,2938],[38,-75]],[[3742,2863],[-38,-76]],[[3630,3089],[74,0]],[[3704,3089],[38,-76]],[[3742,3013],[-38,-75]],[[3630,3240],[74,0]],[[3704,3240],[38,-76]],[[3742,3164],[-38,-75]],[[3742,603],[75,0]],[[3817,603],[37,-76]],[[3854,527],[-37,-75]],[[3817,452],[-75,0],[-38,75]],[[3704,678],[38,75]],[[3742,753],[75,0]],[[3817,753],[37,-75]],[[3854,678],[-37,-75]],[[3742,904],[75,0]],[[3817,904],[37,-75]],[[3854,829],[-37,-76]],[[3742,753],[-38,76]],[[3742,1055],[75,0]],[[3817,1055],[37,-76]],[[3854,979],[-37,-75]],[[3742,1205],[75,0]],[[3817,1205],[37,-75]],[[3854,1130],[-37,-75]],[[3742,1356],[75,0]],[[3817,1356],[37,-75]],[[3854,1281],[-37,-76]],[[3742,1507],[75,0]],[[3817,1507],[37,-76]],[[3854,1431],[-37,-75]],[[3742,1657],[75,0]],[[3817,1657],[37,-75]],[[3854,1582],[-37,-75]],[[3742,1808],[75,0]],[[3817,1808],[37,-75]],[[3854,1733],[-37,-76]],[[3742,1959],[75,0]],[[3817,1959],[37,-76]],[[3854,1883],[-37,-75]],[[3742,2109],[75,0]],[[3817,2109],[37,-75]],[[3854,2034],[-37,-75]],[[3742,2260],[75,0]],[[3817,2260],[37,-75]],[[3854,2185],[-37,-76]],[[3742,2411],[75,0]],[[3817,2411],[37,-76]],[[3854,2335],[-37,-75]],[[3742,2561],[75,0]],[[3817,2561],[37,-75]],[[3854,2486],[-37,-75]],[[3742,2712],[75,0]],[[3817,2712],[37,-75]],[[3854,2637],[-37,-76]],[[3742,2863],[75,0]],[[3817,2863],[37,-76]],[[3854,2787],[-37,-75]],[[3742,3013],[75,0]],[[3817,3013],[37,-75]],[[3854,2938],[-37,-75]],[[3742,3164],[75,0]],[[3817,3164],[37,-75]],[[3854,3089],[-37,-76]],[[3704,3240],[38,75],[75,0],[37,-75]],[[3854,3240],[-37,-76]],[[3854,527],[75,0]],[[3929,527],[37,-75]],[[3966,452],[-37,-75],[-75,0],[-37,75]],[[3854,678],[75,0]],[[3929,678],[37,-75]],[[3966,603],[-37,-76]],[[3854,829],[75,0]],[[3929,829],[37,-76]],[[3966,753],[-37,-75]],[[3854,979],[75,0]],[[3929,979],[37,-75]],[[3966,904],[-37,-75]],[[3854,1130],[75,0]],[[3929,1130],[37,-75]],[[3966,1055],[-37,-76]],[[3854,1281],[75,0]],[[3929,1281],[37,-76]],[[3966,1205],[-37,-75]],[[3854,1431],[75,0]],[[3929,1431],[37,-75]],[[3966,1356],[-37,-75]],[[3854,1582],[75,0]],[[3929,1582],[37,-75]],[[3966,1507],[-37,-76]],[[3854,1733],[75,0]],[[3929,1733],[37,-76]],[[3966,1657],[-37,-75]],[[3854,1883],[75,0]],[[3929,1883],[37,-75]],[[3966,1808],[-37,-75]],[[3854,2034],[75,0]],[[3929,2034],[37,-75]],[[3966,1959],[-37,-76]],[[3854,2185],[75,0]],[[3929,2185],[37,-76]],[[3966,2109],[-37,-75]],[[3854,2335],[75,0]],[[3929,2335],[37,-75]],[[3966,2260],[-37,-75]],[[3854,2486],[75,0]],[[3929,2486],[37,-75]],[[3966,2411],[-37,-76]],[[3854,2637],[75,0]],[[3929,2637],[37,-76]],[[3966,2561],[-37,-75]],[[3854,2787],[75,0]],[[3929,2787],[37,-75]],[[3966,2712],[-37,-75]],[[3854,2938],[75,0]],[[3929,2938],[37,-75]],[[3966,2863],[-37,-76]],[[3854,3089],[75,0]],[[3929,3089],[37,-76]],[[3966,3013],[-37,-75]],[[3854,3240],[75,0],[37,-76]],[[3966,3164],[-37,-75]],[[3966,603],[75,0]],[[4041,603],[38,-76]],[[4079,527],[-38,-75]],[[4041,452],[-75,0]],[[3966,753],[75,0]],[[4041,753],[38,-75]],[[4079,678],[-38,-75]],[[3966,904],[75,0]],[[4041,904],[38,-75]],[[4079,829],[-38,-76]],[[3966,1055],[75,0]],[[4041,1055],[38,-76]],[[4079,979],[-38,-75]],[[3966,1205],[75,0]],[[4041,1205],[38,-75]],[[4079,1130],[-38,-75]],[[3966,1356],[75,0]],[[4041,1356],[38,-75]],[[4079,1281],[-38,-76]],[[3966,1507],[75,0]],[[4041,1507],[38,-76]],[[4079,1431],[-38,-75]],[[3966,1657],[75,0]],[[4041,1657],[38,-75]],[[4079,1582],[-38,-75]],[[3966,1808],[75,0]],[[4041,1808],[38,-75]],[[4079,1733],[-38,-76]],[[3966,1959],[75,0]],[[4041,1959],[38,-76]],[[4079,1883],[-38,-75]],[[3966,2109],[75,0]],[[4041,2109],[38,-75]],[[4079,2034],[-38,-75]],[[3966,2260],[75,0]],[[4041,2260],[38,-75]],[[4079,2185],[-38,-76]],[[3966,2411],[75,0]],[[4041,2411],[38,-76]],[[4079,2335],[-38,-75]],[[3966,2561],[75,0]],[[4041,2561],[38,-75]],[[4079,2486],[-38,-75]],[[3966,2712],[75,0]],[[4041,2712],[38,-75]],[[4079,2637],[-38,-76]],[[3966,2863],[75,0]],[[4041,2863],[38,-76]],[[4079,2787],[-38,-75]],[[3966,3013],[75,0]],[[4041,3013],[38,-75]],[[4079,2938],[-38,-75]],[[3966,3164],[75,0],[38,-75]],[[4079,3089],[-38,-76]],[[4079,527],[74,0]],[[4153,527],[38,-75]],[[4191,452],[-38,-75]],[[4153,377],[-74,0],[-38,75]],[[4079,678],[74,0]],[[4153,678],[38,-75]],[[4191,603],[-38,-76]],[[4079,829],[74,0]],[[4153,829],[38,-76]],[[4191,753],[-38,-75]],[[4079,979],[74,0]],[[4153,979],[38,-75]],[[4191,904],[-38,-75]],[[4079,1130],[74,0]],[[4153,1130],[38,-75]],[[4191,1055],[-38,-76]],[[4079,1281],[74,0]],[[4153,1281],[38,-76]],[[4191,1205],[-38,-75]],[[4079,1431],[74,0]],[[4153,1431],[38,-75]],[[4191,1356],[-38,-75]],[[4079,1582],[74,0]],[[4153,1582],[38,-75]],[[4191,1507],[-38,-76]],[[4079,1733],[74,0]],[[4153,1733],[38,-76]],[[4191,1657],[-38,-75]],[[4079,1883],[74,0]],[[4153,1883],[38,-75]],[[4191,1808],[-38,-75]],[[4079,2034],[74,0]],[[4153,2034],[38,-75]],[[4191,1959],[-38,-76]],[[4079,2185],[74,0]],[[4153,2185],[38,-76]],[[4191,2109],[-38,-75]],[[4079,2335],[74,0]],[[4153,2335],[38,-75]],[[4191,2260],[-38,-75]],[[4079,2486],[74,0]],[[4153,2486],[38,-75]],[[4191,2411],[-38,-76]],[[4079,2637],[74,0]],[[4153,2637],[38,-76]],[[4191,2561],[-38,-75]],[[4079,2787],[74,0]],[[4153,2787],[38,-75]],[[4191,2712],[-38,-75]],[[4079,2938],[74,0]],[[4153,2938],[38,-75]],[[4191,2863],[-38,-76]],[[4079,3089],[74,0],[38,-76]],[[4191,3013],[-38,-75]],[[4191,452],[75,0]],[[4266,452],[37,-75]],[[4303,377],[-37,-76],[-75,0],[-38,76]],[[4191,603],[75,0]],[[4266,603],[37,-76]],[[4303,527],[-37,-75]],[[4191,753],[75,0]],[[4266,753],[37,-75]],[[4303,678],[-37,-75]],[[4191,904],[75,0]],[[4266,904],[37,-75]],[[4303,829],[-37,-76]],[[4191,1055],[75,0]],[[4266,1055],[37,-76]],[[4303,979],[-37,-75]],[[4191,1205],[75,0]],[[4266,1205],[37,-75]],[[4303,1130],[-37,-75]],[[4191,1356],[75,0]],[[4266,1356],[37,-75]],[[4303,1281],[-37,-76]],[[4191,1507],[75,0]],[[4266,1507],[37,-76]],[[4303,1431],[-37,-75]],[[4191,1657],[75,0]],[[4266,1657],[37,-75]],[[4303,1582],[-37,-75]],[[4191,1808],[75,0]],[[4266,1808],[37,-75]],[[4303,1733],[-37,-76]],[[4191,1959],[75,0]],[[4266,1959],[37,-76]],[[4303,1883],[-37,-75]],[[4191,2109],[75,0]],[[4266,2109],[37,-75]],[[4303,2034],[-37,-75]],[[4191,2260],[75,0]],[[4266,2260],[37,-75]],[[4303,2185],[-37,-76]],[[4191,2411],[75,0]],[[4266,2411],[37,-76]],[[4303,2335],[-37,-75]],[[4191,2561],[75,0]],[[4266,2561],[37,-75]],[[4303,2486],[-37,-75]],[[4191,2712],[75,0]],[[4266,2712],[37,-75]],[[4303,2637],[-37,-76]],[[4191,2863],[75,0]],[[4266,2863],[37,-76]],[[4303,2787],[-37,-75]],[[4191,3013],[75,0]],[[4266,3013],[37,-75]],[[4303,2938],[-37,-75]],[[4303,527],[75,0]],[[4378,527],[37,-75]],[[4415,452],[-37,-75]],[[4378,377],[-75,0]],[[4303,678],[75,0]],[[4378,678],[37,-75]],[[4415,603],[-37,-76]],[[4303,829],[75,0]],[[4378,829],[37,-76]],[[4415,753],[-37,-75]],[[4303,979],[75,0]],[[4378,979],[37,-75]],[[4415,904],[-37,-75]],[[4303,1130],[75,0]],[[4378,1130],[37,-75]],[[4415,1055],[-37,-76]],[[4303,1281],[75,0]],[[4378,1281],[37,-76]],[[4415,1205],[-37,-75]],[[4303,1431],[75,0]],[[4378,1431],[37,-75]],[[4415,1356],[-37,-75]],[[4303,1582],[75,0]],[[4378,1582],[37,-75]],[[4415,1507],[-37,-76]],[[4303,1733],[75,0]],[[4378,1733],[37,-76]],[[4415,1657],[-37,-75]],[[4303,1883],[75,0]],[[4378,1883],[37,-75]],[[4415,1808],[-37,-75]],[[4303,2034],[75,0]],[[4378,2034],[37,-75]],[[4415,1959],[-37,-76]],[[4303,2185],[75,0]],[[4378,2185],[37,-76]],[[4415,2109],[-37,-75]],[[4303,2335],[75,0]],[[4378,2335],[37,-75]],[[4415,2260],[-37,-75]],[[4303,2486],[75,0]],[[4378,2486],[37,-75]],[[4415,2411],[-37,-76]],[[4303,2637],[75,0]],[[4378,2637],[37,-76]],[[4415,2561],[-37,-75]],[[4303,2787],[75,0]],[[4378,2787],[37,-75]],[[4415,2712],[-37,-75]],[[4303,2938],[75,0]],[[4378,2938],[37,-75]],[[4415,2863],[-37,-76]],[[4266,3013],[37,76]],[[4303,3089],[75,0]],[[4378,3089],[37,-76]],[[4415,3013],[-37,-75]],[[4378,3240],[37,-76]],[[4415,3164],[-37,-75]],[[4303,3089],[-37,75],[37,76],[75,0]],[[4415,452],[75,0]],[[4490,452],[38,-75]],[[4528,377],[-38,-76],[-75,0],[-37,76]],[[4415,603],[75,0]],[[4490,603],[38,-76]],[[4528,527],[-38,-75]],[[4415,753],[75,0]],[[4490,753],[38,-75]],[[4528,678],[-38,-75]],[[4415,904],[75,0]],[[4490,904],[38,-75]],[[4528,829],[-38,-76]],[[4415,1055],[75,0]],[[4490,1055],[38,-76]],[[4528,979],[-38,-75]],[[4415,1205],[75,0]],[[4490,1205],[38,-75]],[[4528,1130],[-38,-75]],[[4415,1356],[75,0]],[[4490,1356],[38,-75]],[[4528,1281],[-38,-76]],[[4415,1507],[75,0]],[[4490,1507],[38,-76]],[[4528,1431],[-38,-75]],[[4415,1657],[75,0]],[[4490,1657],[38,-75]],[[4528,1582],[-38,-75]],[[4415,1808],[75,0]],[[4490,1808],[38,-75]],[[4528,1733],[-38,-76]],[[4415,1959],[75,0]],[[4490,1959],[38,-76]],[[4528,1883],[-38,-75]],[[4415,2109],[75,0]],[[4490,2109],[38,-75]],[[4528,2034],[-38,-75]],[[4415,2260],[75,0]],[[4490,2260],[38,-75]],[[4528,2185],[-38,-76]],[[4415,2411],[75,0]],[[4490,2411],[38,-76]],[[4528,2335],[-38,-75]],[[4415,2561],[75,0]],[[4490,2561],[38,-75]],[[4528,2486],[-38,-75]],[[4415,2712],[75,0]],[[4490,2712],[38,-75]],[[4528,2637],[-38,-76]],[[4415,2863],[75,0]],[[4490,2863],[38,-76]],[[4528,2787],[-38,-75]],[[4415,3013],[75,0]],[[4490,3013],[38,-75]],[[4528,2938],[-38,-75]],[[4415,3164],[75,0]],[[4490,3164],[38,-75]],[[4528,3089],[-38,-76]],[[4378,3240],[37,75],[75,0],[38,-75]],[[4528,3240],[-38,-76]],[[4528,527],[74,0]],[[4602,527],[38,-75]],[[4640,452],[-38,-75],[-74,0]],[[4528,678],[74,0]],[[4602,678],[38,-75]],[[4640,603],[-38,-76]],[[4528,829],[74,0]],[[4602,829],[38,-76]],[[4640,753],[-38,-75]],[[4528,979],[74,0]],[[4602,979],[38,-75]],[[4640,904],[-38,-75]],[[4528,1130],[74,0]],[[4602,1130],[38,-75]],[[4640,1055],[-38,-76]],[[4528,1281],[74,0]],[[4602,1281],[38,-76]],[[4640,1205],[-38,-75]],[[4528,1431],[74,0]],[[4602,1431],[38,-75]],[[4640,1356],[-38,-75]],[[4528,1582],[74,0]],[[4602,1582],[38,-75]],[[4640,1507],[-38,-76]],[[4528,1733],[74,0]],[[4602,1733],[38,-76]],[[4640,1657],[-38,-75]],[[4528,1883],[74,0]],[[4602,1883],[38,-75]],[[4640,1808],[-38,-75]],[[4528,2034],[74,0]],[[4602,2034],[38,-75]],[[4640,1959],[-38,-76]],[[4528,2185],[74,0]],[[4602,2185],[38,-76]],[[4640,2109],[-38,-75]],[[4528,2335],[74,0]],[[4602,2335],[38,-75]],[[4640,2260],[-38,-75]],[[4528,2486],[74,0]],[[4602,2486],[38,-75]],[[4640,2411],[-38,-76]],[[4528,2637],[74,0]],[[4602,2637],[38,-76]],[[4640,2561],[-38,-75]],[[4528,2787],[74,0]],[[4602,2787],[38,-75]],[[4640,2712],[-38,-75]],[[4528,2938],[74,0]],[[4602,2938],[38,-75]],[[4640,2863],[-38,-76]],[[4528,3089],[74,0]],[[4602,3089],[38,-76]],[[4640,3013],[-38,-75]],[[4528,3240],[74,0]],[[4602,3240],[38,-76]],[[4640,3164],[-38,-75]],[[4640,603],[75,0]],[[4715,603],[37,-76]],[[4752,527],[-37,-75]],[[4715,452],[-75,0]],[[4640,753],[75,0]],[[4715,753],[37,-75]],[[4752,678],[-37,-75]],[[4640,904],[75,0]],[[4715,904],[37,-75]],[[4752,829],[-37,-76]],[[4640,1055],[75,0]],[[4715,1055],[37,-76]],[[4752,979],[-37,-75]],[[4640,1205],[75,0]],[[4715,1205],[37,-75]],[[4752,1130],[-37,-75]],[[4640,1356],[75,0]],[[4715,1356],[37,-75]],[[4752,1281],[-37,-76]],[[4640,1507],[75,0]],[[4715,1507],[37,-76]],[[4752,1431],[-37,-75]],[[4640,1657],[75,0]],[[4715,1657],[37,-75]],[[4752,1582],[-37,-75]],[[4640,1808],[75,0]],[[4715,1808],[37,-75]],[[4752,1733],[-37,-76]],[[4640,1959],[75,0]],[[4715,1959],[37,-76]],[[4752,1883],[-37,-75]],[[4640,2109],[75,0]],[[4715,2109],[37,-75]],[[4752,2034],[-37,-75]],[[4640,2260],[75,0]],[[4715,2260],[37,-75]],[[4752,2185],[-37,-76]],[[4640,2411],[75,0]],[[4715,2411],[37,-76]],[[4752,2335],[-37,-75]],[[4640,2561],[75,0]],[[4715,2561],[37,-75]],[[4752,2486],[-37,-75]],[[4640,2712],[75,0]],[[4715,2712],[37,-75]],[[4752,2637],[-37,-76]],[[4640,2863],[75,0]],[[4715,2863],[37,-76]],[[4752,2787],[-37,-75]],[[4640,3013],[75,0]],[[4715,3013],[37,-75]],[[4752,2938],[-37,-75]],[[4640,3164],[75,0]],[[4715,3164],[37,-75]],[[4752,3089],[-37,-76]],[[4602,3240],[38,75],[75,0]],[[4715,3315],[37,-75]],[[4752,3240],[-37,-76]],[[4752,527],[75,0]],[[4827,527],[37,-75]],[[4864,452],[-37,-75],[-75,0],[-37,75]],[[4752,678],[75,0]],[[4827,678],[37,-75]],[[4864,603],[-37,-76]],[[4752,829],[75,0]],[[4827,829],[37,-76]],[[4864,753],[-37,-75]],[[4752,979],[75,0]],[[4827,979],[37,-75]],[[4864,904],[-37,-75]],[[4752,1130],[75,0]],[[4827,1130],[37,-75]],[[4864,1055],[-37,-76]],[[4752,1281],[75,0]],[[4827,1281],[37,-76]],[[4864,1205],[-37,-75]],[[4752,1431],[75,0]],[[4827,1431],[37,-75]],[[4864,1356],[-37,-75]],[[4752,1582],[75,0]],[[4827,1582],[37,-75]],[[4864,1507],[-37,-76]],[[4752,1733],[75,0]],[[4827,1733],[37,-76]],[[4864,1657],[-37,-75]],[[4752,1883],[75,0]],[[4827,1883],[37,-75]],[[4864,1808],[-37,-75]],[[4752,2034],[75,0]],[[4827,2034],[37,-75]],[[4864,1959],[-37,-76]],[[4752,2185],[75,0]],[[4827,2185],[37,-76]],[[4864,2109],[-37,-75]],[[4752,2335],[75,0]],[[4827,2335],[37,-75]],[[4864,2260],[-37,-75]],[[4752,2486],[75,0]],[[4827,2486],[37,-75]],[[4864,2411],[-37,-76]],[[4752,2637],[75,0]],[[4827,2637],[37,-76]],[[4864,2561],[-37,-75]],[[4752,2787],[75,0]],[[4827,2787],[37,-75]],[[4864,2712],[-37,-75]],[[4752,2938],[75,0]],[[4827,2938],[37,-75]],[[4864,2863],[-37,-76]],[[4752,3089],[75,0]],[[4827,3089],[37,-76]],[[4864,3013],[-37,-75]],[[4752,3240],[75,0]],[[4827,3240],[37,-76]],[[4864,3164],[-37,-75]],[[4715,3315],[37,75],[75,0],[37,-75]],[[4864,3315],[-37,-75]],[[4864,603],[75,0]],[[4939,603],[38,-76]],[[4977,527],[-38,-75],[-75,0]],[[4864,753],[75,0]],[[4939,753],[38,-75]],[[4977,678],[-38,-75]],[[4864,904],[75,0]],[[4939,904],[38,-75]],[[4977,829],[-38,-76]],[[4864,1055],[75,0]],[[4939,1055],[38,-76]],[[4977,979],[-38,-75]],[[4864,1205],[75,0]],[[4939,1205],[38,-75]],[[4977,1130],[-38,-75]],[[4864,1356],[75,0]],[[4939,1356],[38,-75]],[[4977,1281],[-38,-76]],[[4864,1507],[75,0]],[[4939,1507],[38,-76]],[[4977,1431],[-38,-75]],[[4864,1657],[75,0]],[[4939,1657],[38,-75]],[[4977,1582],[-38,-75]],[[4864,1808],[75,0]],[[4939,1808],[38,-75]],[[4977,1733],[-38,-76]],[[4864,1959],[75,0]],[[4939,1959],[38,-76]],[[4977,1883],[-38,-75]],[[4864,2109],[75,0]],[[4939,2109],[38,-75]],[[4977,2034],[-38,-75]],[[4864,2260],[75,0]],[[4939,2260],[38,-75]],[[4977,2185],[-38,-76]],[[4864,2411],[75,0]],[[4939,2411],[38,-76]],[[4977,2335],[-38,-75]],[[4864,2561],[75,0]],[[4939,2561],[38,-75]],[[4977,2486],[-38,-75]],[[4864,2712],[75,0]],[[4939,2712],[38,-75]],[[4977,2637],[-38,-76]],[[4864,2863],[75,0]],[[4939,2863],[38,-76]],[[4977,2787],[-38,-75]],[[4864,3013],[75,0]],[[4939,3013],[38,-75]],[[4977,2938],[-38,-75]],[[4864,3164],[75,0]],[[4939,3164],[38,-75]],[[4977,3089],[-38,-76]],[[4864,3315],[75,0],[38,-75]],[[4977,3240],[-38,-76]],[[4977,678],[74,0]],[[5051,678],[38,-75]],[[5089,603],[-38,-76]],[[5051,527],[-74,0]],[[4977,829],[74,0]],[[5051,829],[38,-76]],[[5089,753],[-38,-75]],[[4977,979],[74,0]],[[5051,979],[38,-75]],[[5089,904],[-38,-75]],[[4977,1130],[74,0]],[[5051,1130],[38,-75]],[[5089,1055],[-38,-76]],[[4977,1281],[74,0]],[[5051,1281],[38,-76]],[[5089,1205],[-38,-75]],[[4977,1431],[74,0]],[[5051,1431],[38,-75]],[[5089,1356],[-38,-75]],[[4977,1582],[74,0]],[[5051,1582],[38,-75]],[[5089,1507],[-38,-76]],[[4977,1733],[74,0]],[[5051,1733],[38,-76]],[[5089,1657],[-38,-75]],[[4977,1883],[74,0]],[[5051,1883],[38,-75]],[[5089,1808],[-38,-75]],[[4977,2034],[74,0]],[[5051,2034],[38,-75]],[[5089,1959],[-38,-76]],[[4977,2185],[74,0]],[[5051,2185],[38,-76]],[[5089,2109],[-38,-75]],[[4977,2335],[74,0]],[[5051,2335],[38,-75]],[[5089,2260],[-38,-75]],[[4977,2486],[74,0]],[[5051,2486],[38,-75]],[[5089,2411],[-38,-76]],[[4977,2637],[74,0]],[[5051,2637],[38,-76]],[[5089,2561],[-38,-75]],[[4977,2787],[74,0]],[[5051,2787],[38,-75]],[[5089,2712],[-38,-75]],[[4977,2938],[74,0]],[[5051,2938],[38,-75]],[[5089,2863],[-38,-76]],[[4977,3089],[74,0]],[[5051,3089],[38,-76]],[[5089,3013],[-38,-75]],[[4977,3240],[74,0],[38,-76]],[[5089,3164],[-38,-75]],[[5089,452],[75,0]],[[5164,452],[37,-75]],[[5201,377],[-37,-76],[-75,0],[-38,76],[38,75]],[[5089,603],[75,0]],[[5164,603],[37,-76]],[[5201,527],[-37,-75]],[[5089,452],[-38,75]],[[5089,904],[75,0]],[[5164,904],[37,-75]],[[5201,829],[-37,-76]],[[5164,753],[-75,0]],[[5089,1055],[75,0]],[[5164,1055],[37,-76]],[[5201,979],[-37,-75]],[[5089,1205],[75,0]],[[5164,1205],[37,-75]],[[5201,1130],[-37,-75]],[[5089,1356],[75,0]],[[5164,1356],[37,-75]],[[5201,1281],[-37,-76]],[[5089,1507],[75,0]],[[5164,1507],[37,-76]],[[5201,1431],[-37,-75]],[[5089,1657],[75,0]],[[5164,1657],[37,-75]],[[5201,1582],[-37,-75]],[[5089,1808],[75,0]],[[5164,1808],[37,-75]],[[5201,1733],[-37,-76]],[[5089,1959],[75,0]],[[5164,1959],[37,-76]],[[5201,1883],[-37,-75]],[[5089,2109],[75,0]],[[5164,2109],[37,-75]],[[5201,2034],[-37,-75]],[[5089,2260],[75,0]],[[5164,2260],[37,-75]],[[5201,2185],[-37,-76]],[[5089,2411],[75,0]],[[5164,2411],[37,-76]],[[5201,2335],[-37,-75]],[[5089,2561],[75,0]],[[5164,2561],[37,-75]],[[5201,2486],[-37,-75]],[[5089,2712],[75,0]],[[5164,2712],[37,-75]],[[5201,2637],[-37,-76]],[[5089,2863],[75,0]],[[5164,2863],[37,-76]],[[5201,2787],[-37,-75]],[[5089,3013],[75,0]],[[5164,3013],[37,-75]],[[5201,2938],[-37,-75]],[[5089,3164],[75,0]],[[5164,3164],[37,-75]],[[5201,3089],[-37,-76]],[[5201,527],[75,0]],[[5276,527],[37,-75]],[[5313,452],[-37,-75]],[[5276,377],[-75,0]],[[5164,603],[37,75]],[[5201,678],[75,0]],[[5276,678],[37,-75]],[[5313,603],[-37,-76]],[[5201,829],[75,0]],[[5276,829],[37,-76]],[[5313,753],[-37,-75]],[[5201,678],[-37,75]],[[5201,979],[75,0]],[[5276,979],[37,-75]],[[5313,904],[-37,-75]],[[5201,1130],[75,0]],[[5276,1130],[37,-75]],[[5313,1055],[-37,-76]],[[5201,1281],[75,0]],[[5276,1281],[37,-76]],[[5313,1205],[-37,-75]],[[5201,1431],[75,0]],[[5276,1431],[37,-75]],[[5313,1356],[-37,-75]],[[5201,1582],[75,0]],[[5276,1582],[37,-75]],[[5313,1507],[-37,-76]],[[5201,1733],[75,0]],[[5276,1733],[37,-76]],[[5313,1657],[-37,-75]],[[5201,1883],[75,0]],[[5276,1883],[37,-75]],[[5313,1808],[-37,-75]],[[5201,2034],[75,0]],[[5276,2034],[37,-75]],[[5313,1959],[-37,-76]],[[5201,2185],[75,0]],[[5276,2185],[37,-76]],[[5313,2109],[-37,-75]],[[5201,2335],[75,0]],[[5276,2335],[37,-75]],[[5313,2260],[-37,-75]],[[5201,2486],[75,0]],[[5276,2486],[37,-75]],[[5313,2411],[-37,-76]],[[5201,2637],[75,0]],[[5276,2637],[37,-76]],[[5313,2561],[-37,-75]],[[5201,2787],[75,0]],[[5276,2787],[37,-75]],[[5313,2712],[-37,-75]],[[5201,2938],[75,0]],[[5276,2938],[37,-75]],[[5313,2863],[-37,-76]],[[5201,3089],[75,0]],[[5276,3089],[37,-76]],[[5313,3013],[-37,-75]],[[5164,3164],[37,76],[75,0]],[[5276,3240],[37,-76]],[[5313,3164],[-37,-75]],[[5313,452],[75,0]],[[5388,452],[38,-75]],[[5426,377],[-38,-76],[-75,0],[-37,76]],[[5313,603],[75,0]],[[5388,603],[38,-76]],[[5426,527],[-38,-75]],[[5313,753],[75,0]],[[5388,753],[38,-75]],[[5426,678],[-38,-75]],[[5313,904],[75,0]],[[5388,904],[38,-75]],[[5426,829],[-38,-76]],[[5313,1055],[75,0]],[[5388,1055],[38,-76]],[[5426,979],[-38,-75]],[[5313,1205],[75,0]],[[5388,1205],[38,-75]],[[5426,1130],[-38,-75]],[[5313,1356],[75,0]],[[5388,1356],[38,-75]],[[5426,1281],[-38,-76]],[[5313,1507],[75,0]],[[5388,1507],[38,-76]],[[5426,1431],[-38,-75]],[[5313,1657],[75,0]],[[5388,1657],[38,-75]],[[5426,1582],[-38,-75]],[[5313,1808],[75,0]],[[5388,1808],[38,-75]],[[5426,1733],[-38,-76]],[[5313,1959],[75,0]],[[5388,1959],[38,-76]],[[5426,1883],[-38,-75]],[[5313,2109],[75,0]],[[5388,2109],[38,-75]],[[5426,2034],[-38,-75]],[[5313,2260],[75,0]],[[5388,2260],[38,-75]],[[5426,2185],[-38,-76]],[[5313,2411],[75,0]],[[5388,2411],[38,-76]],[[5426,2335],[-38,-75]],[[5313,2561],[75,0]],[[5388,2561],[38,-75]],[[5426,2486],[-38,-75]],[[5313,2712],[75,0]],[[5388,2712],[38,-75]],[[5426,2637],[-38,-76]],[[5313,2863],[75,0]],[[5388,2863],[38,-76]],[[5426,2787],[-38,-75]],[[5313,3013],[75,0]],[[5388,3013],[38,-75]],[[5426,2938],[-38,-75]],[[5313,3164],[75,0]],[[5388,3164],[38,-75]],[[5426,3089],[-38,-76]],[[5276,3240],[37,75],[75,0]],[[5388,3315],[38,-75]],[[5426,3240],[-38,-76]],[[5426,527],[74,0]],[[5500,527],[38,-75]],[[5538,452],[-38,-75],[-74,0]],[[5426,678],[74,0]],[[5500,678],[38,-75]],[[5538,603],[-38,-76]],[[5426,829],[74,0]],[[5500,829],[38,-76]],[[5538,753],[-38,-75]],[[5426,979],[74,0]],[[5500,979],[38,-75]],[[5538,904],[-38,-75]],[[5426,1130],[74,0]],[[5500,1130],[38,-75]],[[5538,1055],[-38,-76]],[[5426,1281],[74,0]],[[5500,1281],[38,-76]],[[5538,1205],[-38,-75]],[[5426,1431],[74,0]],[[5500,1431],[38,-75]],[[5538,1356],[-38,-75]],[[5426,1582],[74,0]],[[5500,1582],[38,-75]],[[5538,1507],[-38,-76]],[[5426,1733],[74,0]],[[5500,1733],[38,-76]],[[5538,1657],[-38,-75]],[[5426,1883],[74,0]],[[5500,1883],[38,-75]],[[5538,1808],[-38,-75]],[[5426,2034],[74,0]],[[5500,2034],[38,-75]],[[5538,1959],[-38,-76]],[[5426,2185],[74,0]],[[5500,2185],[38,-76]],[[5538,2109],[-38,-75]],[[5426,2335],[74,0]],[[5500,2335],[38,-75]],[[5538,2260],[-38,-75]],[[5426,2486],[74,0]],[[5500,2486],[38,-75]],[[5538,2411],[-38,-76]],[[5426,2637],[74,0]],[[5500,2637],[38,-76]],[[5538,2561],[-38,-75]],[[5426,2787],[74,0]],[[5500,2787],[38,-75]],[[5538,2712],[-38,-75]],[[5426,2938],[74,0]],[[5500,2938],[38,-75]],[[5538,2863],[-38,-76]],[[5426,3089],[74,0]],[[5500,3089],[38,-76]],[[5538,3013],[-38,-75]],[[5426,3240],[74,0]],[[5500,3240],[38,-76]],[[5538,3164],[-38,-75]],[[5388,3315],[38,75]],[[5426,3390],[74,0]],[[5500,3390],[38,-75]],[[5538,3315],[-38,-75]],[[5426,3541],[74,0]],[[5500,3541],[38,-75]],[[5538,3466],[-38,-76]],[[5426,3390],[-38,76],[38,75]],[[5426,3541],[-38,75],[38,75],[74,0],[38,-75],[-38,-75]],[[5538,603],[75,0]],[[5613,603],[37,-76]],[[5650,527],[-37,-75]],[[5613,452],[-75,0]],[[5538,753],[75,0]],[[5613,753],[37,-75]],[[5650,678],[-37,-75]],[[5538,904],[75,0]],[[5613,904],[37,-75]],[[5650,829],[-37,-76]],[[5538,1055],[75,0]],[[5613,1055],[37,-76]],[[5650,979],[-37,-75]],[[5538,1205],[75,0]],[[5613,1205],[37,-75]],[[5650,1130],[-37,-75]],[[5538,1356],[75,0]],[[5613,1356],[37,-75]],[[5650,1281],[-37,-76]],[[5538,1507],[75,0]],[[5613,1507],[37,-76]],[[5650,1431],[-37,-75]],[[5538,1657],[75,0]],[[5613,1657],[37,-75]],[[5650,1582],[-37,-75]],[[5538,1808],[75,0]],[[5613,1808],[37,-75]],[[5650,1733],[-37,-76]],[[5538,1959],[75,0]],[[5613,1959],[37,-76]],[[5650,1883],[-37,-75]],[[5538,2109],[75,0]],[[5613,2109],[37,-75]],[[5650,2034],[-37,-75]],[[5538,2260],[75,0]],[[5613,2260],[37,-75]],[[5650,2185],[-37,-76]],[[5538,2411],[75,0]],[[5613,2411],[37,-76]],[[5650,2335],[-37,-75]],[[5538,2712],[75,0]],[[5613,2712],[37,-75]],[[5650,2637],[-37,-76]],[[5613,2561],[-75,0]],[[5538,2863],[75,0]],[[5613,2863],[37,-76]],[[5650,2787],[-37,-75]],[[5538,3013],[75,0]],[[5613,3013],[37,-75]],[[5650,2938],[-37,-75]],[[5538,3164],[75,0]],[[5613,3164],[37,-75]],[[5650,3089],[-37,-76]],[[5538,3315],[75,0]],[[5613,3315],[37,-75]],[[5650,3240],[-37,-76]],[[5538,3466],[75,0],[37,-76]],[[5650,3390],[-37,-75]],[[5650,527],[75,0]],[[5725,527],[37,-75]],[[5762,452],[-37,-75]],[[5725,377],[-75,0],[-37,75]],[[5650,678],[75,0]],[[5725,678],[37,-75]],[[5762,603],[-37,-76]],[[5650,829],[75,0]],[[5725,829],[37,-76]],[[5762,753],[-37,-75]],[[5650,979],[75,0]],[[5725,979],[37,-75]],[[5762,904],[-37,-75]],[[5650,1130],[75,0]],[[5725,1130],[37,-75]],[[5762,1055],[-37,-76]],[[5650,1281],[75,0]],[[5725,1281],[37,-76]],[[5762,1205],[-37,-75]],[[5650,1431],[75,0]],[[5725,1431],[37,-75]],[[5762,1356],[-37,-75]],[[5650,1582],[75,0]],[[5725,1582],[37,-75]],[[5762,1507],[-37,-76]],[[5650,1733],[75,0]],[[5725,1733],[37,-76]],[[5762,1657],[-37,-75]],[[5650,1883],[75,0]],[[5725,1883],[37,-75]],[[5762,1808],[-37,-75]],[[5650,2034],[75,0]],[[5725,2034],[37,-75]],[[5762,1959],[-37,-76]],[[5650,2185],[75,0]],[[5725,2185],[37,-76]],[[5762,2109],[-37,-75]],[[5650,2335],[75,0]],[[5725,2335],[37,-75]],[[5762,2260],[-37,-75]],[[5613,2411],[37,75]],[[5650,2486],[75,0]],[[5725,2486],[37,-75]],[[5762,2411],[-37,-76]],[[5650,2637],[75,0]],[[5725,2637],[37,-76]],[[5762,2561],[-37,-75]],[[5650,2486],[-37,75]],[[5650,2787],[75,0]],[[5725,2787],[37,-75]],[[5762,2712],[-37,-75]],[[5650,2938],[75,0]],[[5725,2938],[37,-75]],[[5762,2863],[-37,-76]],[[5650,3089],[75,0]],[[5725,3089],[37,-76]],[[5762,3013],[-37,-75]],[[5650,3240],[75,0]],[[5725,3240],[37,-76]],[[5762,3164],[-37,-75]],[[5650,3390],[75,0]],[[5725,3390],[37,-75]],[[5762,3315],[-37,-75]],[[5725,3691],[37,-75]],[[5762,3616],[-37,-75],[-75,0],[-37,75],[37,75],[75,0]],[[5762,452],[75,0]],[[5837,452],[38,-75]],[[5875,377],[-38,-76],[-75,0],[-37,76]],[[5762,603],[75,0]],[[5837,603],[38,-76]],[[5875,527],[-38,-75]],[[5762,753],[75,0]],[[5837,753],[38,-75]],[[5875,678],[-38,-75]],[[5762,904],[75,0]],[[5837,904],[38,-75]],[[5875,829],[-38,-76]],[[5762,1055],[75,0]],[[5837,1055],[38,-76]],[[5875,979],[-38,-75]],[[5762,1205],[75,0]],[[5837,1205],[38,-75]],[[5875,1130],[-38,-75]],[[5762,1356],[75,0]],[[5837,1356],[38,-75]],[[5875,1281],[-38,-76]],[[5762,1507],[75,0]],[[5837,1507],[38,-76]],[[5875,1431],[-38,-75]],[[5762,1657],[75,0]],[[5837,1657],[38,-75]],[[5875,1582],[-38,-75]],[[5762,1808],[75,0]],[[5837,1808],[38,-75]],[[5875,1733],[-38,-76]],[[5762,1959],[75,0]],[[5837,1959],[38,-76]],[[5875,1883],[-38,-75]],[[5762,2109],[75,0]],[[5837,2109],[38,-75]],[[5875,2034],[-38,-75]],[[5762,2260],[75,0]],[[5837,2260],[38,-75]],[[5875,2185],[-38,-76]],[[5762,2411],[75,0]],[[5837,2411],[38,-76]],[[5875,2335],[-38,-75]],[[5762,2561],[75,0]],[[5837,2561],[38,-75]],[[5875,2486],[-38,-75]],[[5762,2712],[75,0]],[[5837,2712],[38,-75]],[[5875,2637],[-38,-76]],[[5762,2863],[75,0]],[[5837,2863],[38,-76]],[[5875,2787],[-38,-75]],[[5762,3013],[75,0]],[[5837,3013],[38,-75]],[[5875,2938],[-38,-75]],[[5762,3164],[75,0]],[[5837,3164],[38,-75]],[[5875,3089],[-38,-76]],[[5762,3315],[75,0]],[[5837,3315],[38,-75]],[[5875,3240],[-38,-76]],[[5725,3390],[37,76],[75,0],[38,-76],[-38,-75]],[[5725,3691],[37,76],[75,0],[38,-76],[-38,-75],[-75,0]],[[5875,527],[74,0]],[[5949,527],[38,-75]],[[5987,452],[-38,-75]],[[5949,377],[-74,0]],[[5875,678],[74,0]],[[5949,678],[38,-75]],[[5987,603],[-38,-76]],[[5875,829],[74,0]],[[5949,829],[38,-76]],[[5987,753],[-38,-75]],[[5875,979],[74,0]],[[5949,979],[38,-75]],[[5987,904],[-38,-75]],[[5875,1130],[74,0]],[[5949,1130],[38,-75]],[[5987,1055],[-38,-76]],[[5875,1281],[74,0]],[[5949,1281],[38,-76]],[[5987,1205],[-38,-75]],[[5875,1431],[74,0]],[[5949,1431],[38,-75]],[[5987,1356],[-38,-75]],[[5875,1582],[74,0]],[[5949,1582],[38,-75]],[[5987,1507],[-38,-76]],[[5875,1733],[74,0]],[[5949,1733],[38,-76]],[[5987,1657],[-38,-75]],[[5875,1883],[74,0]],[[5949,1883],[38,-75]],[[5987,1808],[-38,-75]],[[5875,2034],[74,0]],[[5949,2034],[38,-75]],[[5987,1959],[-38,-76]],[[5875,2185],[74,0]],[[5949,2185],[38,-76]],[[5987,2109],[-38,-75]],[[5875,2335],[74,0]],[[5949,2335],[38,-75]],[[5987,2260],[-38,-75]],[[5875,2637],[74,0]],[[5949,2637],[38,-76]],[[5987,2561],[-38,-75],[-74,0]],[[5875,2787],[74,0]],[[5949,2787],[38,-75]],[[5987,2712],[-38,-75]],[[5875,2938],[74,0]],[[5949,2938],[38,-75]],[[5987,2863],[-38,-76]],[[5875,3089],[74,0]],[[5949,3089],[38,-76]],[[5987,3013],[-38,-75]],[[5875,3240],[74,0]],[[5949,3240],[38,-76]],[[5987,3164],[-38,-75]],[[5987,452],[75,0]],[[6062,452],[37,-75]],[[6099,377],[-37,-76],[-75,0],[-38,76]],[[5987,603],[75,0]],[[6062,603],[37,-76]],[[6099,527],[-37,-75]],[[5987,753],[75,0]],[[6062,753],[37,-75]],[[6099,678],[-37,-75]],[[5987,904],[75,0]],[[6062,904],[37,-75]],[[6099,829],[-37,-76]],[[5987,1055],[75,0]],[[6062,1055],[37,-76]],[[6099,979],[-37,-75]],[[5987,1205],[75,0]],[[6062,1205],[37,-75]],[[6099,1130],[-37,-75]],[[5987,1356],[75,0]],[[6062,1356],[37,-75]],[[6099,1281],[-37,-76]],[[5987,1507],[75,0]],[[6062,1507],[37,-76]],[[6099,1431],[-37,-75]],[[5987,1657],[75,0]],[[6062,1657],[37,-75]],[[6099,1582],[-37,-75]],[[5987,1808],[75,0]],[[6062,1808],[37,-75]],[[6099,1733],[-37,-76]],[[5987,1959],[75,0]],[[6062,1959],[37,-76]],[[6099,1883],[-37,-75]],[[5987,2109],[75,0]],[[6062,2109],[37,-75]],[[6099,2034],[-37,-75]],[[5987,2260],[75,0]],[[6062,2260],[37,-75]],[[6099,2185],[-37,-76]],[[5949,2335],[38,76],[75,0]],[[6062,2411],[37,-76]],[[6099,2335],[-37,-75]],[[5987,2712],[75,0]],[[6062,2712],[37,-75]],[[6099,2637],[-37,-76]],[[6062,2561],[-75,0]],[[5987,2863],[75,0]],[[6062,2863],[37,-76]],[[6099,2787],[-37,-75]],[[5987,3013],[75,0]],[[6062,3013],[37,-75]],[[6099,2938],[-37,-75]],[[5987,3164],[75,0]],[[6062,3164],[37,-75]],[[6099,3089],[-37,-76]],[[5949,3240],[38,75]],[[5987,3315],[75,0]],[[6062,3315],[37,-75]],[[6099,3240],[-37,-76]],[[6062,3466],[37,-76]],[[6099,3390],[-37,-75]],[[5987,3315],[-38,75],[38,76],[75,0]],[[6099,527],[75,0]],[[6174,527],[37,-75]],[[6211,452],[-37,-75]],[[6174,377],[-75,0]],[[6099,678],[75,0]],[[6174,678],[37,-75]],[[6211,603],[-37,-76]],[[6099,829],[75,0]],[[6174,829],[37,-76]],[[6211,753],[-37,-75]],[[6099,979],[75,0]],[[6174,979],[37,-75]],[[6211,904],[-37,-75]],[[6099,1130],[75,0]],[[6174,1130],[37,-75]],[[6211,1055],[-37,-76]],[[6099,1281],[75,0]],[[6174,1281],[37,-76]],[[6211,1205],[-37,-75]],[[6099,1431],[75,0]],[[6174,1431],[37,-75]],[[6211,1356],[-37,-75]],[[6099,1582],[75,0]],[[6174,1582],[37,-75]],[[6211,1507],[-37,-76]],[[6099,1733],[75,0]],[[6174,1733],[37,-76]],[[6211,1657],[-37,-75]],[[6099,1883],[75,0]],[[6174,1883],[37,-75]],[[6211,1808],[-37,-75]],[[6099,2034],[75,0]],[[6174,2034],[37,-75]],[[6211,1959],[-37,-76]],[[6099,2185],[75,0]],[[6174,2185],[37,-76]],[[6211,2109],[-37,-75]],[[6099,2335],[75,0]],[[6174,2335],[37,-75]],[[6211,2260],[-37,-75]],[[6062,2411],[37,75]],[[6099,2486],[75,0]],[[6174,2486],[37,-75]],[[6211,2411],[-37,-76]],[[6099,2637],[75,0]],[[6174,2637],[37,-76]],[[6211,2561],[-37,-75]],[[6099,2486],[-37,75]],[[6099,2787],[75,0]],[[6174,2787],[37,-75]],[[6211,2712],[-37,-75]],[[6099,2938],[75,0]],[[6174,2938],[37,-75]],[[6211,2863],[-37,-76]],[[6099,3089],[75,0]],[[6174,3089],[37,-76]],[[6211,3013],[-37,-75]],[[6099,3240],[75,0]],[[6174,3240],[37,-76]],[[6211,3164],[-37,-75]],[[6099,3390],[75,0]],[[6174,3390],[37,-75]],[[6211,3315],[-37,-75]],[[6062,3466],[37,75],[75,0],[37,-75]],[[6211,3466],[-37,-76]],[[6211,452],[75,0]],[[6286,452],[38,-75]],[[6324,377],[-38,-76],[-75,0],[-37,76]],[[6211,603],[75,0]],[[6286,603],[38,-76]],[[6324,527],[-38,-75]],[[6211,753],[75,0]],[[6286,753],[38,-75]],[[6324,678],[-38,-75]],[[6211,904],[75,0]],[[6286,904],[38,-75]],[[6324,829],[-38,-76]],[[6211,1055],[75,0]],[[6286,1055],[38,-76]],[[6324,979],[-38,-75]],[[6211,1205],[75,0]],[[6286,1205],[38,-75]],[[6324,1130],[-38,-75]],[[6211,1356],[75,0]],[[6286,1356],[38,-75]],[[6324,1281],[-38,-76]],[[6211,1507],[75,0]],[[6286,1507],[38,-76]],[[6324,1431],[-38,-75]],[[6211,1657],[75,0]],[[6286,1657],[38,-75]],[[6324,1582],[-38,-75]],[[6211,1808],[75,0]],[[6286,1808],[38,-75]],[[6324,1733],[-38,-76]],[[6211,1959],[75,0]],[[6286,1959],[38,-76]],[[6324,1883],[-38,-75]],[[6211,2109],[75,0]],[[6286,2109],[38,-75]],[[6324,2034],[-38,-75]],[[6211,2260],[75,0]],[[6286,2260],[38,-75]],[[6324,2185],[-38,-76]],[[6211,2411],[75,0]],[[6286,2411],[38,-76]],[[6324,2335],[-38,-75]],[[6211,2561],[75,0]],[[6286,2561],[38,-75]],[[6324,2486],[-38,-75]],[[6211,2712],[75,0]],[[6286,2712],[38,-75]],[[6324,2637],[-38,-76]],[[6211,2863],[75,0]],[[6286,2863],[38,-76]],[[6324,2787],[-38,-75]],[[6211,3013],[75,0]],[[6286,3013],[38,-75]],[[6324,2938],[-38,-75]],[[6211,3164],[75,0]],[[6286,3164],[38,-75]],[[6324,3089],[-38,-76]],[[6211,3315],[75,0]],[[6286,3315],[38,-75]],[[6324,3240],[-38,-76]],[[6211,3466],[75,0],[38,-76]],[[6324,3390],[-38,-75]],[[6324,527],[75,0]],[[6399,527],[37,-75]],[[6436,452],[-37,-75]],[[6399,377],[-75,0]],[[6324,678],[75,0]],[[6399,678],[37,-75]],[[6436,603],[-37,-76]],[[6324,829],[75,0]],[[6399,829],[37,-76]],[[6436,753],[-37,-75]],[[6324,979],[75,0]],[[6399,979],[37,-75]],[[6436,904],[-37,-75]],[[6324,1130],[75,0]],[[6399,1130],[37,-75]],[[6436,1055],[-37,-76]],[[6324,1281],[75,0]],[[6399,1281],[37,-76]],[[6436,1205],[-37,-75]],[[6324,1431],[75,0]],[[6399,1431],[37,-75]],[[6436,1356],[-37,-75]],[[6324,1582],[75,0]],[[6399,1582],[37,-75]],[[6436,1507],[-37,-76]],[[6324,1733],[75,0]],[[6399,1733],[37,-76]],[[6436,1657],[-37,-75]],[[6324,1883],[75,0]],[[6399,1883],[37,-75]],[[6436,1808],[-37,-75]],[[6324,2034],[75,0]],[[6399,2034],[37,-75]],[[6436,1959],[-37,-76]],[[6324,2185],[75,0]],[[6399,2185],[37,-76]],[[6436,2109],[-37,-75]],[[6324,2335],[75,0]],[[6399,2335],[37,-75]],[[6436,2260],[-37,-75]],[[6324,2486],[75,0]],[[6399,2486],[37,-75]],[[6436,2411],[-37,-76]],[[6324,2637],[75,0]],[[6399,2637],[37,-76]],[[6436,2561],[-37,-75]],[[6324,2787],[75,0]],[[6399,2787],[37,-75]],[[6436,2712],[-37,-75]],[[6324,2938],[75,0]],[[6399,2938],[37,-75]],[[6436,2863],[-37,-76]],[[6324,3089],[75,0]],[[6399,3089],[37,-76]],[[6436,3013],[-37,-75]],[[6324,3240],[75,0]],[[6399,3240],[37,-76],[-37,-75]],[[6324,3390],[75,0]],[[6399,3390],[37,-75]],[[6436,3315],[-37,-75]],[[6436,452],[75,0]],[[6511,452],[37,-75]],[[6548,377],[-37,-76],[-75,0],[-37,76]],[[6436,603],[75,0]],[[6511,603],[37,-76]],[[6548,527],[-37,-75]],[[6436,753],[75,0]],[[6511,753],[37,-75]],[[6548,678],[-37,-75]],[[6436,904],[75,0]],[[6511,904],[37,-75]],[[6548,829],[-37,-76]],[[6436,1055],[75,0]],[[6511,1055],[37,-76]],[[6548,979],[-37,-75]],[[6436,1205],[75,0]],[[6511,1205],[37,-75]],[[6548,1130],[-37,-75]],[[6436,1356],[75,0]],[[6511,1356],[37,-75]],[[6548,1281],[-37,-76]],[[6436,1507],[75,0]],[[6511,1507],[37,-76]],[[6548,1431],[-37,-75]],[[6436,1657],[75,0]],[[6511,1657],[37,-75]],[[6548,1582],[-37,-75]],[[6436,1808],[75,0]],[[6511,1808],[37,-75]],[[6548,1733],[-37,-76]],[[6436,1959],[75,0]],[[6511,1959],[37,-76]],[[6548,1883],[-37,-75]],[[6436,2109],[75,0]],[[6511,2109],[37,-75]],[[6548,2034],[-37,-75]],[[6436,2260],[75,0]],[[6511,2260],[37,-75]],[[6548,2185],[-37,-76]],[[6436,2411],[75,0]],[[6511,2411],[37,-76]],[[6548,2335],[-37,-75]],[[6436,2561],[75,0]],[[6511,2561],[37,-75]],[[6548,2486],[-37,-75]],[[6436,2712],[75,0]],[[6511,2712],[37,-75]],[[6548,2637],[-37,-76]],[[6436,2863],[75,0]],[[6511,2863],[37,-76]],[[6548,2787],[-37,-75]],[[6436,3013],[75,0],[37,-75]],[[6548,2938],[-37,-75]],[[6399,3390],[37,76]],[[6436,3466],[75,0]],[[6511,3466],[37,-76]],[[6548,3390],[-37,-75]],[[6511,3315],[-75,0]],[[6511,3616],[37,-75]],[[6548,3541],[-37,-75]],[[6436,3466],[-37,75],[37,75],[75,0]],[[6548,527],[75,0]],[[6623,527],[37,-75]],[[6660,452],[-37,-75]],[[6623,377],[-75,0]],[[6548,678],[75,0]],[[6623,678],[37,-75]],[[6660,603],[-37,-76]],[[6548,829],[75,0]],[[6623,829],[37,-76]],[[6660,753],[-37,-75]],[[6548,979],[75,0]],[[6623,979],[37,-75]],[[6660,904],[-37,-75]],[[6548,1130],[75,0]],[[6623,1130],[37,-75]],[[6660,1055],[-37,-76]],[[6548,1281],[75,0]],[[6623,1281],[37,-76]],[[6660,1205],[-37,-75]],[[6548,1431],[75,0]],[[6623,1431],[37,-75]],[[6660,1356],[-37,-75]],[[6548,1582],[75,0]],[[6623,1582],[37,-75]],[[6660,1507],[-37,-76]],[[6548,1733],[75,0]],[[6623,1733],[37,-76]],[[6660,1657],[-37,-75]],[[6548,1883],[75,0]],[[6623,1883],[37,-75]],[[6660,1808],[-37,-75]],[[6548,2034],[75,0]],[[6623,2034],[37,-75]],[[6660,1959],[-37,-76]],[[6548,2185],[75,0]],[[6623,2185],[37,-76]],[[6660,2109],[-37,-75]],[[6548,2335],[75,0]],[[6623,2335],[37,-75]],[[6660,2260],[-37,-75]],[[6548,2486],[75,0]],[[6623,2486],[37,-75]],[[6660,2411],[-37,-76]],[[6548,2637],[75,0]],[[6623,2637],[37,-76]],[[6660,2561],[-37,-75]],[[6548,2787],[75,0]],[[6623,2787],[37,-75]],[[6660,2712],[-37,-75]],[[6548,2938],[75,0]],[[6623,2938],[37,-75]],[[6660,2863],[-37,-76]],[[6548,3390],[75,0]],[[6623,3390],[37,-75]],[[6660,3315],[-37,-75]],[[6623,3240],[-75,0],[-37,75]],[[6548,3541],[75,0]],[[6623,3541],[37,-75]],[[6660,3466],[-37,-76]],[[6511,3616],[37,75]],[[6548,3691],[75,0]],[[6623,3691],[37,-75]],[[6660,3616],[-37,-75]],[[6548,3842],[75,0]],[[6623,3842],[37,-75]],[[6660,3767],[-37,-76]],[[6548,3691],[-37,76],[37,75]],[[6548,3842],[-37,75],[37,76],[75,0],[37,-76],[-37,-75]],[[6660,452],[75,0]],[[6735,452],[38,-75]],[[6773,377],[-38,-76]],[[6735,301],[-75,0],[-37,76]],[[6660,603],[75,0]],[[6735,603],[38,-76]],[[6773,527],[-38,-75]],[[6660,753],[75,0]],[[6735,753],[38,-75]],[[6773,678],[-38,-75]],[[6660,904],[75,0]],[[6735,904],[38,-75]],[[6773,829],[-38,-76]],[[6660,1055],[75,0]],[[6735,1055],[38,-76]],[[6773,979],[-38,-75]],[[6660,1205],[75,0]],[[6735,1205],[38,-75]],[[6773,1130],[-38,-75]],[[6660,1356],[75,0]],[[6735,1356],[38,-75]],[[6773,1281],[-38,-76]],[[6660,1507],[75,0]],[[6735,1507],[38,-76]],[[6773,1431],[-38,-75]],[[6660,1657],[75,0]],[[6735,1657],[38,-75]],[[6773,1582],[-38,-75]],[[6660,1808],[75,0]],[[6735,1808],[38,-75]],[[6773,1733],[-38,-76]],[[6660,1959],[75,0]],[[6735,1959],[38,-76]],[[6773,1883],[-38,-75]],[[6660,2109],[75,0]],[[6735,2109],[38,-75]],[[6773,2034],[-38,-75]],[[6660,2260],[75,0]],[[6735,2260],[38,-75]],[[6773,2185],[-38,-76]],[[6660,2411],[75,0]],[[6735,2411],[38,-76]],[[6773,2335],[-38,-75]],[[6660,2561],[75,0]],[[6735,2561],[38,-75]],[[6773,2486],[-38,-75]],[[6660,2712],[75,0]],[[6735,2712],[38,-75]],[[6773,2637],[-38,-76]],[[6660,2863],[75,0]],[[6735,2863],[38,-76]],[[6773,2787],[-38,-75]],[[6623,2938],[37,75],[75,0]],[[6735,3013],[38,-75]],[[6773,2938],[-38,-75]],[[6660,3315],[75,0]],[[6735,3315],[38,-75]],[[6773,3240],[-38,-76]],[[6735,3164],[-75,0],[-37,76]],[[6660,3466],[75,0]],[[6735,3466],[38,-76]],[[6773,3390],[-38,-75]],[[6660,3616],[75,0]],[[6735,3616],[38,-75]],[[6773,3541],[-38,-75]],[[6660,3767],[75,0],[38,-76]],[[6773,3691],[-38,-75]],[[6773,377],[75,0]],[[6848,377],[37,-76]],[[6885,301],[-37,-75],[-75,0],[-38,75]],[[6773,527],[75,0]],[[6848,527],[37,-75]],[[6885,452],[-37,-75]],[[6773,678],[75,0]],[[6848,678],[37,-75]],[[6885,603],[-37,-76]],[[6773,829],[75,0]],[[6848,829],[37,-76]],[[6885,753],[-37,-75]],[[6773,979],[75,0]],[[6848,979],[37,-75]],[[6885,904],[-37,-75]],[[6773,1130],[75,0]],[[6848,1130],[37,-75]],[[6885,1055],[-37,-76]],[[6773,1281],[75,0]],[[6848,1281],[37,-76]],[[6885,1205],[-37,-75]],[[6773,1431],[75,0]],[[6848,1431],[37,-75]],[[6885,1356],[-37,-75]],[[6773,1582],[75,0]],[[6848,1582],[37,-75]],[[6885,1507],[-37,-76]],[[6773,1733],[75,0]],[[6848,1733],[37,-76]],[[6885,1657],[-37,-75]],[[6773,1883],[75,0]],[[6848,1883],[37,-75]],[[6885,1808],[-37,-75]],[[6773,2034],[75,0]],[[6848,2034],[37,-75]],[[6885,1959],[-37,-76]],[[6773,2185],[75,0]],[[6848,2185],[37,-76]],[[6885,2109],[-37,-75]],[[6773,2335],[75,0]],[[6848,2335],[37,-75]],[[6885,2260],[-37,-75]],[[6773,2486],[75,0]],[[6848,2486],[37,-75]],[[6885,2411],[-37,-76]],[[6773,2637],[75,0]],[[6848,2637],[37,-76]],[[6885,2561],[-37,-75]],[[6773,2787],[75,0]],[[6848,2787],[37,-75]],[[6885,2712],[-37,-75]],[[6773,2938],[75,0]],[[6848,2938],[37,-75]],[[6885,2863],[-37,-76]],[[6735,3013],[38,76]],[[6773,3089],[75,0]],[[6848,3089],[37,-76]],[[6885,3013],[-37,-75]],[[6773,3240],[75,0]],[[6848,3240],[37,-76]],[[6885,3164],[-37,-75]],[[6773,3089],[-38,75]],[[6773,3390],[75,0]],[[6848,3390],[37,-75]],[[6885,3315],[-37,-75]],[[6773,3541],[75,0]],[[6848,3541],[37,-75]],[[6885,3466],[-37,-76]],[[6773,3691],[75,0]],[[6848,3691],[37,-75]],[[6885,3616],[-37,-75]],[[6885,3917],[-37,-75]],[[6848,3842],[-75,0],[-38,75],[38,76],[75,0],[37,-76]],[[6885,452],[75,0]],[[6960,452],[37,-75]],[[6997,377],[-37,-76]],[[6960,301],[-75,0]],[[6885,603],[75,0]],[[6960,603],[37,-76]],[[6997,527],[-37,-75]],[[6885,753],[75,0]],[[6960,753],[37,-75]],[[6997,678],[-37,-75]],[[6885,904],[75,0]],[[6960,904],[37,-75]],[[6997,829],[-37,-76]],[[6885,1055],[75,0]],[[6960,1055],[37,-76]],[[6997,979],[-37,-75]],[[6885,1205],[75,0]],[[6960,1205],[37,-75]],[[6997,1130],[-37,-75]],[[6885,1356],[75,0]],[[6960,1356],[37,-75]],[[6997,1281],[-37,-76]],[[6885,1507],[75,0]],[[6960,1507],[37,-76]],[[6997,1431],[-37,-75]],[[6885,1657],[75,0]],[[6960,1657],[37,-75]],[[6997,1582],[-37,-75]],[[6885,1808],[75,0]],[[6960,1808],[37,-75]],[[6997,1733],[-37,-76]],[[6885,1959],[75,0]],[[6960,1959],[37,-76]],[[6997,1883],[-37,-75]],[[6885,2109],[75,0]],[[6960,2109],[37,-75]],[[6997,2034],[-37,-75]],[[6885,2260],[75,0]],[[6960,2260],[37,-75]],[[6997,2185],[-37,-76]],[[6885,2411],[75,0]],[[6960,2411],[37,-76]],[[6997,2335],[-37,-75]],[[6885,2561],[75,0]],[[6960,2561],[37,-75]],[[6997,2486],[-37,-75]],[[6885,2712],[75,0]],[[6960,2712],[37,-75]],[[6997,2637],[-37,-76]],[[6885,2863],[75,0]],[[6960,2863],[37,-76]],[[6997,2787],[-37,-75]],[[6885,3013],[75,0]],[[6960,3013],[37,-75]],[[6997,2938],[-37,-75]],[[6885,3164],[75,0]],[[6960,3164],[37,-75]],[[6997,3089],[-37,-76]],[[6885,3315],[75,0]],[[6960,3315],[37,-75]],[[6997,3240],[-37,-76]],[[6885,3466],[75,0]],[[6960,3466],[37,-76]],[[6997,3390],[-37,-75]],[[6885,3616],[75,0]],[[6960,3616],[37,-75]],[[6997,3541],[-37,-75]],[[6848,3691],[37,76]],[[6885,3767],[75,0]],[[6960,3767],[37,-76]],[[6997,3691],[-37,-75]],[[6885,3917],[75,0],[37,-75]],[[6997,3842],[-37,-75]],[[6885,3767],[-37,75]],[[6997,377],[75,0]],[[7072,377],[37,-76]],[[7109,301],[-37,-75],[-75,0],[-37,75]],[[6997,527],[75,0]],[[7072,527],[37,-75]],[[7109,452],[-37,-75]],[[6997,678],[75,0]],[[7072,678],[37,-75]],[[7109,603],[-37,-76]],[[6997,829],[75,0]],[[7072,829],[37,-76]],[[7109,753],[-37,-75]],[[6997,979],[75,0]],[[7072,979],[37,-75]],[[7109,904],[-37,-75]],[[6997,1130],[75,0]],[[7072,1130],[37,-75]],[[7109,1055],[-37,-76]],[[6997,1281],[75,0]],[[7072,1281],[37,-76]],[[7109,1205],[-37,-75]],[[6997,1431],[75,0]],[[7072,1431],[37,-75]],[[7109,1356],[-37,-75]],[[6997,1582],[75,0]],[[7072,1582],[37,-75]],[[7109,1507],[-37,-76]],[[6997,1733],[75,0]],[[7072,1733],[37,-76]],[[7109,1657],[-37,-75]],[[6997,1883],[75,0]],[[7072,1883],[37,-75]],[[7109,1808],[-37,-75]],[[6997,2034],[75,0]],[[7072,2034],[37,-75]],[[7109,1959],[-37,-76]],[[6997,2185],[75,0]],[[7072,2185],[37,-76]],[[7109,2109],[-37,-75]],[[6997,2335],[75,0]],[[7072,2335],[37,-75]],[[7109,2260],[-37,-75]],[[6997,2486],[75,0]],[[7072,2486],[37,-75]],[[7109,2411],[-37,-76]],[[6997,2637],[75,0]],[[7072,2637],[37,-76]],[[7109,2561],[-37,-75]],[[6997,2787],[75,0]],[[7072,2787],[37,-75]],[[7109,2712],[-37,-75]],[[6997,2938],[75,0]],[[7072,2938],[37,-75]],[[7109,2863],[-37,-76]],[[6997,3089],[75,0]],[[7072,3089],[37,-76]],[[7109,3013],[-37,-75]],[[6997,3240],[75,0]],[[7072,3240],[37,-76]],[[7109,3164],[-37,-75]],[[6997,3541],[75,0]],[[7072,3541],[37,-75]],[[7109,3466],[-37,-76]],[[7072,3390],[-75,0]],[[6997,3691],[75,0]],[[7072,3691],[37,-75],[-37,-75]],[[6997,3842],[75,0],[37,-75],[-37,-76]],[[7109,452],[75,0]],[[7184,452],[38,-75]],[[7222,377],[-38,-76]],[[7184,301],[-75,0]],[[7109,603],[75,0]],[[7184,603],[38,-76]],[[7222,527],[-38,-75]],[[7109,753],[75,0]],[[7184,753],[38,-75]],[[7222,678],[-38,-75]],[[7109,904],[75,0]],[[7184,904],[38,-75]],[[7222,829],[-38,-76]],[[7109,1055],[75,0]],[[7184,1055],[38,-76]],[[7222,979],[-38,-75]],[[7109,1205],[75,0]],[[7184,1205],[38,-75]],[[7222,1130],[-38,-75]],[[7109,1356],[75,0]],[[7184,1356],[38,-75]],[[7222,1281],[-38,-76]],[[7109,1507],[75,0]],[[7184,1507],[38,-76]],[[7222,1431],[-38,-75]],[[7109,1657],[75,0]],[[7184,1657],[38,-75]],[[7222,1582],[-38,-75]],[[7109,1808],[75,0]],[[7184,1808],[38,-75]],[[7222,1733],[-38,-76]],[[7109,1959],[75,0]],[[7184,1959],[38,-76]],[[7222,1883],[-38,-75]],[[7109,2109],[75,0]],[[7184,2109],[38,-75]],[[7222,2034],[-38,-75]],[[7109,2260],[75,0]],[[7184,2260],[38,-75]],[[7222,2185],[-38,-76]],[[7109,2411],[75,0]],[[7184,2411],[38,-76]],[[7222,2335],[-38,-75]],[[7109,2561],[75,0]],[[7184,2561],[38,-75]],[[7222,2486],[-38,-75]],[[7109,2712],[75,0]],[[7184,2712],[38,-75]],[[7222,2637],[-38,-76]],[[7109,2863],[75,0]],[[7184,2863],[38,-76]],[[7222,2787],[-38,-75]],[[7109,3013],[75,0]],[[7184,3013],[38,-75]],[[7222,2938],[-38,-75]],[[7109,3164],[75,0]],[[7184,3164],[38,-75]],[[7222,3089],[-38,-76]],[[7072,3240],[37,75]],[[7109,3315],[75,0]],[[7184,3315],[38,-75]],[[7222,3240],[-38,-76]],[[7109,3466],[75,0]],[[7184,3466],[38,-76]],[[7222,3390],[-38,-75]],[[7109,3315],[-37,75]],[[7222,377],[75,0]],[[7297,377],[37,-76]],[[7334,301],[-37,-75],[-75,0],[-38,75]],[[7222,527],[75,0]],[[7297,527],[37,-75]],[[7334,452],[-37,-75]],[[7222,678],[75,0]],[[7297,678],[37,-75]],[[7334,603],[-37,-76]],[[7222,829],[75,0]],[[7297,829],[37,-76]],[[7334,753],[-37,-75]],[[7222,979],[75,0]],[[7297,979],[37,-75]],[[7334,904],[-37,-75]],[[7222,1130],[75,0]],[[7297,1130],[37,-75]],[[7334,1055],[-37,-76]],[[7222,1281],[75,0]],[[7297,1281],[37,-76]],[[7334,1205],[-37,-75]],[[7222,1431],[75,0]],[[7297,1431],[37,-75]],[[7334,1356],[-37,-75]],[[7222,1582],[75,0]],[[7297,1582],[37,-75]],[[7334,1507],[-37,-76]],[[7222,1733],[75,0]],[[7297,1733],[37,-76]],[[7334,1657],[-37,-75]],[[7222,1883],[75,0]],[[7297,1883],[37,-75]],[[7334,1808],[-37,-75]],[[7222,2034],[75,0]],[[7297,2034],[37,-75]],[[7334,1959],[-37,-76]],[[7222,2185],[75,0]],[[7297,2185],[37,-76]],[[7334,2109],[-37,-75]],[[7222,2335],[75,0]],[[7297,2335],[37,-75]],[[7334,2260],[-37,-75]],[[7222,2486],[75,0]],[[7297,2486],[37,-75]],[[7334,2411],[-37,-76]],[[7222,2637],[75,0]],[[7297,2637],[37,-76]],[[7334,2561],[-37,-75]],[[7222,2787],[75,0]],[[7297,2787],[37,-75]],[[7334,2712],[-37,-75]],[[7222,2938],[75,0]],[[7297,2938],[37,-75]],[[7334,2863],[-37,-76]],[[7222,3089],[75,0]],[[7297,3089],[37,-76]],[[7334,3013],[-37,-75]],[[7222,3390],[75,0]],[[7297,3390],[37,-75]],[[7334,3315],[-37,-75]],[[7297,3240],[-75,0]],[[7184,3466],[38,75],[75,0]],[[7297,3541],[37,-75]],[[7334,3466],[-37,-76]],[[7222,3842],[75,0]],[[7297,3842],[37,-75]],[[7334,3767],[-37,-76]],[[7297,3691],[-75,0],[-38,76],[38,75]],[[7222,3993],[75,0]],[[7297,3993],[37,-76],[-37,-75]],[[7222,3842],[-38,75],[38,76]],[[7222,3993],[-38,75],[38,76],[75,0],[37,-76],[-37,-75]],[[7334,452],[75,0]],[[7409,452],[37,-75]],[[7446,377],[-37,-76]],[[7409,301],[-75,0]],[[7334,603],[75,0]],[[7409,603],[37,-76]],[[7446,527],[-37,-75]],[[7334,753],[75,0]],[[7409,753],[37,-75]],[[7446,678],[-37,-75]],[[7334,904],[75,0]],[[7409,904],[37,-75]],[[7446,829],[-37,-76]],[[7334,1055],[75,0]],[[7409,1055],[37,-76]],[[7446,979],[-37,-75]],[[7334,1205],[75,0]],[[7409,1205],[37,-75]],[[7446,1130],[-37,-75]],[[7334,1356],[75,0]],[[7409,1356],[37,-75]],[[7446,1281],[-37,-76]],[[7334,1507],[75,0]],[[7409,1507],[37,-76]],[[7446,1431],[-37,-75]],[[7334,1657],[75,0]],[[7409,1657],[37,-75]],[[7446,1582],[-37,-75]],[[7334,1808],[75,0]],[[7409,1808],[37,-75]],[[7446,1733],[-37,-76]],[[7334,1959],[75,0]],[[7409,1959],[37,-76]],[[7446,1883],[-37,-75]],[[7334,2109],[75,0]],[[7409,2109],[37,-75]],[[7446,2034],[-37,-75]],[[7334,2260],[75,0]],[[7409,2260],[37,-75]],[[7446,2185],[-37,-76]],[[7334,2411],[75,0]],[[7409,2411],[37,-76]],[[7446,2335],[-37,-75]],[[7334,2712],[75,0]],[[7409,2712],[37,-75],[-37,-76],[-75,0]],[[7334,2863],[75,0]],[[7409,2863],[37,-76]],[[7446,2787],[-37,-75]],[[7334,3013],[75,0]],[[7409,3013],[37,-75]],[[7446,2938],[-37,-75]],[[7297,3089],[37,75]],[[7334,3164],[75,0]],[[7409,3164],[37,-75]],[[7446,3089],[-37,-76]],[[7334,3315],[75,0]],[[7409,3315],[37,-75]],[[7446,3240],[-37,-76]],[[7334,3164],[-37,76]],[[7334,3466],[75,0]],[[7409,3466],[37,-76]],[[7446,3390],[-37,-75]],[[7297,3541],[37,75]],[[7334,3616],[75,0]],[[7409,3616],[37,-75]],[[7446,3541],[-37,-75]],[[7334,3767],[75,0]],[[7409,3767],[37,-76]],[[7446,3691],[-37,-75]],[[7334,3616],[-37,75]],[[7446,377],[75,0]],[[7521,377],[37,-76]],[[7558,301],[-37,-75],[-75,0],[-37,75]],[[7446,527],[75,0]],[[7521,527],[37,-75]],[[7558,452],[-37,-75]],[[7446,678],[75,0]],[[7521,678],[37,-75]],[[7558,603],[-37,-76]],[[7446,829],[75,0]],[[7521,829],[37,-76]],[[7558,753],[-37,-75]],[[7446,979],[75,0]],[[7521,979],[37,-75]],[[7558,904],[-37,-75]],[[7446,1130],[75,0]],[[7521,1130],[37,-75]],[[7558,1055],[-37,-76]],[[7446,1281],[75,0]],[[7521,1281],[37,-76]],[[7558,1205],[-37,-75]],[[7446,1431],[75,0]],[[7521,1431],[37,-75]],[[7558,1356],[-37,-75]],[[7446,1582],[75,0]],[[7521,1582],[37,-75]],[[7558,1507],[-37,-76]],[[7446,1733],[75,0]],[[7521,1733],[37,-76]],[[7558,1657],[-37,-75]],[[7446,1883],[75,0]],[[7521,1883],[37,-75]],[[7558,1808],[-37,-75]],[[7446,2034],[75,0]],[[7521,2034],[37,-75]],[[7558,1959],[-37,-76]],[[7446,2185],[75,0]],[[7521,2185],[37,-76]],[[7558,2109],[-37,-75]],[[7446,2335],[75,0]],[[7521,2335],[37,-75]],[[7558,2260],[-37,-75]],[[7409,2411],[37,75],[75,0]],[[7521,2486],[37,-75]],[[7558,2411],[-37,-76]],[[7446,2938],[75,0]],[[7521,2938],[37,-75]],[[7558,2863],[-37,-76]],[[7521,2787],[-75,0]],[[7446,3089],[75,0]],[[7521,3089],[37,-76]],[[7558,3013],[-37,-75]],[[7446,3390],[75,0]],[[7521,3390],[37,-75]],[[7558,3315],[-37,-75]],[[7521,3240],[-75,0]],[[7446,3541],[75,0]],[[7521,3541],[37,-75],[-37,-76]],[[7446,3691],[75,0]],[[7521,3691],[37,-75],[-37,-75]],[[7409,3767],[37,75],[75,0]],[[7521,3842],[37,-75]],[[7558,3767],[-37,-76]],[[7446,4144],[75,0]],[[7521,4144],[37,-76]],[[7558,4068],[-37,-75],[-75,0],[-37,75],[37,76]],[[7446,4294],[75,0]],[[7521,4294],[37,-75]],[[7558,4219],[-37,-75]],[[7446,4144],[-37,75],[37,75]],[[7446,4445],[75,0]],[[7521,4445],[37,-75]],[[7558,4370],[-37,-76]],[[7446,4294],[-37,76],[37,75]],[[7446,4596],[75,0]],[[7521,4596],[37,-76],[-37,-75]],[[7446,4445],[-37,75],[37,76]],[[7446,4596],[-37,75],[37,75],[75,0],[37,-75],[-37,-75]],[[7558,452],[75,0]],[[7633,452],[38,-75]],[[7671,377],[-38,-76],[-75,0]],[[7558,603],[75,0]],[[7633,603],[38,-76]],[[7671,527],[-38,-75]],[[7558,753],[75,0]],[[7633,753],[38,-75]],[[7671,678],[-38,-75]],[[7558,904],[75,0]],[[7633,904],[38,-75]],[[7671,829],[-38,-76]],[[7558,1055],[75,0]],[[7633,1055],[38,-76]],[[7671,979],[-38,-75]],[[7558,1205],[75,0]],[[7633,1205],[38,-75]],[[7671,1130],[-38,-75]],[[7558,1356],[75,0]],[[7633,1356],[38,-75]],[[7671,1281],[-38,-76]],[[7558,1507],[75,0]],[[7633,1507],[38,-76]],[[7671,1431],[-38,-75]],[[7558,1657],[75,0]],[[7633,1657],[38,-75]],[[7671,1582],[-38,-75]],[[7558,1808],[75,0]],[[7633,1808],[38,-75]],[[7671,1733],[-38,-76]],[[7558,1959],[75,0]],[[7633,1959],[38,-76]],[[7671,1883],[-38,-75]],[[7558,2109],[75,0]],[[7633,2109],[38,-75]],[[7671,2034],[-38,-75]],[[7558,2260],[75,0]],[[7633,2260],[38,-75]],[[7671,2185],[-38,-76]],[[7558,2411],[75,0]],[[7633,2411],[38,-76]],[[7671,2335],[-38,-75]],[[7521,2486],[37,75]],[[7558,2561],[75,0]],[[7633,2561],[38,-75]],[[7671,2486],[-38,-75]],[[7558,2712],[75,0]],[[7633,2712],[38,-75],[-38,-76]],[[7558,2561],[-37,76],[37,75]],[[7558,2863],[75,0],[38,-76],[-38,-75]],[[7558,2712],[-37,75]],[[7521,3089],[37,75]],[[7558,3164],[75,0]],[[7633,3164],[38,-75]],[[7671,3089],[-38,-76]],[[7633,3013],[-75,0]],[[7558,3315],[75,0],[38,-75],[-38,-76]],[[7558,3164],[-37,76]],[[7521,3842],[37,75],[75,0],[38,-75]],[[7671,3842],[-38,-75]],[[7633,3767],[-75,0]],[[7558,4219],[75,0]],[[7633,4219],[38,-75]],[[7671,4144],[-38,-76]],[[7633,4068],[-75,0]],[[7558,4370],[75,0]],[[7633,4370],[38,-76]],[[7671,4294],[-38,-75]],[[7671,527],[75,0]],[[7746,527],[37,-75]],[[7783,452],[-37,-75]],[[7746,377],[-75,0]],[[7671,678],[75,0]],[[7746,678],[37,-75]],[[7783,603],[-37,-76]],[[7671,829],[75,0]],[[7746,829],[37,-76]],[[7783,753],[-37,-75]],[[7671,979],[75,0]],[[7746,979],[37,-75]],[[7783,904],[-37,-75]],[[7671,1130],[75,0]],[[7746,1130],[37,-75]],[[7783,1055],[-37,-76]],[[7671,1281],[75,0]],[[7746,1281],[37,-76]],[[7783,1205],[-37,-75]],[[7671,1431],[75,0]],[[7746,1431],[37,-75]],[[7783,1356],[-37,-75]],[[7671,1582],[75,0]],[[7746,1582],[37,-75]],[[7783,1507],[-37,-76]],[[7671,1733],[75,0]],[[7746,1733],[37,-76]],[[7783,1657],[-37,-75]],[[7671,1883],[75,0]],[[7746,1883],[37,-75]],[[7783,1808],[-37,-75]],[[7671,2185],[75,0]],[[7746,2185],[37,-76]],[[7783,2109],[-37,-75]],[[7746,2034],[-75,0]],[[7671,2335],[75,0]],[[7746,2335],[37,-75]],[[7783,2260],[-37,-75]],[[7671,2486],[75,0],[37,-75]],[[7783,2411],[-37,-76]],[[7671,3089],[75,0]],[[7746,3089],[37,-76]],[[7783,3013],[-37,-75],[-75,0],[-38,75]],[[7671,3691],[75,0]],[[7746,3691],[37,-75]],[[7783,3616],[-37,-75],[-75,0],[-38,75],[38,75]],[[7671,3842],[75,0]],[[7746,3842],[37,-75]],[[7783,3767],[-37,-76]],[[7671,3691],[-38,76]],[[7671,4144],[75,0]],[[7746,4144],[37,-76]],[[7783,4068],[-37,-75],[-75,0],[-38,75]],[[7633,4370],[38,75],[75,0]],[[7746,4445],[37,-75]],[[7783,4370],[-37,-76]],[[7746,4294],[-75,0]],[[7783,452],[75,0]],[[7858,452],[37,-75]],[[7895,377],[-37,-76],[-75,0],[-37,76]],[[7783,603],[75,0]],[[7858,603],[37,-76]],[[7895,527],[-37,-75]],[[7783,753],[75,0]],[[7858,753],[37,-75]],[[7895,678],[-37,-75]],[[7783,904],[75,0]],[[7858,904],[37,-75]],[[7895,829],[-37,-76]],[[7783,1055],[75,0]],[[7858,1055],[37,-76]],[[7895,979],[-37,-75]],[[7783,1205],[75,0]],[[7858,1205],[37,-75]],[[7895,1130],[-37,-75]],[[7783,1356],[75,0]],[[7858,1356],[37,-75]],[[7895,1281],[-37,-76]],[[7783,1507],[75,0]],[[7858,1507],[37,-76]],[[7895,1431],[-37,-75]],[[7783,1657],[75,0]],[[7858,1657],[37,-75]],[[7895,1582],[-37,-75]],[[7783,1808],[75,0]],[[7858,1808],[37,-75]],[[7895,1733],[-37,-76]],[[7746,1883],[37,76]],[[7783,1959],[75,0]],[[7858,1959],[37,-76]],[[7895,1883],[-37,-75]],[[7783,2109],[75,0]],[[7858,2109],[37,-75]],[[7895,2034],[-37,-75]],[[7783,1959],[-37,75]],[[7783,2260],[75,0]],[[7858,2260],[37,-75]],[[7895,2185],[-37,-76]],[[7783,2411],[75,0]],[[7858,2411],[37,-76]],[[7895,2335],[-37,-75]],[[7746,2787],[37,76],[75,0],[37,-76],[-37,-75],[-75,0],[-37,75]],[[7746,3089],[37,75],[75,0],[37,-75],[-37,-76],[-75,0]],[[7783,3767],[75,0]],[[7858,3767],[37,-76]],[[7895,3691],[-37,-75]],[[7858,3616],[-75,0]],[[7746,3842],[37,75],[75,0]],[[7858,3917],[37,-75]],[[7895,3842],[-37,-75]],[[7746,4144],[37,75]],[[7783,4219],[75,0]],[[7858,4219],[37,-75]],[[7895,4144],[-37,-76]],[[7858,4068],[-75,0]],[[7783,4370],[75,0]],[[7858,4370],[37,-76]],[[7895,4294],[-37,-75]],[[7783,4219],[-37,75]],[[7746,4445],[37,75],[75,0],[37,-75]],[[7895,4445],[-37,-75]],[[7895,527],[75,0]],[[7970,527],[38,-75]],[[8008,452],[-38,-75]],[[7970,377],[-75,0]],[[7895,678],[75,0]],[[7970,678],[38,-75]],[[8008,603],[-38,-76]],[[7895,829],[75,0]],[[7970,829],[38,-76]],[[8008,753],[-38,-75]],[[7895,979],[75,0]],[[7970,979],[38,-75]],[[8008,904],[-38,-75]],[[7895,1130],[75,0]],[[7970,1130],[38,-75]],[[8008,1055],[-38,-76]],[[7895,1281],[75,0]],[[7970,1281],[38,-76]],[[8008,1205],[-38,-75]],[[7895,1431],[75,0]],[[7970,1431],[38,-75]],[[8008,1356],[-38,-75]],[[7895,1582],[75,0]],[[7970,1582],[38,-75]],[[8008,1507],[-38,-76]],[[7895,1733],[75,0]],[[7970,1733],[38,-76]],[[8008,1657],[-38,-75]],[[7895,1883],[75,0]],[[7970,1883],[38,-75]],[[8008,1808],[-38,-75]],[[7895,2185],[75,0]],[[7970,2185],[38,-76]],[[8008,2109],[-38,-75]],[[7970,2034],[-75,0]],[[7895,2335],[75,0]],[[7970,2335],[38,-75]],[[8008,2260],[-38,-75]],[[7858,2411],[37,75]],[[7895,2486],[75,0]],[[7970,2486],[38,-75],[-38,-76]],[[7895,2486],[-37,75],[37,76],[75,0],[38,-76],[-38,-75]],[[7895,3691],[75,0]],[[7970,3691],[38,-75],[-38,-75],[-75,0],[-37,75]],[[7895,3842],[75,0]],[[7970,3842],[38,-75],[-38,-76]],[[7858,3917],[37,76]],[[7895,3993],[75,0]],[[7970,3993],[38,-76],[-38,-75]],[[7895,4144],[75,0]],[[7970,4144],[38,-76]],[[8008,4068],[-38,-75]],[[7895,3993],[-37,75]],[[7895,4294],[75,0]],[[7970,4294],[38,-75]],[[8008,4219],[-38,-75]],[[7895,4445],[75,0],[38,-75]],[[8008,4370],[-38,-76]],[[7895,4897],[75,0]],[[7970,4897],[38,-76]],[[8008,4821],[-38,-75],[-75,0],[-37,75],[37,76]],[[8008,4972],[-38,-75]],[[7895,4897],[-37,75],[37,75],[75,0],[38,-75]],[[8008,452],[74,0]],[[8082,452],[38,-75]],[[8120,377],[-38,-76]],[[8082,301],[-74,0],[-38,76]],[[8008,603],[74,0]],[[8082,603],[38,-76]],[[8120,527],[-38,-75]],[[8008,753],[74,0]],[[8082,753],[38,-75]],[[8120,678],[-38,-75]],[[8008,904],[74,0]],[[8082,904],[38,-75]],[[8120,829],[-38,-76]],[[8008,1055],[74,0]],[[8082,1055],[38,-76]],[[8120,979],[-38,-75]],[[8008,1205],[74,0]],[[8082,1205],[38,-75]],[[8120,1130],[-38,-75]],[[8008,1356],[74,0]],[[8082,1356],[38,-75]],[[8120,1281],[-38,-76]],[[8008,1507],[74,0]],[[8082,1507],[38,-76]],[[8120,1431],[-38,-75]],[[8008,1657],[74,0]],[[8082,1657],[38,-75]],[[8120,1582],[-38,-75]],[[8008,1808],[74,0]],[[8082,1808],[38,-75]],[[8120,1733],[-38,-76]],[[7970,1883],[38,76]],[[8008,1959],[74,0]],[[8082,1959],[38,-76]],[[8120,1883],[-38,-75]],[[8008,2109],[74,0]],[[8082,2109],[38,-75]],[[8120,2034],[-38,-75]],[[8008,1959],[-38,75]],[[8008,2260],[74,0]],[[8082,2260],[38,-75]],[[8120,2185],[-38,-76]],[[7970,3089],[38,75],[74,0],[38,-75],[-38,-76],[-74,0],[-38,76]],[[8008,4219],[74,0]],[[8082,4219],[38,-75]],[[8120,4144],[-38,-76],[-74,0]],[[8008,4370],[74,0]],[[8082,4370],[38,-76]],[[8120,4294],[-38,-75]],[[8082,4671],[38,-75]],[[8120,4596],[-38,-76]],[[8082,4520],[-74,0],[-38,76],[38,75],[74,0]],[[8008,4972],[74,0]],[[8082,4972],[38,-75]],[[8120,4897],[-38,-76]],[[8082,4821],[-74,0]],[[8120,377],[75,0]],[[8195,377],[37,-76]],[[8232,301],[-37,-75],[-75,0],[-38,75]],[[8120,527],[75,0]],[[8195,527],[37,-75]],[[8232,452],[-37,-75]],[[8120,678],[75,0]],[[8195,678],[37,-75]],[[8232,603],[-37,-76]],[[8120,829],[75,0]],[[8195,829],[37,-76]],[[8232,753],[-37,-75]],[[8120,979],[75,0]],[[8195,979],[37,-75]],[[8232,904],[-37,-75]],[[8120,1281],[75,0]],[[8195,1281],[37,-76]],[[8232,1205],[-37,-75]],[[8195,1130],[-75,0]],[[8120,1431],[75,0]],[[8195,1431],[37,-75]],[[8232,1356],[-37,-75]],[[8120,1582],[75,0]],[[8195,1582],[37,-75]],[[8232,1507],[-37,-76]],[[8120,1733],[75,0]],[[8195,1733],[37,-76]],[[8232,1657],[-37,-75]],[[8120,1883],[75,0]],[[8195,1883],[37,-75]],[[8232,1808],[-37,-75]],[[8120,2034],[75,0]],[[8195,2034],[37,-75]],[[8232,1959],[-37,-76]],[[8120,2185],[75,0]],[[8195,2185],[37,-76]],[[8232,2109],[-37,-75]],[[8082,2260],[38,75],[75,0],[37,-75]],[[8232,2260],[-37,-75]],[[8082,2561],[38,76],[75,0],[37,-76],[-37,-75],[-75,0],[-38,75]],[[8120,3691],[75,0]],[[8195,3691],[37,-75]],[[8232,3616],[-37,-75]],[[8195,3541],[-75,0],[-38,75],[38,75]],[[8195,3842],[37,-75]],[[8232,3767],[-37,-76]],[[8120,3691],[-38,76],[38,75],[75,0]],[[8120,4294],[75,0]],[[8195,4294],[37,-75]],[[8232,4219],[-37,-75],[-75,0]],[[8082,4370],[38,75]],[[8120,4445],[75,0]],[[8195,4445],[37,-75]],[[8232,4370],[-37,-76]],[[8120,4596],[75,0]],[[8195,4596],[37,-76]],[[8232,4520],[-37,-75]],[[8120,4445],[-38,75]],[[8082,4671],[38,75]],[[8120,4746],[75,0]],[[8195,4746],[37,-75]],[[8232,4671],[-37,-75]],[[8120,4897],[75,0]],[[8195,4897],[37,-76]],[[8232,4821],[-37,-75]],[[8120,4746],[-38,75]],[[8082,4972],[38,75],[75,0]],[[8195,5047],[37,-75]],[[8232,4972],[-37,-75]],[[8232,452],[75,0]],[[8307,452],[37,-75]],[[8344,377],[-37,-76],[-75,0]],[[8232,603],[75,0]],[[8307,603],[37,-76]],[[8344,527],[-37,-75]],[[8232,753],[75,0]],[[8307,753],[37,-75]],[[8344,678],[-37,-75]],[[8232,904],[75,0]],[[8307,904],[37,-75]],[[8344,829],[-37,-76]],[[8195,979],[37,76]],[[8232,1055],[75,0]],[[8307,1055],[37,-76]],[[8344,979],[-37,-75]],[[8232,1205],[75,0]],[[8307,1205],[37,-75]],[[8344,1130],[-37,-75]],[[8232,1055],[-37,75]],[[8232,1356],[75,0]],[[8307,1356],[37,-75]],[[8344,1281],[-37,-76]],[[8232,1507],[75,0]],[[8307,1507],[37,-76]],[[8344,1431],[-37,-75]],[[8232,1657],[75,0]],[[8307,1657],[37,-75]],[[8344,1582],[-37,-75]],[[8232,1808],[75,0]],[[8307,1808],[37,-75]],[[8344,1733],[-37,-76]],[[8232,1959],[75,0]],[[8307,1959],[37,-76]],[[8344,1883],[-37,-75]],[[8232,2109],[75,0]],[[8307,2109],[37,-75]],[[8344,2034],[-37,-75]],[[8232,2260],[75,0],[37,-75]],[[8344,2185],[-37,-76]],[[8232,3013],[75,0]],[[8307,3013],[37,-75],[-37,-75],[-75,0],[-37,75],[37,75]],[[8307,3164],[37,-75]],[[8344,3089],[-37,-76]],[[8232,3013],[-37,76],[37,75],[75,0]],[[8232,3466],[75,0]],[[8307,3466],[37,-76]],[[8344,3390],[-37,-75],[-75,0],[-37,75],[37,76]],[[8232,3616],[75,0],[37,-75]],[[8344,3541],[-37,-75]],[[8232,3466],[-37,75]],[[8195,3842],[37,75],[75,0],[37,-75]],[[8344,3842],[-37,-75]],[[8307,3767],[-75,0]],[[8232,4370],[75,0]],[[8307,4370],[37,-76]],[[8344,4294],[-37,-75],[-75,0]],[[8232,4520],[75,0]],[[8307,4520],[37,-75]],[[8344,4445],[-37,-75]],[[8232,4671],[75,0],[37,-75],[-37,-76]],[[8232,4972],[75,0]],[[8307,4972],[37,-75]],[[8344,4897],[-37,-76]],[[8307,4821],[-75,0]],[[8195,5047],[37,76],[75,0],[37,-76]],[[8344,5047],[-37,-75]],[[8344,527],[75,0]],[[8419,527],[38,-75]],[[8457,452],[-38,-75]],[[8419,377],[-75,0]],[[8344,678],[75,0]],[[8419,678],[38,-75]],[[8457,603],[-38,-76]],[[8344,829],[75,0]],[[8419,829],[38,-76]],[[8457,753],[-38,-75]],[[8344,979],[75,0]],[[8419,979],[38,-75]],[[8457,904],[-38,-75]],[[8344,1130],[75,0]],[[8419,1130],[38,-75]],[[8457,1055],[-38,-76]],[[8344,1281],[75,0]],[[8419,1281],[38,-76]],[[8457,1205],[-38,-75]],[[8344,1431],[75,0]],[[8419,1431],[38,-75]],[[8457,1356],[-38,-75]],[[8344,1582],[75,0]],[[8419,1582],[38,-75]],[[8457,1507],[-38,-76]],[[8344,1733],[75,0]],[[8419,1733],[38,-76]],[[8457,1657],[-38,-75]],[[8344,1883],[75,0]],[[8419,1883],[38,-75]],[[8457,1808],[-38,-75]],[[8344,2034],[75,0]],[[8419,2034],[38,-75]],[[8457,1959],[-38,-76]],[[8344,2185],[75,0]],[[8419,2185],[38,-76]],[[8457,2109],[-38,-75]],[[8419,2787],[38,-75]],[[8457,2712],[-38,-75],[-75,0],[-37,75],[37,75],[75,0]],[[8307,3164],[37,76],[75,0]],[[8419,3240],[38,-76]],[[8457,3164],[-38,-75],[-75,0]],[[8344,3541],[75,0],[38,-75]],[[8457,3466],[-38,-76]],[[8419,3390],[-75,0]],[[8344,3842],[75,0]],[[8419,3842],[38,-75]],[[8457,3767],[-38,-76]],[[8419,3691],[-75,0],[-37,76]],[[8419,4144],[38,-76]],[[8457,4068],[-38,-75]],[[8419,3993],[-75,0],[-37,75],[37,76],[75,0]],[[8344,4445],[75,0],[38,-75],[-38,-76],[-75,0]],[[8344,4897],[75,0]],[[8419,4897],[38,-76]],[[8457,4821],[-38,-75],[-75,0],[-37,75]],[[8344,5047],[75,0]],[[8419,5047],[38,-75]],[[8457,4972],[-38,-75]],[[8457,452],[74,0]],[[8531,452],[38,-75]],[[8569,377],[-38,-76]],[[8531,301],[-74,0],[-38,76]],[[8457,603],[74,0]],[[8531,603],[38,-76]],[[8569,527],[-38,-75]],[[8457,753],[74,0]],[[8531,753],[38,-75]],[[8569,678],[-38,-75]],[[8457,904],[74,0]],[[8531,904],[38,-75]],[[8569,829],[-38,-76]],[[8457,1055],[74,0]],[[8531,1055],[38,-76]],[[8569,979],[-38,-75]],[[8457,1205],[74,0]],[[8531,1205],[38,-75]],[[8569,1130],[-38,-75]],[[8457,1356],[74,0]],[[8531,1356],[38,-75]],[[8569,1281],[-38,-76]],[[8457,1507],[74,0]],[[8531,1507],[38,-76]],[[8569,1431],[-38,-75]],[[8457,1657],[74,0]],[[8531,1657],[38,-75]],[[8569,1582],[-38,-75]],[[8457,1808],[74,0]],[[8531,1808],[38,-75]],[[8569,1733],[-38,-76]],[[8457,1959],[74,0]],[[8531,1959],[38,-76]],[[8569,1883],[-38,-75]],[[8457,2109],[74,0]],[[8531,2109],[38,-75]],[[8569,2034],[-38,-75]],[[8419,2185],[38,75]],[[8457,2260],[74,0]],[[8531,2260],[38,-75]],[[8569,2185],[-38,-76]],[[8457,2411],[74,0]],[[8531,2411],[38,-76]],[[8569,2335],[-38,-75]],[[8457,2260],[-38,75],[38,76]],[[8569,2486],[-38,-75]],[[8457,2411],[-38,75],[38,75],[74,0],[38,-75]],[[8419,2787],[38,76],[74,0],[38,-76],[-38,-75],[-74,0]],[[8419,3240],[38,75]],[[8457,3315],[74,0]],[[8531,3315],[38,-75]],[[8569,3240],[-38,-76]],[[8531,3164],[-74,0]],[[8457,3466],[74,0],[38,-76],[-38,-75]],[[8457,3315],[-38,75]],[[8457,3767],[74,0]],[[8531,3767],[38,-76]],[[8569,3691],[-38,-75]],[[8531,3616],[-74,0],[-38,75]],[[8419,3842],[38,75]],[[8457,3917],[74,0]],[[8531,3917],[38,-75],[-38,-75]],[[8457,4068],[74,0]],[[8531,4068],[38,-75],[-38,-76]],[[8457,3917],[-38,76]],[[8419,4144],[38,75],[74,0],[38,-75],[-38,-76]],[[8457,4972],[74,0]],[[8531,4972],[38,-75]],[[8569,4897],[-38,-76]],[[8531,4821],[-74,0]],[[8419,5047],[38,76]],[[8457,5123],[74,0]],[[8531,5123],[38,-76]],[[8569,5047],[-38,-75]],[[8457,5274],[74,0]],[[8531,5274],[38,-76]],[[8569,5198],[-38,-75]],[[8457,5123],[-38,75],[38,76]],[[8569,5349],[-38,-75]],[[8457,5274],[-38,75],[38,75],[74,0],[38,-75]],[[8569,377],[75,0]],[[8644,377],[37,-76],[-37,-75],[-75,0],[-38,75]],[[8569,527],[75,0]],[[8644,527],[37,-75]],[[8681,452],[-37,-75]],[[8569,678],[75,0]],[[8644,678],[37,-75]],[[8681,603],[-37,-76]],[[8569,829],[75,0]],[[8644,829],[37,-76]],[[8681,753],[-37,-75]],[[8569,979],[75,0]],[[8644,979],[37,-75]],[[8681,904],[-37,-75]],[[8569,1130],[75,0]],[[8644,1130],[37,-75]],[[8681,1055],[-37,-76]],[[8569,1281],[75,0]],[[8644,1281],[37,-76]],[[8681,1205],[-37,-75]],[[8569,1431],[75,0]],[[8644,1431],[37,-75]],[[8681,1356],[-37,-75]],[[8569,1582],[75,0]],[[8644,1582],[37,-75]],[[8681,1507],[-37,-76]],[[8569,1733],[75,0]],[[8644,1733],[37,-76]],[[8681,1657],[-37,-75]],[[8569,1883],[75,0]],[[8644,1883],[37,-75]],[[8681,1808],[-37,-75]],[[8569,2034],[75,0]],[[8644,2034],[37,-75]],[[8681,1959],[-37,-76]],[[8569,2185],[75,0]],[[8644,2185],[37,-76]],[[8681,2109],[-37,-75]],[[8569,2335],[75,0]],[[8644,2335],[37,-75]],[[8681,2260],[-37,-75]],[[8569,2486],[75,0]],[[8644,2486],[37,-75]],[[8681,2411],[-37,-76]],[[8569,3240],[75,0],[37,-76],[-37,-75],[-75,0],[-38,75]],[[8569,3691],[75,0],[37,-75],[-37,-75],[-75,0],[-38,75]],[[8644,4596],[37,-76]],[[8681,4520],[-37,-75]],[[8644,4445],[-75,0],[-38,75],[38,76],[75,0]],[[8569,4897],[75,0]],[[8644,4897],[37,-76]],[[8681,4821],[-37,-75]],[[8644,4746],[-75,0],[-38,75]],[[8569,5047],[75,0]],[[8644,5047],[37,-75]],[[8681,4972],[-37,-75]],[[8569,5198],[75,0]],[[8644,5198],[37,-75]],[[8681,5123],[-37,-76]],[[8569,5349],[75,0],[37,-75],[-37,-76]],[[8681,603],[75,0]],[[8756,603],[37,-76]],[[8793,527],[-37,-75]],[[8756,452],[-75,0]],[[8681,753],[75,0]],[[8756,753],[37,-75]],[[8793,678],[-37,-75]],[[8681,904],[75,0]],[[8756,904],[37,-75]],[[8793,829],[-37,-76]],[[8681,1055],[75,0]],[[8756,1055],[37,-76]],[[8793,979],[-37,-75]],[[8681,1205],[75,0]],[[8756,1205],[37,-75]],[[8793,1130],[-37,-75]],[[8681,1356],[75,0]],[[8756,1356],[37,-75]],[[8793,1281],[-37,-76]],[[8681,1507],[75,0]],[[8756,1507],[37,-76]],[[8793,1431],[-37,-75]],[[8681,1657],[75,0]],[[8756,1657],[37,-75]],[[8793,1582],[-37,-75]],[[8681,1808],[75,0]],[[8756,1808],[37,-75]],[[8793,1733],[-37,-76]],[[8681,1959],[75,0]],[[8756,1959],[37,-76]],[[8793,1883],[-37,-75]],[[8681,2109],[75,0]],[[8756,2109],[37,-75]],[[8793,2034],[-37,-75]],[[8681,2260],[75,0]],[[8756,2260],[37,-75]],[[8793,2185],[-37,-76]],[[8681,2411],[75,0]],[[8756,2411],[37,-76]],[[8793,2335],[-37,-75]],[[8644,2486],[37,75],[75,0]],[[8756,2561],[37,-75]],[[8793,2486],[-37,-75]],[[8793,2787],[-37,-75]],[[8756,2712],[-75,0],[-37,75],[37,76],[75,0],[37,-76]],[[8756,3466],[37,-76]],[[8793,3390],[-37,-75],[-75,0],[-37,75],[37,76],[75,0]],[[8681,4370],[75,0]],[[8756,4370],[37,-76]],[[8793,4294],[-37,-75]],[[8756,4219],[-75,0],[-37,75],[37,76]],[[8681,4520],[75,0]],[[8756,4520],[37,-75]],[[8793,4445],[-37,-75]],[[8681,4370],[-37,75]],[[8644,4596],[37,75]],[[8681,4671],[75,0]],[[8756,4671],[37,-75]],[[8793,4596],[-37,-76]],[[8681,4821],[75,0]],[[8756,4821],[37,-75]],[[8793,4746],[-37,-75]],[[8681,4671],[-37,75]],[[8681,4972],[75,0]],[[8756,4972],[37,-75]],[[8793,4897],[-37,-76]],[[8681,5123],[75,0]],[[8756,5123],[37,-76]],[[8793,5047],[-37,-75]],[[8756,5575],[37,-75]],[[8793,5500],[-37,-76],[-75,0],[-37,76],[37,75],[75,0]],[[8793,377],[75,0]],[[8868,377],[38,-76]],[[8906,301],[-38,-75],[-75,0],[-37,75],[37,76]],[[8793,527],[75,0]],[[8868,527],[38,-75]],[[8906,452],[-38,-75]],[[8793,377],[-37,75]],[[8793,678],[75,0]],[[8868,678],[38,-75]],[[8906,603],[-38,-76]],[[8793,829],[75,0]],[[8868,829],[38,-76]],[[8906,753],[-38,-75]],[[8793,979],[75,0]],[[8868,979],[38,-75]],[[8906,904],[-38,-75]],[[8793,1130],[75,0]],[[8868,1130],[38,-75]],[[8906,1055],[-38,-76]],[[8793,1281],[75,0]],[[8868,1281],[38,-76]],[[8906,1205],[-38,-75]],[[8793,1431],[75,0]],[[8868,1431],[38,-75]],[[8906,1356],[-38,-75]],[[8793,1582],[75,0]],[[8868,1582],[38,-75]],[[8906,1507],[-38,-76]],[[8793,1733],[75,0]],[[8868,1733],[38,-76]],[[8906,1657],[-38,-75]],[[8793,1883],[75,0]],[[8868,1883],[38,-75]],[[8906,1808],[-38,-75]],[[8793,2034],[75,0]],[[8868,2034],[38,-75]],[[8906,1959],[-38,-76]],[[8793,2185],[75,0]],[[8868,2185],[38,-76]],[[8906,2109],[-38,-75]],[[8793,2335],[75,0]],[[8868,2335],[38,-75]],[[8906,2260],[-38,-75]],[[8793,2486],[75,0]],[[8868,2486],[38,-75]],[[8906,2411],[-38,-76]],[[8756,2561],[37,76]],[[8793,2637],[75,0]],[[8868,2637],[38,-76],[-38,-75]],[[8793,2787],[75,0]],[[8868,2787],[38,-75]],[[8906,2712],[-38,-75]],[[8793,2637],[-37,75]],[[8756,3466],[37,75],[75,0]],[[8868,3541],[38,-75]],[[8906,3466],[-38,-76],[-75,0]],[[8793,4294],[75,0]],[[8868,4294],[38,-75]],[[8906,4219],[-38,-75]],[[8868,4144],[-75,0],[-37,75]],[[8793,4445],[75,0]],[[8868,4445],[38,-75]],[[8906,4370],[-38,-76]],[[8793,4596],[75,0]],[[8868,4596],[38,-76]],[[8906,4520],[-38,-75]],[[8793,4746],[75,0]],[[8868,4746],[38,-75]],[[8906,4671],[-38,-75]],[[8793,4897],[75,0]],[[8868,4897],[38,-76]],[[8906,4821],[-38,-75]],[[8793,5047],[75,0]],[[8868,5047],[38,-75]],[[8906,4972],[-38,-75]],[[8756,5123],[37,75],[75,0],[38,-75]],[[8906,5123],[-38,-76]],[[8756,5575],[37,75]],[[8793,5650],[75,0]],[[8868,5650],[38,-75]],[[8906,5575],[-38,-75]],[[8868,5500],[-75,0]],[[8906,5726],[-38,-76]],[[8793,5650],[-37,76],[37,75],[75,0],[38,-75]],[[8906,452],[74,0]],[[8980,452],[38,-75]],[[9018,377],[-38,-76]],[[8980,301],[-74,0]],[[8906,603],[74,0]],[[8980,603],[38,-76]],[[9018,527],[-38,-75]],[[8906,753],[74,0]],[[8980,753],[38,-75]],[[9018,678],[-38,-75]],[[8906,904],[74,0]],[[8980,904],[38,-75]],[[9018,829],[-38,-76]],[[8906,1055],[74,0]],[[8980,1055],[38,-76]],[[9018,979],[-38,-75]],[[8906,1205],[74,0]],[[8980,1205],[38,-75]],[[9018,1130],[-38,-75]],[[8906,1356],[74,0]],[[8980,1356],[38,-75]],[[9018,1281],[-38,-76]],[[8906,1507],[74,0]],[[8980,1507],[38,-76]],[[9018,1431],[-38,-75]],[[8906,1657],[74,0]],[[8980,1657],[38,-75]],[[9018,1582],[-38,-75]],[[8906,1808],[74,0]],[[8980,1808],[38,-75]],[[9018,1733],[-38,-76]],[[8906,1959],[74,0]],[[8980,1959],[38,-76]],[[9018,1883],[-38,-75]],[[8906,2109],[74,0]],[[8980,2109],[38,-75]],[[9018,2034],[-38,-75]],[[8906,2260],[74,0]],[[8980,2260],[38,-75]],[[9018,2185],[-38,-76]],[[8906,2411],[74,0],[38,-76],[-38,-75]],[[8868,2787],[38,76]],[[8906,2863],[74,0]],[[8980,2863],[38,-76]],[[9018,2787],[-38,-75],[-74,0]],[[8906,3013],[74,0]],[[8980,3013],[38,-75]],[[9018,2938],[-38,-75]],[[8906,2863],[-38,75],[38,75]],[[8980,3164],[38,-75]],[[9018,3089],[-38,-76]],[[8906,3013],[-38,76],[38,75],[74,0]],[[8868,3541],[38,75],[74,0]],[[8980,3616],[38,-75]],[[9018,3541],[-38,-75],[-74,0]],[[8906,4068],[74,0]],[[8980,4068],[38,-75]],[[9018,3993],[-38,-76],[-74,0],[-38,76],[38,75]],[[8906,4219],[74,0]],[[8980,4219],[38,-75]],[[9018,4144],[-38,-76]],[[8906,4068],[-38,76]],[[8906,4370],[74,0]],[[8980,4370],[38,-76]],[[9018,4294],[-38,-75]],[[8906,4520],[74,0]],[[8980,4520],[38,-75]],[[9018,4445],[-38,-75]],[[8906,4671],[74,0]],[[8980,4671],[38,-75],[-38,-76]],[[8906,4821],[74,0]],[[8980,4821],[38,-75]],[[9018,4746],[-38,-75]],[[8906,4972],[74,0]],[[8980,4972],[38,-75]],[[9018,4897],[-38,-76]],[[8906,5123],[74,0],[38,-76]],[[9018,5047],[-38,-75]],[[8906,5424],[74,0]],[[8980,5424],[38,-75]],[[9018,5349],[-38,-75],[-74,0],[-38,75],[38,75]],[[8906,5575],[74,0]],[[8980,5575],[38,-75]],[[9018,5500],[-38,-76]],[[8906,5424],[-38,76]],[[8906,5726],[74,0]],[[8980,5726],[38,-76]],[[9018,5650],[-38,-75]],[[9018,377],[75,0]],[[9093,377],[37,-76]],[[9130,301],[-37,-75],[-75,0],[-38,75]],[[9018,527],[75,0]],[[9093,527],[37,-75]],[[9130,452],[-37,-75]],[[9018,678],[75,0]],[[9093,678],[37,-75]],[[9130,603],[-37,-76]],[[9018,829],[75,0]],[[9093,829],[37,-76]],[[9130,753],[-37,-75]],[[9018,979],[75,0]],[[9093,979],[37,-75]],[[9130,904],[-37,-75]],[[9018,1130],[75,0]],[[9093,1130],[37,-75]],[[9130,1055],[-37,-76]],[[9018,1431],[75,0]],[[9093,1431],[37,-75]],[[9130,1356],[-37,-75]],[[9093,1281],[-75,0]],[[9018,1582],[75,0]],[[9093,1582],[37,-75]],[[9130,1507],[-37,-76]],[[9018,1733],[75,0]],[[9093,1733],[37,-76]],[[9130,1657],[-37,-75]],[[9018,1883],[75,0]],[[9093,1883],[37,-75]],[[9130,1808],[-37,-75]],[[9018,2034],[75,0]],[[9093,2034],[37,-75]],[[9130,1959],[-37,-76]],[[9018,2185],[75,0]],[[9093,2185],[37,-76]],[[9130,2109],[-37,-75]],[[9130,2561],[-37,-75]],[[9093,2486],[-75,0],[-38,75],[38,76],[75,0],[37,-76]],[[9018,2938],[75,0]],[[9093,2938],[37,-75]],[[9130,2863],[-37,-76]],[[9093,2787],[-75,0]],[[9018,3089],[75,0]],[[9093,3089],[37,-76]],[[9130,3013],[-37,-75]],[[8980,3164],[38,76]],[[9018,3240],[75,0]],[[9093,3240],[37,-76]],[[9130,3164],[-37,-75]],[[9130,3315],[-37,-75]],[[9018,3240],[-38,75],[38,75],[75,0],[37,-75]],[[8980,3616],[38,75]],[[9018,3691],[75,0]],[[9093,3691],[37,-75]],[[9130,3616],[-37,-75]],[[9093,3541],[-75,0]],[[9093,3842],[37,-75]],[[9130,3767],[-37,-76]],[[9018,3691],[-38,76],[38,75],[75,0]],[[9018,4144],[75,0]],[[9093,4144],[37,-76]],[[9130,4068],[-37,-75],[-75,0]],[[9018,4294],[75,0]],[[9093,4294],[37,-75]],[[9130,4219],[-37,-75]],[[9018,4445],[75,0],[37,-75]],[[9130,4370],[-37,-76]],[[9018,4897],[75,0]],[[9093,4897],[37,-76]],[[9130,4821],[-37,-75]],[[9093,4746],[-75,0]],[[9018,5047],[75,0],[37,-75],[-37,-75]],[[9018,5500],[75,0]],[[9093,5500],[37,-76],[-37,-75],[-75,0]],[[9018,5650],[75,0]],[[9093,5650],[37,-75]],[[9130,5575],[-37,-75]],[[8980,5726],[38,75],[75,0],[37,-75]],[[9130,5726],[-37,-76]],[[9130,452],[75,0]],[[9205,452],[37,-75]],[[9242,377],[-37,-76]],[[9205,301],[-75,0]],[[9130,603],[75,0]],[[9205,603],[37,-76]],[[9242,527],[-37,-75]],[[9130,753],[75,0]],[[9205,753],[37,-75]],[[9242,678],[-37,-75]],[[9130,904],[75,0]],[[9205,904],[37,-75]],[[9242,829],[-37,-76]],[[9130,1055],[75,0]],[[9205,1055],[37,-76]],[[9242,979],[-37,-75]],[[9093,1130],[37,75]],[[9130,1205],[75,0]],[[9205,1205],[37,-75],[-37,-75]],[[9130,1356],[75,0]],[[9205,1356],[37,-75]],[[9242,1281],[-37,-76]],[[9130,1205],[-37,76]],[[9130,1507],[75,0]],[[9205,1507],[37,-76]],[[9242,1431],[-37,-75]],[[9130,1657],[75,0]],[[9205,1657],[37,-75]],[[9242,1582],[-37,-75]],[[9130,1808],[75,0]],[[9205,1808],[37,-75]],[[9242,1733],[-37,-76]],[[9130,2109],[75,0]],[[9205,2109],[37,-75]],[[9242,2034],[-37,-75]],[[9205,1959],[-75,0]],[[9093,2185],[37,75]],[[9130,2260],[75,0]],[[9205,2260],[37,-75]],[[9242,2185],[-37,-76]],[[9130,2411],[75,0]],[[9205,2411],[37,-76]],[[9242,2335],[-37,-75]],[[9130,2260],[-37,75],[37,76]],[[9130,2561],[75,0],[37,-75]],[[9242,2486],[-37,-75]],[[9130,2411],[-37,75]],[[9130,2863],[75,0]],[[9205,2863],[37,-76]],[[9242,2787],[-37,-75],[-75,0],[-37,75]],[[9130,3013],[75,0]],[[9205,3013],[37,-75]],[[9242,2938],[-37,-75]],[[9130,3164],[75,0]],[[9205,3164],[37,-75]],[[9242,3089],[-37,-76]],[[9130,3315],[75,0],[37,-75]],[[9242,3240],[-37,-76]],[[9130,3616],[75,0]],[[9205,3616],[37,-75]],[[9242,3541],[-37,-75]],[[9205,3466],[-75,0],[-37,75]],[[9093,3842],[37,75],[75,0],[37,-75]],[[9242,3842],[-37,-75]],[[9205,3767],[-75,0]],[[9130,4219],[75,0]],[[9205,4219],[37,-75],[-37,-76],[-75,0]],[[9130,4370],[75,0],[37,-76],[-37,-75]],[[9130,4671],[75,0]],[[9205,4671],[37,-75],[-37,-76],[-75,0],[-37,76],[37,75]],[[9130,4821],[75,0],[37,-75],[-37,-75]],[[9130,4671],[-37,75]],[[9242,5198],[-37,-75]],[[9205,5123],[-75,0],[-37,75],[37,76],[75,0],[37,-76]],[[9130,5726],[75,0],[37,-76],[-37,-75],[-75,0]],[[9242,377],[75,0]],[[9317,377],[38,-76]],[[9355,301],[-38,-75],[-75,0],[-37,75]],[[9242,527],[75,0]],[[9317,527],[38,-75]],[[9355,452],[-38,-75]],[[9242,678],[75,0]],[[9317,678],[38,-75]],[[9355,603],[-38,-76]],[[9242,829],[75,0]],[[9317,829],[38,-76]],[[9355,753],[-38,-75]],[[9242,979],[75,0]],[[9317,979],[38,-75]],[[9355,904],[-38,-75]],[[9242,1431],[75,0]],[[9317,1431],[38,-75]],[[9355,1356],[-38,-75]],[[9317,1281],[-75,0]],[[9242,1582],[75,0]],[[9317,1582],[38,-75]],[[9355,1507],[-38,-76]],[[9242,1733],[75,0]],[[9317,1733],[38,-76]],[[9355,1657],[-38,-75]],[[9205,1808],[37,75]],[[9242,1883],[75,0]],[[9317,1883],[38,-75]],[[9355,1808],[-38,-75]],[[9242,2034],[75,0]],[[9317,2034],[38,-75]],[[9355,1959],[-38,-76]],[[9242,1883],[-37,76]],[[9242,2185],[75,0]],[[9317,2185],[38,-76]],[[9355,2109],[-38,-75]],[[9242,2335],[75,0]],[[9317,2335],[38,-75]],[[9355,2260],[-38,-75]],[[9242,2486],[75,0]],[[9317,2486],[38,-75]],[[9355,2411],[-38,-76]],[[9242,2938],[75,0],[38,-75],[-38,-76],[-75,0]],[[9242,3240],[75,0]],[[9317,3240],[38,-76]],[[9355,3164],[-38,-75],[-75,0]],[[9242,3541],[75,0]],[[9317,3541],[38,-75]],[[9355,3466],[-38,-76]],[[9317,3390],[-75,0],[-37,76]],[[9205,3616],[37,75]],[[9242,3691],[75,0]],[[9317,3691],[38,-75]],[[9355,3616],[-38,-75]],[[9242,3842],[75,0]],[[9317,3842],[38,-75]],[[9355,3767],[-38,-76]],[[9242,3691],[-37,76]],[[9242,5198],[75,0]],[[9317,5198],[38,-75]],[[9355,5123],[-38,-76]],[[9317,5047],[-75,0],[-37,76]],[[9317,5500],[38,-76]],[[9355,5424],[-38,-75],[-75,0],[-37,75],[37,76],[75,0]],[[9355,452],[74,0]],[[9429,452],[38,-75]],[[9467,377],[-38,-76]],[[9429,301],[-74,0]],[[9355,603],[74,0]],[[9429,603],[38,-76]],[[9467,527],[-38,-75]],[[9355,753],[74,0]],[[9429,753],[38,-75]],[[9467,678],[-38,-75]],[[9355,904],[74,0]],[[9429,904],[38,-75]],[[9467,829],[-38,-76]],[[9317,979],[38,76]],[[9355,1055],[74,0]],[[9429,1055],[38,-76]],[[9467,979],[-38,-75]],[[9355,1205],[74,0]],[[9429,1205],[38,-75]],[[9467,1130],[-38,-75]],[[9355,1055],[-38,75],[38,75]],[[9355,1356],[74,0]],[[9429,1356],[38,-75]],[[9467,1281],[-38,-76]],[[9355,1205],[-38,76]],[[9355,1507],[74,0]],[[9429,1507],[38,-76]],[[9467,1431],[-38,-75]],[[9355,1657],[74,0]],[[9429,1657],[38,-75]],[[9467,1582],[-38,-75]],[[9355,1808],[74,0]],[[9429,1808],[38,-75],[-38,-76]],[[9355,1959],[74,0]],[[9429,1959],[38,-76],[-38,-75]],[[9355,2109],[74,0]],[[9429,2109],[38,-75]],[[9467,2034],[-38,-75]],[[9355,2411],[74,0]],[[9429,2411],[38,-76]],[[9467,2335],[-38,-75],[-74,0]],[[9317,2486],[38,75],[74,0]],[[9429,2561],[38,-75]],[[9467,2486],[-38,-75]],[[9317,3240],[38,75]],[[9355,3315],[74,0]],[[9429,3315],[38,-75]],[[9467,3240],[-38,-76],[-74,0]],[[9355,3466],[74,0]],[[9429,3466],[38,-76]],[[9467,3390],[-38,-75]],[[9355,3315],[-38,75]],[[9355,3616],[74,0]],[[9429,3616],[38,-75]],[[9467,3541],[-38,-75]],[[9355,3767],[74,0]],[[9429,3767],[38,-76]],[[9467,3691],[-38,-75]],[[9317,3842],[38,75],[74,0],[38,-75]],[[9467,3842],[-38,-75]],[[9317,4294],[38,76],[74,0],[38,-76],[-38,-75],[-74,0],[-38,75]],[[9355,4821],[74,0]],[[9429,4821],[38,-75],[-38,-75],[-74,0],[-38,75],[38,75]],[[9355,4972],[74,0]],[[9429,4972],[38,-75]],[[9467,4897],[-38,-76]],[[9355,4821],[-38,76],[38,75]],[[9355,5123],[74,0]],[[9429,5123],[38,-76]],[[9467,5047],[-38,-75]],[[9355,4972],[-38,75]],[[9317,5198],[38,76],[74,0],[38,-76],[-38,-75]],[[9317,5500],[38,75],[74,0],[38,-75],[-38,-76],[-74,0]],[[9467,377],[75,0]],[[9542,377],[37,-76]],[[9579,301],[-37,-75],[-75,0],[-38,75]],[[9467,527],[75,0]],[[9542,527],[37,-75]],[[9579,452],[-37,-75]],[[9467,678],[75,0]],[[9542,678],[37,-75]],[[9579,603],[-37,-76]],[[9467,829],[75,0]],[[9542,829],[37,-76]],[[9579,753],[-37,-75]],[[9467,979],[75,0]],[[9542,979],[37,-75]],[[9579,904],[-37,-75]],[[9467,1130],[75,0]],[[9542,1130],[37,-75]],[[9579,1055],[-37,-76]],[[9467,1281],[75,0]],[[9542,1281],[37,-76]],[[9579,1205],[-37,-75]],[[9467,1431],[75,0]],[[9542,1431],[37,-75]],[[9579,1356],[-37,-75]],[[9467,1582],[75,0],[37,-75]],[[9579,1507],[-37,-76]],[[9429,2109],[38,76],[75,0],[37,-76]],[[9579,2109],[-37,-75]],[[9542,2034],[-75,0]],[[9467,2486],[75,0]],[[9542,2486],[37,-75]],[[9579,2411],[-37,-76],[-75,0]],[[9429,2561],[38,76],[75,0],[37,-76]],[[9579,2561],[-37,-75]],[[9467,3390],[75,0]],[[9542,3390],[37,-75]],[[9579,3315],[-37,-75]],[[9542,3240],[-75,0]],[[9467,3541],[75,0]],[[9542,3541],[37,-75],[-37,-76]],[[9467,3691],[75,0]],[[9542,3691],[37,-75],[-37,-75]],[[9467,3842],[75,0]],[[9542,3842],[37,-75]],[[9579,3767],[-37,-76]],[[9467,5047],[75,0],[37,-75],[-37,-75],[-75,0]],[[9579,452],[75,0]],[[9654,452],[37,-75]],[[9691,377],[-37,-76]],[[9654,301],[-75,0]],[[9579,603],[75,0]],[[9654,603],[37,-76]],[[9691,527],[-37,-75]],[[9579,753],[75,0]],[[9654,753],[37,-75]],[[9691,678],[-37,-75]],[[9579,904],[75,0]],[[9654,904],[37,-75]],[[9691,829],[-37,-76]],[[9579,1055],[75,0]],[[9654,1055],[37,-76]],[[9691,979],[-37,-75]],[[9579,1205],[75,0]],[[9654,1205],[37,-75]],[[9691,1130],[-37,-75]],[[9579,1356],[75,0]],[[9654,1356],[37,-75]],[[9691,1281],[-37,-76]],[[9579,1507],[75,0]],[[9654,1507],[37,-76]],[[9691,1431],[-37,-75]],[[9579,1808],[75,0]],[[9654,1808],[37,-75]],[[9691,1733],[-37,-76]],[[9654,1657],[-75,0],[-37,76],[37,75]],[[9579,1959],[75,0]],[[9654,1959],[37,-76]],[[9691,1883],[-37,-75]],[[9579,1808],[-37,75],[37,76]],[[9579,2109],[75,0]],[[9654,2109],[37,-75]],[[9691,2034],[-37,-75]],[[9579,1959],[-37,75]],[[9579,2561],[75,0]],[[9654,2561],[37,-75]],[[9691,2486],[-37,-75]],[[9654,2411],[-75,0]],[[9579,3315],[75,0],[37,-75]],[[9691,3240],[-37,-76]],[[9654,3164],[-75,0],[-37,76]],[[9542,3842],[37,75],[75,0],[37,-75],[-37,-75],[-75,0]],[[9654,4219],[37,-75]],[[9691,4144],[-37,-76],[-75,0],[-37,76],[37,75],[75,0]],[[9579,5274],[75,0]],[[9654,5274],[37,-76],[-37,-75],[-75,0],[-37,75],[37,76]],[[9579,5274],[-37,75],[37,75],[75,0],[37,-75],[-37,-75]],[[9691,377],[75,0]],[[9766,377],[38,-76]],[[9804,301],[-38,-75],[-75,0],[-37,75]],[[9691,527],[75,0]],[[9766,527],[38,-75]],[[9804,452],[-38,-75]],[[9691,678],[75,0]],[[9766,678],[38,-75]],[[9804,603],[-38,-76]],[[9691,829],[75,0]],[[9766,829],[38,-76]],[[9804,753],[-38,-75]],[[9691,979],[75,0]],[[9766,979],[38,-75]],[[9804,904],[-38,-75]],[[9691,1130],[75,0]],[[9766,1130],[38,-75]],[[9804,1055],[-38,-76]],[[9691,1281],[75,0]],[[9766,1281],[38,-76]],[[9804,1205],[-38,-75]],[[9691,1431],[75,0]],[[9766,1431],[38,-75]],[[9804,1356],[-38,-75]],[[9654,1507],[37,75]],[[9691,1582],[75,0]],[[9766,1582],[38,-75]],[[9804,1507],[-38,-76]],[[9691,1733],[75,0]],[[9766,1733],[38,-76]],[[9804,1657],[-38,-75]],[[9691,1582],[-37,75]],[[9691,1883],[75,0]],[[9766,1883],[38,-75]],[[9804,1808],[-38,-75]],[[9691,2034],[75,0]],[[9766,2034],[38,-75]],[[9804,1959],[-38,-76]],[[9654,2109],[37,76],[75,0],[38,-76],[-38,-75]],[[9691,2486],[75,0]],[[9766,2486],[38,-75]],[[9804,2411],[-38,-76],[-75,0],[-37,76]],[[9654,2561],[37,76]],[[9691,2637],[75,0]],[[9766,2637],[38,-76]],[[9804,2561],[-38,-75]],[[9691,2787],[75,0]],[[9766,2787],[38,-75]],[[9804,2712],[-38,-75]],[[9691,2637],[-37,75],[37,75]],[[9766,2938],[38,-75]],[[9804,2863],[-38,-76]],[[9691,2787],[-37,76],[37,75],[75,0]],[[9691,3240],[75,0]],[[9766,3240],[38,-76]],[[9804,3164],[-38,-75]],[[9766,3089],[-75,0],[-37,75]],[[9804,3466],[-38,-76]],[[9766,3390],[-75,0],[-37,76],[37,75],[75,0],[38,-75]],[[9654,4219],[37,75]],[[9691,4294],[75,0]],[[9766,4294],[38,-75],[-38,-75],[-75,0]],[[9691,4294],[-37,76],[37,75],[75,0],[38,-75],[-38,-76]],[[9654,4671],[37,75],[75,0],[38,-75],[-38,-75],[-75,0],[-37,75]],[[9804,452],[74,0]],[[9878,452],[38,-75]],[[9916,377],[-38,-76]],[[9878,301],[-74,0]],[[9804,603],[74,0]],[[9878,603],[38,-76]],[[9916,527],[-38,-75]],[[9804,753],[74,0]],[[9878,753],[38,-75]],[[9916,678],[-38,-75]],[[9804,904],[74,0]],[[9878,904],[38,-75]],[[9916,829],[-38,-76]],[[9804,1055],[74,0]],[[9878,1055],[38,-76]],[[9916,979],[-38,-75]],[[9804,1205],[74,0]],[[9878,1205],[38,-75]],[[9916,1130],[-38,-75]],[[9804,1356],[74,0]],[[9878,1356],[38,-75]],[[9916,1281],[-38,-76]],[[9804,1507],[74,0]],[[9878,1507],[38,-76]],[[9916,1431],[-38,-75]],[[9804,1657],[74,0]],[[9878,1657],[38,-75]],[[9916,1582],[-38,-75]],[[9804,1808],[74,0]],[[9878,1808],[38,-75]],[[9916,1733],[-38,-76]],[[9804,1959],[74,0],[38,-76],[-38,-75]],[[9804,2561],[74,0]],[[9878,2561],[38,-75]],[[9916,2486],[-38,-75]],[[9878,2411],[-74,0]],[[9804,2863],[74,0]],[[9878,2863],[38,-76],[-38,-75],[-74,0]],[[9766,2938],[38,75]],[[9804,3013],[74,0]],[[9878,3013],[38,-75]],[[9916,2938],[-38,-75]],[[9804,3164],[74,0]],[[9878,3164],[38,-75]],[[9916,3089],[-38,-76]],[[9804,3013],[-38,76]],[[9766,3240],[38,75]],[[9804,3315],[74,0]],[[9878,3315],[38,-75]],[[9916,3240],[-38,-76]],[[9804,3466],[74,0],[38,-76]],[[9916,3390],[-38,-75]],[[9804,3315],[-38,75]],[[9916,3691],[-38,-75]],[[9878,3616],[-74,0],[-38,75],[38,76],[74,0],[38,-76]],[[9916,377],[75,0]],[[9991,377],[37,-76]],[[10028,301],[-37,-75],[-75,0],[-38,75]],[[9916,527],[75,0]],[[9991,527],[37,-75]],[[10028,452],[-37,-75]],[[9916,678],[75,0]],[[9991,678],[37,-75]],[[10028,603],[-37,-76]],[[9916,829],[75,0]],[[9991,829],[37,-76]],[[10028,753],[-37,-75]],[[9916,979],[75,0]],[[9991,979],[37,-75]],[[10028,904],[-37,-75]],[[9916,1130],[75,0]],[[9991,1130],[37,-75]],[[10028,1055],[-37,-76]],[[9916,1281],[75,0]],[[9991,1281],[37,-76]],[[10028,1205],[-37,-75]],[[9916,1431],[75,0]],[[9991,1431],[37,-75]],[[10028,1356],[-37,-75]],[[9916,1582],[75,0]],[[9991,1582],[37,-75]],[[10028,1507],[-37,-76]],[[9916,1733],[75,0]],[[9991,1733],[37,-76]],[[10028,1657],[-37,-75]],[[9916,2185],[75,0]],[[9991,2185],[37,-76]],[[10028,2109],[-37,-75]],[[9991,2034],[-75,0],[-38,75],[38,76]],[[9916,2335],[75,0]],[[9991,2335],[37,-75]],[[10028,2260],[-37,-75]],[[9916,2185],[-38,75],[38,75]],[[9916,2486],[75,0]],[[9991,2486],[37,-75]],[[10028,2411],[-37,-76]],[[9916,2335],[-38,76]],[[9878,2561],[38,76],[75,0]],[[9991,2637],[37,-76]],[[10028,2561],[-37,-75]],[[9916,3089],[75,0]],[[9991,3089],[37,-76]],[[10028,3013],[-37,-75]],[[9991,2938],[-75,0]],[[9916,3240],[75,0]],[[9991,3240],[37,-76]],[[10028,3164],[-37,-75]],[[9916,3390],[75,0]],[[9991,3390],[37,-75]],[[10028,3315],[-37,-75]],[[9916,3691],[75,0]],[[9991,3691],[37,-75]],[[10028,3616],[-37,-75],[-75,0],[-38,75]],[[9878,4370],[38,75],[75,0],[37,-75],[-37,-76],[-75,0],[-38,76]],[[10028,452],[75,0]],[[10103,452],[37,-75]],[[10140,377],[-37,-76]],[[10103,301],[-75,0]],[[10028,603],[75,0]],[[10103,603],[37,-76]],[[10140,527],[-37,-75]],[[10028,753],[75,0]],[[10103,753],[37,-75]],[[10140,678],[-37,-75]],[[10028,904],[75,0]],[[10103,904],[37,-75]],[[10140,829],[-37,-76]],[[10028,1055],[75,0]],[[10103,1055],[37,-76]],[[10140,979],[-37,-75]],[[10028,1205],[75,0]],[[10103,1205],[37,-75]],[[10140,1130],[-37,-75]],[[10028,1356],[75,0]],[[10103,1356],[37,-75]],[[10140,1281],[-37,-76]],[[10028,1507],[75,0]],[[10103,1507],[37,-76]],[[10140,1431],[-37,-75]],[[10028,1657],[75,0]],[[10103,1657],[37,-75]],[[10140,1582],[-37,-75]],[[9991,1733],[37,75]],[[10028,1808],[75,0]],[[10103,1808],[37,-75]],[[10140,1733],[-37,-76]],[[10028,1959],[75,0]],[[10103,1959],[37,-76]],[[10140,1883],[-37,-75]],[[10028,1808],[-37,75],[37,76]],[[10028,2109],[75,0]],[[10103,2109],[37,-75]],[[10140,2034],[-37,-75]],[[10028,1959],[-37,75]],[[10028,2260],[75,0]],[[10103,2260],[37,-75]],[[10140,2185],[-37,-76]],[[10028,2411],[75,0]],[[10103,2411],[37,-76]],[[10140,2335],[-37,-75]],[[10028,2561],[75,0]],[[10103,2561],[37,-75]],[[10140,2486],[-37,-75]],[[9991,2637],[37,75]],[[10028,2712],[75,0]],[[10103,2712],[37,-75]],[[10140,2637],[-37,-76]],[[10028,2863],[75,0]],[[10103,2863],[37,-76]],[[10140,2787],[-37,-75]],[[10028,2712],[-37,75],[37,76]],[[10028,3013],[75,0]],[[10103,3013],[37,-75]],[[10140,2938],[-37,-75]],[[10028,2863],[-37,75]],[[10028,3164],[75,0]],[[10103,3164],[37,-75]],[[10140,3089],[-37,-76]],[[10028,3315],[75,0]],[[10103,3315],[37,-75]],[[10140,3240],[-37,-76]],[[9991,3390],[37,76],[75,0]],[[10103,3466],[37,-76]],[[10140,3390],[-37,-75]],[[9991,3691],[37,76],[75,0],[37,-76],[-37,-75],[-75,0]],[[9991,4596],[37,75],[75,0],[37,-75],[-37,-76],[-75,0],[-37,76]],[[10140,377],[75,0]],[[10215,377],[38,-76]],[[10253,301],[-38,-75],[-75,0],[-37,75]],[[10140,527],[75,0]],[[10215,527],[38,-75]],[[10253,452],[-38,-75]],[[10140,678],[75,0]],[[10215,678],[38,-75]],[[10253,603],[-38,-76]],[[10140,829],[75,0]],[[10215,829],[38,-76]],[[10253,753],[-38,-75]],[[10140,979],[75,0]],[[10215,979],[38,-75]],[[10253,904],[-38,-75]],[[10140,1130],[75,0]],[[10215,1130],[38,-75]],[[10253,1055],[-38,-76]],[[10140,1281],[75,0]],[[10215,1281],[38,-76]],[[10253,1205],[-38,-75]],[[10140,1431],[75,0]],[[10215,1431],[38,-75]],[[10253,1356],[-38,-75]],[[10140,1582],[75,0]],[[10215,1582],[38,-75]],[[10253,1507],[-38,-76]],[[10140,1733],[75,0]],[[10215,1733],[38,-76]],[[10253,1657],[-38,-75]],[[10140,1883],[75,0]],[[10215,1883],[38,-75]],[[10253,1808],[-38,-75]],[[10140,2034],[75,0]],[[10215,2034],[38,-75]],[[10253,1959],[-38,-76]],[[10140,2185],[75,0]],[[10215,2185],[38,-76]],[[10253,2109],[-38,-75]],[[10140,2335],[75,0]],[[10215,2335],[38,-75]],[[10253,2260],[-38,-75]],[[10140,2486],[75,0]],[[10215,2486],[38,-75]],[[10253,2411],[-38,-76]],[[10140,2637],[75,0]],[[10215,2637],[38,-76]],[[10253,2561],[-38,-75]],[[10140,2787],[75,0]],[[10215,2787],[38,-75]],[[10253,2712],[-38,-75]],[[10140,2938],[75,0]],[[10215,2938],[38,-75]],[[10253,2863],[-38,-76]],[[10140,3089],[75,0]],[[10215,3089],[38,-76]],[[10253,3013],[-38,-75]],[[10140,3240],[75,0]],[[10215,3240],[38,-76]],[[10253,3164],[-38,-75]],[[10140,3390],[75,0]],[[10215,3390],[38,-75]],[[10253,3315],[-38,-75]],[[10103,3466],[37,75],[75,0]],[[10215,3541],[38,-75]],[[10253,3466],[-38,-76]],[[10140,4144],[75,0]],[[10215,4144],[38,-76],[-38,-75],[-75,0],[-37,75],[37,76]],[[10140,4294],[75,0]],[[10215,4294],[38,-75],[-38,-75]],[[10140,4144],[-37,75],[37,75]],[[10140,4294],[-37,76],[37,75],[75,0],[38,-75],[-38,-76]],[[10215,5047],[38,-75]],[[10253,4972],[-38,-75]],[[10215,4897],[-75,0],[-37,75],[37,75],[75,0]],[[10253,452],[74,0]],[[10327,452],[38,-75]],[[10365,377],[-38,-76]],[[10327,301],[-74,0]],[[10253,603],[74,0]],[[10327,603],[38,-76]],[[10365,527],[-38,-75]],[[10253,753],[74,0]],[[10327,753],[38,-75]],[[10365,678],[-38,-75]],[[10253,904],[74,0]],[[10327,904],[38,-75]],[[10365,829],[-38,-76]],[[10253,1055],[74,0]],[[10327,1055],[38,-76]],[[10365,979],[-38,-75]],[[10253,1205],[74,0]],[[10327,1205],[38,-75]],[[10365,1130],[-38,-75]],[[10253,1356],[74,0]],[[10327,1356],[38,-75]],[[10365,1281],[-38,-76]],[[10253,1507],[74,0]],[[10327,1507],[38,-76]],[[10365,1431],[-38,-75]],[[10253,1657],[74,0]],[[10327,1657],[38,-75]],[[10365,1582],[-38,-75]],[[10253,1808],[74,0]],[[10327,1808],[38,-75]],[[10365,1733],[-38,-76]],[[10253,1959],[74,0]],[[10327,1959],[38,-76]],[[10365,1883],[-38,-75]],[[10253,2109],[74,0]],[[10327,2109],[38,-75]],[[10365,2034],[-38,-75]],[[10253,2260],[74,0]],[[10327,2260],[38,-75]],[[10365,2185],[-38,-76]],[[10253,2411],[74,0]],[[10327,2411],[38,-76]],[[10365,2335],[-38,-75]],[[10253,2561],[74,0]],[[10327,2561],[38,-75]],[[10365,2486],[-38,-75]],[[10253,2712],[74,0]],[[10327,2712],[38,-75]],[[10365,2637],[-38,-76]],[[10253,2863],[74,0]],[[10327,2863],[38,-76]],[[10365,2787],[-38,-75]],[[10253,3013],[74,0]],[[10327,3013],[38,-75]],[[10365,2938],[-38,-75]],[[10253,3164],[74,0]],[[10327,3164],[38,-75]],[[10365,3089],[-38,-76]],[[10253,3315],[74,0]],[[10327,3315],[38,-75]],[[10365,3240],[-38,-76]],[[10253,3466],[74,0]],[[10327,3466],[38,-76]],[[10365,3390],[-38,-75]],[[10215,3541],[38,75]],[[10253,3616],[74,0]],[[10327,3616],[38,-75]],[[10365,3541],[-38,-75]],[[10253,3767],[74,0]],[[10327,3767],[38,-76]],[[10365,3691],[-38,-75]],[[10253,3616],[-38,75],[38,76]],[[10327,3917],[38,-75]],[[10365,3842],[-38,-75]],[[10253,3767],[-38,75],[38,75],[74,0]],[[10215,4596],[38,75],[74,0],[38,-75],[-38,-76],[-74,0],[-38,76]],[[10253,4972],[74,0]],[[10327,4972],[38,-75],[-38,-76],[-74,0],[-38,76]],[[10215,5047],[38,76],[74,0],[38,-76],[-38,-75]],[[10365,377],[75,0]],[[10440,377],[37,-76]],[[10477,301],[-37,-75],[-75,0],[-38,75]],[[10365,527],[75,0]],[[10440,527],[37,-75]],[[10477,452],[-37,-75]],[[10365,678],[75,0]],[[10440,678],[37,-75]],[[10477,603],[-37,-76]],[[10365,829],[75,0]],[[10440,829],[37,-76]],[[10477,753],[-37,-75]],[[10365,979],[75,0]],[[10440,979],[37,-75]],[[10477,904],[-37,-75]],[[10365,1130],[75,0]],[[10440,1130],[37,-75]],[[10477,1055],[-37,-76]],[[10365,1281],[75,0]],[[10440,1281],[37,-76]],[[10477,1205],[-37,-75]],[[10365,1431],[75,0]],[[10440,1431],[37,-75]],[[10477,1356],[-37,-75]],[[10365,1582],[75,0]],[[10440,1582],[37,-75]],[[10477,1507],[-37,-76]],[[10365,1733],[75,0]],[[10440,1733],[37,-76]],[[10477,1657],[-37,-75]],[[10365,1883],[75,0]],[[10440,1883],[37,-75]],[[10477,1808],[-37,-75]],[[10365,2034],[75,0]],[[10440,2034],[37,-75]],[[10477,1959],[-37,-76]],[[10365,2185],[75,0]],[[10440,2185],[37,-76]],[[10477,2109],[-37,-75]],[[10365,2335],[75,0]],[[10440,2335],[37,-75]],[[10477,2260],[-37,-75]],[[10365,2486],[75,0]],[[10440,2486],[37,-75]],[[10477,2411],[-37,-76]],[[10365,2637],[75,0]],[[10440,2637],[37,-76]],[[10477,2561],[-37,-75]],[[10365,2787],[75,0]],[[10440,2787],[37,-75]],[[10477,2712],[-37,-75]],[[10365,2938],[75,0]],[[10440,2938],[37,-75]],[[10477,2863],[-37,-76]],[[10365,3089],[75,0]],[[10440,3089],[37,-76]],[[10477,3013],[-37,-75]],[[10365,3240],[75,0]],[[10440,3240],[37,-76]],[[10477,3164],[-37,-75]],[[10365,3390],[75,0]],[[10440,3390],[37,-75]],[[10477,3315],[-37,-75]],[[10365,3541],[75,0]],[[10440,3541],[37,-75]],[[10477,3466],[-37,-76]],[[10365,3842],[75,0]],[[10440,3842],[37,-75],[-37,-76],[-75,0]],[[10327,3917],[38,76],[75,0],[37,-76],[-37,-75]],[[10477,452],[75,0]],[[10552,452],[37,-75]],[[10589,377],[-37,-76],[-75,0]],[[10477,603],[75,0]],[[10552,603],[37,-76]],[[10589,527],[-37,-75]],[[10477,753],[75,0]],[[10552,753],[37,-75]],[[10589,678],[-37,-75]],[[10477,904],[75,0]],[[10552,904],[37,-75]],[[10589,829],[-37,-76]],[[10477,1055],[75,0]],[[10552,1055],[37,-76]],[[10589,979],[-37,-75]],[[10477,1205],[75,0]],[[10552,1205],[37,-75]],[[10589,1130],[-37,-75]],[[10477,1356],[75,0]],[[10552,1356],[37,-75]],[[10589,1281],[-37,-76]],[[10477,1507],[75,0]],[[10552,1507],[37,-76]],[[10589,1431],[-37,-75]],[[10477,1657],[75,0]],[[10552,1657],[37,-75]],[[10589,1582],[-37,-75]],[[10477,1808],[75,0]],[[10552,1808],[37,-75]],[[10589,1733],[-37,-76]],[[10477,1959],[75,0]],[[10552,1959],[37,-76]],[[10589,1883],[-37,-75]],[[10477,2109],[75,0]],[[10552,2109],[37,-75]],[[10589,2034],[-37,-75]],[[10477,2260],[75,0]],[[10552,2260],[37,-75]],[[10589,2185],[-37,-76]],[[10477,2411],[75,0]],[[10552,2411],[37,-76]],[[10589,2335],[-37,-75]],[[10477,2561],[75,0]],[[10552,2561],[37,-75]],[[10589,2486],[-37,-75]],[[10477,2712],[75,0]],[[10552,2712],[37,-75]],[[10589,2637],[-37,-76]],[[10477,2863],[75,0]],[[10552,2863],[37,-76]],[[10589,2787],[-37,-75]],[[10477,3013],[75,0]],[[10552,3013],[37,-75]],[[10589,2938],[-37,-75]],[[10477,3164],[75,0]],[[10552,3164],[37,-75]],[[10589,3089],[-37,-76]],[[10477,3315],[75,0]],[[10552,3315],[37,-75]],[[10589,3240],[-37,-76]],[[10440,3541],[37,75],[75,0]],[[10552,3616],[37,-75]],[[10589,3541],[-37,-75]],[[10552,3466],[-75,0]],[[10589,527],[75,0]],[[10664,527],[38,-75]],[[10702,452],[-38,-75]],[[10664,377],[-75,0]],[[10589,678],[75,0]],[[10664,678],[38,-75]],[[10702,603],[-38,-76]],[[10589,829],[75,0]],[[10664,829],[38,-76]],[[10702,753],[-38,-75]],[[10589,979],[75,0]],[[10664,979],[38,-75]],[[10702,904],[-38,-75]],[[10589,1130],[75,0]],[[10664,1130],[38,-75]],[[10702,1055],[-38,-76]],[[10589,1281],[75,0]],[[10664,1281],[38,-76]],[[10702,1205],[-38,-75]],[[10589,1431],[75,0]],[[10664,1431],[38,-75]],[[10702,1356],[-38,-75]],[[10589,1582],[75,0]],[[10664,1582],[38,-75]],[[10702,1507],[-38,-76]],[[10589,1733],[75,0]],[[10664,1733],[38,-76]],[[10702,1657],[-38,-75]],[[10589,1883],[75,0]],[[10664,1883],[38,-75]],[[10702,1808],[-38,-75]],[[10589,2034],[75,0]],[[10664,2034],[38,-75]],[[10702,1959],[-38,-76]],[[10589,2185],[75,0]],[[10664,2185],[38,-76]],[[10702,2109],[-38,-75]],[[10589,2335],[75,0]],[[10664,2335],[38,-75]],[[10702,2260],[-38,-75]],[[10589,2486],[75,0]],[[10664,2486],[38,-75]],[[10702,2411],[-38,-76]],[[10589,2637],[75,0]],[[10664,2637],[38,-76]],[[10702,2561],[-38,-75]],[[10589,2787],[75,0]],[[10664,2787],[38,-75]],[[10702,2712],[-38,-75]],[[10589,2938],[75,0]],[[10664,2938],[38,-75]],[[10702,2863],[-38,-76]],[[10589,3089],[75,0]],[[10664,3089],[38,-76]],[[10702,3013],[-38,-75]],[[10589,3240],[75,0]],[[10664,3240],[38,-76]],[[10702,3164],[-38,-75]],[[10552,3315],[37,75]],[[10589,3390],[75,0]],[[10664,3390],[38,-75]],[[10702,3315],[-38,-75]],[[10589,3541],[75,0]],[[10664,3541],[38,-75]],[[10702,3466],[-38,-76]],[[10589,3390],[-37,76]],[[10552,3616],[37,75]],[[10589,3691],[75,0]],[[10664,3691],[38,-75]],[[10702,3616],[-38,-75]],[[10664,3842],[38,-75]],[[10702,3767],[-38,-76]],[[10589,3691],[-37,76],[37,75],[75,0]],[[10552,4219],[37,75],[75,0],[38,-75],[-38,-75],[-75,0],[-37,75]],[[10589,4746],[75,0]],[[10664,4746],[38,-75]],[[10702,4671],[-38,-75]],[[10664,4596],[-75,0],[-37,75],[37,75]],[[10702,4821],[-38,-75]],[[10589,4746],[-37,75],[37,76],[75,0],[38,-76]],[[10702,452],[74,0]],[[10776,452],[38,-75]],[[10814,377],[-38,-76],[-74,0],[-38,76]],[[10702,603],[74,0]],[[10776,603],[38,-76]],[[10814,527],[-38,-75]],[[10702,753],[74,0]],[[10776,753],[38,-75]],[[10814,678],[-38,-75]],[[10702,904],[74,0]],[[10776,904],[38,-75]],[[10814,829],[-38,-76]],[[10702,1055],[74,0]],[[10776,1055],[38,-76]],[[10814,979],[-38,-75]],[[10702,1205],[74,0]],[[10776,1205],[38,-75]],[[10814,1130],[-38,-75]],[[10702,1356],[74,0]],[[10776,1356],[38,-75]],[[10814,1281],[-38,-76]],[[10702,1507],[74,0]],[[10776,1507],[38,-76]],[[10814,1431],[-38,-75]],[[10702,1657],[74,0]],[[10776,1657],[38,-75]],[[10814,1582],[-38,-75]],[[10702,1808],[74,0]],[[10776,1808],[38,-75]],[[10814,1733],[-38,-76]],[[10702,1959],[74,0]],[[10776,1959],[38,-76]],[[10814,1883],[-38,-75]],[[10702,2109],[74,0]],[[10776,2109],[38,-75]],[[10814,2034],[-38,-75]],[[10702,2260],[74,0]],[[10776,2260],[38,-75]],[[10814,2185],[-38,-76]],[[10702,2411],[74,0]],[[10776,2411],[38,-76]],[[10814,2335],[-38,-75]],[[10702,2561],[74,0]],[[10776,2561],[38,-75]],[[10814,2486],[-38,-75]],[[10702,2712],[74,0]],[[10776,2712],[38,-75]],[[10814,2637],[-38,-76]],[[10702,2863],[74,0]],[[10776,2863],[38,-76]],[[10814,2787],[-38,-75]],[[10702,3013],[74,0]],[[10776,3013],[38,-75]],[[10814,2938],[-38,-75]],[[10702,3164],[74,0]],[[10776,3164],[38,-75]],[[10814,3089],[-38,-76]],[[10702,3315],[74,0]],[[10776,3315],[38,-75]],[[10814,3240],[-38,-76]],[[10702,3466],[74,0]],[[10776,3466],[38,-76]],[[10814,3390],[-38,-75]],[[10702,3616],[74,0]],[[10776,3616],[38,-75]],[[10814,3541],[-38,-75]],[[10702,3767],[74,0]],[[10776,3767],[38,-76]],[[10814,3691],[-38,-75]],[[10664,3842],[38,75]],[[10702,3917],[74,0]],[[10776,3917],[38,-75]],[[10814,3842],[-38,-75]],[[10814,3993],[-38,-76]],[[10702,3917],[-38,76],[38,75],[74,0],[38,-75]],[[10702,4520],[74,0]],[[10776,4520],[38,-75],[-38,-75],[-74,0],[-38,75],[38,75]],[[10702,4671],[74,0]],[[10776,4671],[38,-75]],[[10814,4596],[-38,-76]],[[10702,4520],[-38,76]],[[10702,4821],[74,0],[38,-75]],[[10814,4746],[-38,-75]],[[10814,527],[75,0]],[[10889,527],[37,-75]],[[10926,452],[-37,-75],[-75,0]],[[10814,678],[75,0]],[[10889,678],[37,-75]],[[10926,603],[-37,-76]],[[10814,829],[75,0]],[[10889,829],[37,-76]],[[10926,753],[-37,-75]],[[10814,979],[75,0]],[[10889,979],[37,-75]],[[10926,904],[-37,-75]],[[10814,1130],[75,0]],[[10889,1130],[37,-75]],[[10926,1055],[-37,-76]],[[10814,1281],[75,0]],[[10889,1281],[37,-76]],[[10926,1205],[-37,-75]],[[10814,1431],[75,0]],[[10889,1431],[37,-75]],[[10926,1356],[-37,-75]],[[10814,1582],[75,0]],[[10889,1582],[37,-75]],[[10926,1507],[-37,-76]],[[10814,1733],[75,0]],[[10889,1733],[37,-76]],[[10926,1657],[-37,-75]],[[10814,1883],[75,0]],[[10889,1883],[37,-75]],[[10926,1808],[-37,-75]],[[10814,2034],[75,0]],[[10889,2034],[37,-75]],[[10926,1959],[-37,-76]],[[10814,2185],[75,0]],[[10889,2185],[37,-76]],[[10926,2109],[-37,-75]],[[10814,2335],[75,0]],[[10889,2335],[37,-75]],[[10926,2260],[-37,-75]],[[10814,2486],[75,0]],[[10889,2486],[37,-75]],[[10926,2411],[-37,-76]],[[10814,2637],[75,0]],[[10889,2637],[37,-76]],[[10926,2561],[-37,-75]],[[10814,2787],[75,0]],[[10889,2787],[37,-75]],[[10926,2712],[-37,-75]],[[10814,2938],[75,0]],[[10889,2938],[37,-75]],[[10926,2863],[-37,-76]],[[10814,3089],[75,0]],[[10889,3089],[37,-76]],[[10926,3013],[-37,-75]],[[10814,3240],[75,0]],[[10889,3240],[37,-76]],[[10926,3164],[-37,-75]],[[10814,3390],[75,0]],[[10889,3390],[37,-75]],[[10926,3315],[-37,-75]],[[10814,3541],[75,0]],[[10889,3541],[37,-75]],[[10926,3466],[-37,-76]],[[10814,3691],[75,0]],[[10889,3691],[37,-75]],[[10926,3616],[-37,-75]],[[10814,3842],[75,0]],[[10889,3842],[37,-75]],[[10926,3767],[-37,-76]],[[10814,3993],[75,0]],[[10889,3993],[37,-76]],[[10926,3917],[-37,-75]],[[10814,4746],[75,0],[37,-75],[-37,-75],[-75,0]],[[10926,603],[75,0]],[[11001,603],[37,-76]],[[11038,527],[-37,-75],[-75,0]],[[10926,753],[75,0]],[[11001,753],[37,-75]],[[11038,678],[-37,-75]],[[10926,904],[75,0]],[[11001,904],[37,-75]],[[11038,829],[-37,-76]],[[10926,1055],[75,0]],[[11001,1055],[37,-76]],[[11038,979],[-37,-75]],[[10926,1205],[75,0]],[[11001,1205],[37,-75]],[[11038,1130],[-37,-75]],[[10926,1356],[75,0]],[[11001,1356],[37,-75]],[[11038,1281],[-37,-76]],[[10926,1507],[75,0]],[[11001,1507],[37,-76]],[[11038,1431],[-37,-75]],[[10926,1657],[75,0]],[[11001,1657],[37,-75]],[[11038,1582],[-37,-75]],[[10926,1808],[75,0]],[[11001,1808],[37,-75]],[[11038,1733],[-37,-76]],[[10926,1959],[75,0]],[[11001,1959],[37,-76]],[[11038,1883],[-37,-75]],[[10926,2109],[75,0]],[[11001,2109],[37,-75]],[[11038,2034],[-37,-75]],[[10926,2260],[75,0]],[[11001,2260],[37,-75]],[[11038,2185],[-37,-76]],[[10926,2411],[75,0]],[[11001,2411],[37,-76]],[[11038,2335],[-37,-75]],[[10926,2561],[75,0]],[[11001,2561],[37,-75]],[[11038,2486],[-37,-75]],[[10926,2712],[75,0]],[[11001,2712],[37,-75]],[[11038,2637],[-37,-76]],[[10926,2863],[75,0]],[[11001,2863],[37,-76]],[[11038,2787],[-37,-75]],[[10926,3013],[75,0]],[[11001,3013],[37,-75]],[[11038,2938],[-37,-75]],[[10926,3164],[75,0]],[[11001,3164],[37,-75]],[[11038,3089],[-37,-76]],[[10926,3315],[75,0]],[[11001,3315],[37,-75]],[[11038,3240],[-37,-76]],[[10926,3466],[75,0]],[[11001,3466],[37,-76]],[[11038,3390],[-37,-75]],[[10926,3616],[75,0]],[[11001,3616],[37,-75]],[[11038,3541],[-37,-75]],[[10926,3767],[75,0]],[[11001,3767],[37,-76]],[[11038,3691],[-37,-75]],[[10926,3917],[75,0]],[[11001,3917],[37,-75]],[[11038,3842],[-37,-75]],[[10889,3993],[37,75],[75,0]],[[11001,4068],[37,-75]],[[11038,3993],[-37,-76]],[[10926,4370],[75,0]],[[11001,4370],[37,-76]],[[11038,4294],[-37,-75]],[[11001,4219],[-75,0],[-37,75],[37,76]],[[11038,4445],[-37,-75]],[[10926,4370],[-37,75],[37,75],[75,0],[37,-75]],[[11038,678],[75,0]],[[11113,678],[38,-75]],[[11151,603],[-38,-76]],[[11113,527],[-75,0]],[[11038,829],[75,0]],[[11113,829],[38,-76]],[[11151,753],[-38,-75]],[[11038,979],[75,0]],[[11113,979],[38,-75]],[[11151,904],[-38,-75]],[[11038,1130],[75,0]],[[11113,1130],[38,-75]],[[11151,1055],[-38,-76]],[[11038,1281],[75,0]],[[11113,1281],[38,-76]],[[11151,1205],[-38,-75]],[[11038,1431],[75,0]],[[11113,1431],[38,-75]],[[11151,1356],[-38,-75]],[[11038,1582],[75,0]],[[11113,1582],[38,-75]],[[11151,1507],[-38,-76]],[[11038,1733],[75,0]],[[11113,1733],[38,-76]],[[11151,1657],[-38,-75]],[[11038,1883],[75,0]],[[11113,1883],[38,-75]],[[11151,1808],[-38,-75]],[[11038,2034],[75,0]],[[11113,2034],[38,-75]],[[11151,1959],[-38,-76]],[[11038,2185],[75,0]],[[11113,2185],[38,-76]],[[11151,2109],[-38,-75]],[[11038,2335],[75,0]],[[11113,2335],[38,-75]],[[11151,2260],[-38,-75]],[[11038,2486],[75,0]],[[11113,2486],[38,-75]],[[11151,2411],[-38,-76]],[[11038,2637],[75,0]],[[11113,2637],[38,-76]],[[11151,2561],[-38,-75]],[[11038,2787],[75,0]],[[11113,2787],[38,-75]],[[11151,2712],[-38,-75]],[[11038,2938],[75,0]],[[11113,2938],[38,-75]],[[11151,2863],[-38,-76]],[[11038,3089],[75,0]],[[11113,3089],[38,-76]],[[11151,3013],[-38,-75]],[[11038,3240],[75,0]],[[11113,3240],[38,-76]],[[11151,3164],[-38,-75]],[[11038,3390],[75,0]],[[11113,3390],[38,-75]],[[11151,3315],[-38,-75]],[[11038,3541],[75,0]],[[11113,3541],[38,-75]],[[11151,3466],[-38,-76]],[[11038,3691],[75,0]],[[11113,3691],[38,-75]],[[11151,3616],[-38,-75]],[[11038,3842],[75,0]],[[11113,3842],[38,-75]],[[11151,3767],[-38,-76]],[[11038,3993],[75,0]],[[11113,3993],[38,-76]],[[11151,3917],[-38,-75]],[[11001,4068],[37,76]],[[11038,4144],[75,0]],[[11113,4144],[38,-76]],[[11151,4068],[-38,-75]],[[11038,4294],[75,0]],[[11113,4294],[38,-75]],[[11151,4219],[-38,-75]],[[11038,4144],[-37,75]],[[11038,4445],[75,0]],[[11113,4445],[38,-75]],[[11151,4370],[-38,-76]],[[11038,4746],[75,0]],[[11113,4746],[38,-75]],[[11151,4671],[-38,-75]],[[11113,4596],[-75,0],[-37,75],[37,75]],[[11151,4821],[-38,-75]],[[11038,4746],[-37,75],[37,76],[75,0],[38,-76]],[[11151,603],[74,0]],[[11225,603],[38,-76]],[[11263,527],[-38,-75],[-74,0],[-38,75]],[[11151,753],[74,0]],[[11225,753],[38,-75]],[[11263,678],[-38,-75]],[[11151,904],[74,0]],[[11225,904],[38,-75]],[[11263,829],[-38,-76]],[[11151,1055],[74,0]],[[11225,1055],[38,-76]],[[11263,979],[-38,-75]],[[11151,1205],[74,0]],[[11225,1205],[38,-75]],[[11263,1130],[-38,-75]],[[11151,1356],[74,0]],[[11225,1356],[38,-75]],[[11263,1281],[-38,-76]],[[11151,1507],[74,0]],[[11225,1507],[38,-76]],[[11263,1431],[-38,-75]],[[11151,1657],[74,0]],[[11225,1657],[38,-75]],[[11263,1582],[-38,-75]],[[11151,1808],[74,0]],[[11225,1808],[38,-75]],[[11263,1733],[-38,-76]],[[11151,1959],[74,0]],[[11225,1959],[38,-76]],[[11263,1883],[-38,-75]],[[11151,2109],[74,0]],[[11225,2109],[38,-75]],[[11263,2034],[-38,-75]],[[11151,2260],[74,0]],[[11225,2260],[38,-75]],[[11263,2185],[-38,-76]],[[11151,2411],[74,0]],[[11225,2411],[38,-76]],[[11263,2335],[-38,-75]],[[11151,2561],[74,0]],[[11225,2561],[38,-75]],[[11263,2486],[-38,-75]],[[11151,2712],[74,0]],[[11225,2712],[38,-75]],[[11263,2637],[-38,-76]],[[11151,2863],[74,0]],[[11225,2863],[38,-76]],[[11263,2787],[-38,-75]],[[11151,3013],[74,0]],[[11225,3013],[38,-75]],[[11263,2938],[-38,-75]],[[11151,3164],[74,0]],[[11225,3164],[38,-75]],[[11263,3089],[-38,-76]],[[11151,3315],[74,0]],[[11225,3315],[38,-75]],[[11263,3240],[-38,-76]],[[11151,3616],[74,0]],[[11225,3616],[38,-75]],[[11263,3541],[-38,-75]],[[11225,3466],[-74,0]],[[11151,3767],[74,0]],[[11225,3767],[38,-76]],[[11263,3691],[-38,-75]],[[11151,3917],[74,0]],[[11225,3917],[38,-75]],[[11263,3842],[-38,-75]],[[11151,4068],[74,0]],[[11225,4068],[38,-75]],[[11263,3993],[-38,-76]],[[11151,4219],[74,0]],[[11225,4219],[38,-75]],[[11263,4144],[-38,-76]],[[11151,4370],[74,0]],[[11225,4370],[38,-76]],[[11263,4294],[-38,-75]],[[11113,4445],[38,75]],[[11151,4520],[74,0]],[[11225,4520],[38,-75]],[[11263,4445],[-38,-75]],[[11151,4671],[74,0]],[[11225,4671],[38,-75]],[[11263,4596],[-38,-76]],[[11151,4520],[-38,76]],[[11151,4821],[74,0],[38,-75],[-38,-75]],[[11263,678],[75,0]],[[11338,678],[37,-75]],[[11375,603],[-37,-76],[-75,0]],[[11263,829],[75,0]],[[11338,829],[37,-76]],[[11375,753],[-37,-75]],[[11263,979],[75,0]],[[11338,979],[37,-75]],[[11375,904],[-37,-75]],[[11263,1130],[75,0]],[[11338,1130],[37,-75]],[[11375,1055],[-37,-76]],[[11263,1281],[75,0]],[[11338,1281],[37,-76]],[[11375,1205],[-37,-75]],[[11263,1431],[75,0]],[[11338,1431],[37,-75]],[[11375,1356],[-37,-75]],[[11263,1582],[75,0]],[[11338,1582],[37,-75]],[[11375,1507],[-37,-76]],[[11263,1733],[75,0]],[[11338,1733],[37,-76]],[[11375,1657],[-37,-75]],[[11263,1883],[75,0]],[[11338,1883],[37,-75]],[[11375,1808],[-37,-75]],[[11263,2034],[75,0]],[[11338,2034],[37,-75]],[[11375,1959],[-37,-76]],[[11263,2185],[75,0]],[[11338,2185],[37,-76]],[[11375,2109],[-37,-75]],[[11263,2335],[75,0]],[[11338,2335],[37,-75]],[[11375,2260],[-37,-75]],[[11263,2486],[75,0]],[[11338,2486],[37,-75]],[[11375,2411],[-37,-76]],[[11263,2637],[75,0]],[[11338,2637],[37,-76]],[[11375,2561],[-37,-75]],[[11263,2787],[75,0]],[[11338,2787],[37,-75]],[[11375,2712],[-37,-75]],[[11263,2938],[75,0]],[[11338,2938],[37,-75]],[[11375,2863],[-37,-76]],[[11263,3089],[75,0]],[[11338,3089],[37,-76]],[[11375,3013],[-37,-75]],[[11263,3240],[75,0]],[[11338,3240],[37,-76]],[[11375,3164],[-37,-75]],[[11225,3315],[38,75]],[[11263,3390],[75,0]],[[11338,3390],[37,-75]],[[11375,3315],[-37,-75]],[[11263,3541],[75,0]],[[11338,3541],[37,-75]],[[11375,3466],[-37,-76]],[[11263,3390],[-38,76]],[[11263,3691],[75,0]],[[11338,3691],[37,-75]],[[11375,3616],[-37,-75]],[[11263,3842],[75,0]],[[11338,3842],[37,-75]],[[11375,3767],[-37,-76]],[[11263,3993],[75,0]],[[11338,3993],[37,-76]],[[11375,3917],[-37,-75]],[[11263,4144],[75,0]],[[11338,4144],[37,-76]],[[11375,4068],[-37,-75]],[[11263,4294],[75,0]],[[11338,4294],[37,-75]],[[11375,4219],[-37,-75]],[[11263,4445],[75,0]],[[11338,4445],[37,-75]],[[11375,4370],[-37,-76]],[[11263,4596],[75,0]],[[11338,4596],[37,-76]],[[11375,4520],[-37,-75]],[[11375,753],[75,0]],[[11450,753],[37,-75]],[[11487,678],[-37,-75],[-75,0]],[[11375,904],[75,0]],[[11450,904],[37,-75]],[[11487,829],[-37,-76]],[[11375,1055],[75,0]],[[11450,1055],[37,-76]],[[11487,979],[-37,-75]],[[11375,1205],[75,0]],[[11450,1205],[37,-75]],[[11487,1130],[-37,-75]],[[11375,1356],[75,0]],[[11450,1356],[37,-75]],[[11487,1281],[-37,-76]],[[11375,1507],[75,0]],[[11450,1507],[37,-76]],[[11487,1431],[-37,-75]],[[11375,1657],[75,0]],[[11450,1657],[37,-75]],[[11487,1582],[-37,-75]],[[11375,1808],[75,0]],[[11450,1808],[37,-75]],[[11487,1733],[-37,-76]],[[11375,1959],[75,0]],[[11450,1959],[37,-76]],[[11487,1883],[-37,-75]],[[11375,2109],[75,0]],[[11450,2109],[37,-75]],[[11487,2034],[-37,-75]],[[11375,2260],[75,0]],[[11450,2260],[37,-75]],[[11487,2185],[-37,-76]],[[11375,2411],[75,0]],[[11450,2411],[37,-76]],[[11487,2335],[-37,-75]],[[11375,2561],[75,0]],[[11450,2561],[37,-75]],[[11487,2486],[-37,-75]],[[11375,2712],[75,0]],[[11450,2712],[37,-75]],[[11487,2637],[-37,-76]],[[11375,2863],[75,0]],[[11450,2863],[37,-76]],[[11487,2787],[-37,-75]],[[11375,3013],[75,0]],[[11450,3013],[37,-75]],[[11487,2938],[-37,-75]],[[11375,3164],[75,0]],[[11450,3164],[37,-75]],[[11487,3089],[-37,-76]],[[11375,3315],[75,0]],[[11450,3315],[37,-75]],[[11487,3240],[-37,-76]],[[11375,3616],[75,0]],[[11450,3616],[37,-75]],[[11487,3541],[-37,-75]],[[11450,3466],[-75,0]],[[11375,3767],[75,0]],[[11450,3767],[37,-76]],[[11487,3691],[-37,-75]],[[11375,3917],[75,0]],[[11450,3917],[37,-75]],[[11487,3842],[-37,-75]],[[11375,4068],[75,0]],[[11450,4068],[37,-75]],[[11487,3993],[-37,-76]],[[11375,4219],[75,0]],[[11450,4219],[37,-75]],[[11487,4144],[-37,-76]],[[11375,4370],[75,0]],[[11450,4370],[37,-76]],[[11487,4294],[-37,-75]],[[11375,4520],[75,0]],[[11450,4520],[37,-75]],[[11487,4445],[-37,-75]],[[11338,4596],[37,75],[75,0],[37,-75]],[[11487,4596],[-37,-76]],[[11487,829],[75,0]],[[11562,829],[38,-76]],[[11600,753],[-38,-75],[-75,0]],[[11487,1130],[75,0]],[[11562,1130],[38,-75]],[[11600,1055],[-38,-76]],[[11562,979],[-75,0]],[[11487,1281],[75,0]],[[11562,1281],[38,-76]],[[11600,1205],[-38,-75]],[[11487,1431],[75,0]],[[11562,1431],[38,-75]],[[11600,1356],[-38,-75]],[[11487,1582],[75,0]],[[11562,1582],[38,-75]],[[11600,1507],[-38,-76]],[[11487,1733],[75,0]],[[11562,1733],[38,-76]],[[11600,1657],[-38,-75]],[[11487,1883],[75,0]],[[11562,1883],[38,-75]],[[11600,1808],[-38,-75]],[[11487,2034],[75,0]],[[11562,2034],[38,-75]],[[11600,1959],[-38,-76]],[[11487,2185],[75,0]],[[11562,2185],[38,-76]],[[11600,2109],[-38,-75]],[[11487,2335],[75,0]],[[11562,2335],[38,-75]],[[11600,2260],[-38,-75]],[[11487,2486],[75,0]],[[11562,2486],[38,-75]],[[11600,2411],[-38,-76]],[[11487,2637],[75,0]],[[11562,2637],[38,-76]],[[11600,2561],[-38,-75]],[[11487,2787],[75,0]],[[11562,2787],[38,-75]],[[11600,2712],[-38,-75]],[[11487,2938],[75,0]],[[11562,2938],[38,-75]],[[11600,2863],[-38,-76]],[[11487,3089],[75,0]],[[11562,3089],[38,-76]],[[11600,3013],[-38,-75]],[[11487,3240],[75,0]],[[11562,3240],[38,-76]],[[11600,3164],[-38,-75]],[[11450,3315],[37,75]],[[11487,3390],[75,0]],[[11562,3390],[38,-75]],[[11600,3315],[-38,-75]],[[11487,3541],[75,0]],[[11562,3541],[38,-75]],[[11600,3466],[-38,-76]],[[11487,3390],[-37,76]],[[11487,3691],[75,0]],[[11562,3691],[38,-75]],[[11600,3616],[-38,-75]],[[11487,3842],[75,0]],[[11562,3842],[38,-75]],[[11600,3767],[-38,-76]],[[11487,3993],[75,0]],[[11562,3993],[38,-76]],[[11600,3917],[-38,-75]],[[11487,4144],[75,0]],[[11562,4144],[38,-76]],[[11600,4068],[-38,-75]],[[11487,4294],[75,0]],[[11562,4294],[38,-75]],[[11600,4219],[-38,-75]],[[11487,4445],[75,0]],[[11562,4445],[38,-75]],[[11600,4370],[-38,-76]],[[11487,4596],[75,0]],[[11562,4596],[38,-76]],[[11600,4520],[-38,-75]],[[11562,829],[38,75]],[[11600,904],[74,0]],[[11674,904],[38,-75]],[[11712,829],[-38,-76]],[[11674,753],[-74,0]],[[11600,1055],[74,0]],[[11674,1055],[38,-76]],[[11712,979],[-38,-75]],[[11600,904],[-38,75]],[[11600,1205],[74,0]],[[11674,1205],[38,-75]],[[11712,1130],[-38,-75]],[[11600,1356],[74,0]],[[11674,1356],[38,-75]],[[11712,1281],[-38,-76]],[[11600,1507],[74,0]],[[11674,1507],[38,-76]],[[11712,1431],[-38,-75]],[[11600,1657],[74,0]],[[11674,1657],[38,-75]],[[11712,1582],[-38,-75]],[[11600,1808],[74,0]],[[11674,1808],[38,-75]],[[11712,1733],[-38,-76]],[[11600,1959],[74,0]],[[11674,1959],[38,-76]],[[11712,1883],[-38,-75]],[[11600,2109],[74,0]],[[11674,2109],[38,-75]],[[11712,2034],[-38,-75]],[[11600,2260],[74,0]],[[11674,2260],[38,-75]],[[11712,2185],[-38,-76]],[[11600,2411],[74,0]],[[11674,2411],[38,-76]],[[11712,2335],[-38,-75]],[[11600,2561],[74,0]],[[11674,2561],[38,-75]],[[11712,2486],[-38,-75]],[[11600,2712],[74,0]],[[11674,2712],[38,-75]],[[11712,2637],[-38,-76]],[[11600,2863],[74,0]],[[11674,2863],[38,-76]],[[11712,2787],[-38,-75]],[[11600,3013],[74,0]],[[11674,3013],[38,-75]],[[11712,2938],[-38,-75]],[[11600,3164],[74,0]],[[11674,3164],[38,-75]],[[11712,3089],[-38,-76]],[[11600,3315],[74,0]],[[11674,3315],[38,-75]],[[11712,3240],[-38,-76]],[[11600,3466],[74,0]],[[11674,3466],[38,-76]],[[11712,3390],[-38,-75]],[[11600,3616],[74,0]],[[11674,3616],[38,-75]],[[11712,3541],[-38,-75]],[[11600,3767],[74,0]],[[11674,3767],[38,-76]],[[11712,3691],[-38,-75]],[[11600,3917],[74,0]],[[11674,3917],[38,-75]],[[11712,3842],[-38,-75]],[[11600,4068],[74,0]],[[11674,4068],[38,-75]],[[11712,3993],[-38,-76]],[[11600,4219],[74,0]],[[11674,4219],[38,-75]],[[11712,4144],[-38,-76]],[[11600,4370],[74,0]],[[11674,4370],[38,-76]],[[11712,4294],[-38,-75]],[[11600,4520],[74,0]],[[11674,4520],[38,-75]],[[11712,4445],[-38,-75]],[[11562,4596],[38,75]],[[11600,4671],[74,0]],[[11674,4671],[38,-75]],[[11712,4596],[-38,-76]],[[11712,4746],[-38,-75]],[[11600,4671],[-38,75],[38,75],[74,0],[38,-75]],[[11712,829],[75,0]],[[11787,829],[37,-76]],[[11824,753],[-37,-75],[-75,0],[-38,75]],[[11712,979],[75,0]],[[11787,979],[37,-75]],[[11824,904],[-37,-75]],[[11712,1130],[75,0]],[[11787,1130],[37,-75]],[[11824,1055],[-37,-76]],[[11712,1281],[75,0]],[[11787,1281],[37,-76]],[[11824,1205],[-37,-75]],[[11712,1431],[75,0]],[[11787,1431],[37,-75]],[[11824,1356],[-37,-75]],[[11712,1582],[75,0]],[[11787,1582],[37,-75]],[[11824,1507],[-37,-76]],[[11712,1733],[75,0]],[[11787,1733],[37,-76]],[[11824,1657],[-37,-75]],[[11712,1883],[75,0]],[[11787,1883],[37,-75]],[[11824,1808],[-37,-75]],[[11712,2034],[75,0]],[[11787,2034],[37,-75]],[[11824,1959],[-37,-76]],[[11712,2185],[75,0]],[[11787,2185],[37,-76]],[[11824,2109],[-37,-75]],[[11712,2335],[75,0]],[[11787,2335],[37,-75]],[[11824,2260],[-37,-75]],[[11712,2486],[75,0]],[[11787,2486],[37,-75]],[[11824,2411],[-37,-76]],[[11712,2637],[75,0]],[[11787,2637],[37,-76]],[[11824,2561],[-37,-75]],[[11712,2787],[75,0]],[[11787,2787],[37,-75]],[[11824,2712],[-37,-75]],[[11712,2938],[75,0]],[[11787,2938],[37,-75]],[[11824,2863],[-37,-76]],[[11712,3089],[75,0]],[[11787,3089],[37,-76]],[[11824,3013],[-37,-75]],[[11712,3240],[75,0]],[[11787,3240],[37,-76]],[[11824,3164],[-37,-75]],[[11712,3390],[75,0]],[[11787,3390],[37,-75]],[[11824,3315],[-37,-75]],[[11712,3541],[75,0]],[[11787,3541],[37,-75]],[[11824,3466],[-37,-76]],[[11712,3691],[75,0]],[[11787,3691],[37,-75]],[[11824,3616],[-37,-75]],[[11712,3842],[75,0]],[[11787,3842],[37,-75]],[[11824,3767],[-37,-76]],[[11712,3993],[75,0]],[[11787,3993],[37,-76]],[[11824,3917],[-37,-75]],[[11712,4144],[75,0]],[[11787,4144],[37,-76]],[[11824,4068],[-37,-75]],[[11712,4294],[75,0]],[[11787,4294],[37,-75]],[[11824,4219],[-37,-75]],[[11712,4445],[75,0]],[[11787,4445],[37,-75]],[[11824,4370],[-37,-76]],[[11712,4596],[75,0]],[[11787,4596],[37,-76]],[[11824,4520],[-37,-75]],[[11712,4746],[75,0]],[[11787,4746],[37,-75]],[[11824,4671],[-37,-75]],[[11824,904],[75,0]],[[11899,904],[37,-75]],[[11936,829],[-37,-76],[-75,0]],[[11824,1055],[75,0]],[[11899,1055],[37,-76]],[[11936,979],[-37,-75]],[[11824,1205],[75,0]],[[11899,1205],[37,-75]],[[11936,1130],[-37,-75]],[[11824,1356],[75,0]],[[11899,1356],[37,-75]],[[11936,1281],[-37,-76]],[[11824,1507],[75,0]],[[11899,1507],[37,-76]],[[11936,1431],[-37,-75]],[[11824,1657],[75,0]],[[11899,1657],[37,-75]],[[11936,1582],[-37,-75]],[[11824,1808],[75,0]],[[11899,1808],[37,-75]],[[11936,1733],[-37,-76]],[[11824,1959],[75,0]],[[11899,1959],[37,-76]],[[11936,1883],[-37,-75]],[[11824,2109],[75,0]],[[11899,2109],[37,-75]],[[11936,2034],[-37,-75]],[[11824,2260],[75,0]],[[11899,2260],[37,-75]],[[11936,2185],[-37,-76]],[[11824,2411],[75,0]],[[11899,2411],[37,-76]],[[11936,2335],[-37,-75]],[[11824,2561],[75,0]],[[11899,2561],[37,-75]],[[11936,2486],[-37,-75]],[[11824,2712],[75,0]],[[11899,2712],[37,-75]],[[11936,2637],[-37,-76]],[[11824,2863],[75,0]],[[11899,2863],[37,-76]],[[11936,2787],[-37,-75]],[[11824,3013],[75,0]],[[11899,3013],[37,-75]],[[11936,2938],[-37,-75]],[[11824,3164],[75,0]],[[11899,3164],[37,-75]],[[11936,3089],[-37,-76]],[[11824,3315],[75,0]],[[11899,3315],[37,-75]],[[11936,3240],[-37,-76]],[[11824,3466],[75,0]],[[11899,3466],[37,-76]],[[11936,3390],[-37,-75]],[[11824,3616],[75,0]],[[11899,3616],[37,-75]],[[11936,3541],[-37,-75]],[[11824,3767],[75,0]],[[11899,3767],[37,-76]],[[11936,3691],[-37,-75]],[[11824,3917],[75,0]],[[11899,3917],[37,-75]],[[11936,3842],[-37,-75]],[[11824,4068],[75,0]],[[11899,4068],[37,-75]],[[11936,3993],[-37,-76]],[[11824,4219],[75,0]],[[11899,4219],[37,-75]],[[11936,4144],[-37,-76]],[[11824,4370],[75,0]],[[11899,4370],[37,-76]],[[11936,4294],[-37,-75]],[[11824,4520],[75,0]],[[11899,4520],[37,-75]],[[11936,4445],[-37,-75]],[[11824,4671],[75,0]],[[11899,4671],[37,-75]],[[11936,4596],[-37,-76]],[[11787,4746],[37,75],[75,0]],[[11899,4821],[37,-75]],[[11936,4746],[-37,-75]],[[11936,979],[75,0]],[[12011,979],[38,-75]],[[12049,904],[-38,-75],[-75,0]],[[11936,1130],[75,0]],[[12011,1130],[38,-75]],[[12049,1055],[-38,-76]],[[11936,1281],[75,0]],[[12011,1281],[38,-76]],[[12049,1205],[-38,-75]],[[11936,1431],[75,0]],[[12011,1431],[38,-75]],[[12049,1356],[-38,-75]],[[11936,1582],[75,0]],[[12011,1582],[38,-75]],[[12049,1507],[-38,-76]],[[11936,1733],[75,0]],[[12011,1733],[38,-76]],[[12049,1657],[-38,-75]],[[11936,1883],[75,0]],[[12011,1883],[38,-75]],[[12049,1808],[-38,-75]],[[11936,2034],[75,0]],[[12011,2034],[38,-75]],[[12049,1959],[-38,-76]],[[11936,2185],[75,0]],[[12011,2185],[38,-76]],[[12049,2109],[-38,-75]],[[11936,2335],[75,0]],[[12011,2335],[38,-75]],[[12049,2260],[-38,-75]],[[11936,2486],[75,0]],[[12011,2486],[38,-75]],[[12049,2411],[-38,-76]],[[11936,2637],[75,0]],[[12011,2637],[38,-76]],[[12049,2561],[-38,-75]],[[11936,2787],[75,0]],[[12011,2787],[38,-75]],[[12049,2712],[-38,-75]],[[11936,2938],[75,0]],[[12011,2938],[38,-75]],[[12049,2863],[-38,-76]],[[11936,3089],[75,0]],[[12011,3089],[38,-76]],[[12049,3013],[-38,-75]],[[11936,3240],[75,0]],[[12011,3240],[38,-76]],[[12049,3164],[-38,-75]],[[11936,3390],[75,0]],[[12011,3390],[38,-75]],[[12049,3315],[-38,-75]],[[11936,3541],[75,0]],[[12011,3541],[38,-75]],[[12049,3466],[-38,-76]],[[11936,3691],[75,0]],[[12011,3691],[38,-75]],[[12049,3616],[-38,-75]],[[11936,3842],[75,0]],[[12011,3842],[38,-75]],[[12049,3767],[-38,-76]],[[11936,3993],[75,0]],[[12011,3993],[38,-76]],[[12049,3917],[-38,-75]],[[11936,4144],[75,0]],[[12011,4144],[38,-76]],[[12049,4068],[-38,-75]],[[11936,4294],[75,0]],[[12011,4294],[38,-75]],[[12049,4219],[-38,-75]],[[11936,4445],[75,0]],[[12011,4445],[38,-75]],[[12049,4370],[-38,-76]],[[11936,4596],[75,0]],[[12011,4596],[38,-76]],[[12049,4520],[-38,-75]],[[11936,4746],[75,0]],[[12011,4746],[38,-75]],[[12049,4671],[-38,-75]],[[11899,4821],[37,76]],[[11936,4897],[75,0]],[[12011,4897],[38,-76]],[[12049,4821],[-38,-75]],[[12011,5047],[38,-75]],[[12049,4972],[-38,-75]],[[11936,4897],[-37,75],[37,75],[75,0]],[[12049,1055],[75,0]],[[12124,1055],[37,-76]],[[12161,979],[-37,-75],[-75,0]],[[12049,1205],[75,0]],[[12124,1205],[37,-75]],[[12161,1130],[-37,-75]],[[12049,1356],[75,0]],[[12124,1356],[37,-75]],[[12161,1281],[-37,-76]],[[12049,1507],[75,0]],[[12124,1507],[37,-76]],[[12161,1431],[-37,-75]],[[12049,1657],[75,0]],[[12124,1657],[37,-75]],[[12161,1582],[-37,-75]],[[12049,1808],[75,0]],[[12124,1808],[37,-75]],[[12161,1733],[-37,-76]],[[12049,1959],[75,0]],[[12124,1959],[37,-76]],[[12161,1883],[-37,-75]],[[12049,2109],[75,0]],[[12124,2109],[37,-75]],[[12161,2034],[-37,-75]],[[12049,2260],[75,0]],[[12124,2260],[37,-75]],[[12161,2185],[-37,-76]],[[12049,2411],[75,0]],[[12124,2411],[37,-76]],[[12161,2335],[-37,-75]],[[12049,2561],[75,0]],[[12124,2561],[37,-75]],[[12161,2486],[-37,-75]],[[12049,2712],[75,0]],[[12124,2712],[37,-75]],[[12161,2637],[-37,-76]],[[12049,2863],[75,0]],[[12124,2863],[37,-76]],[[12161,2787],[-37,-75]],[[12049,3013],[75,0]],[[12124,3013],[37,-75]],[[12161,2938],[-37,-75]],[[12049,3164],[75,0]],[[12124,3164],[37,-75]],[[12161,3089],[-37,-76]],[[12049,3315],[75,0]],[[12124,3315],[37,-75]],[[12161,3240],[-37,-76]],[[12049,3466],[75,0]],[[12124,3466],[37,-76]],[[12161,3390],[-37,-75]],[[12049,3616],[75,0]],[[12124,3616],[37,-75]],[[12161,3541],[-37,-75]],[[12049,3767],[75,0]],[[12124,3767],[37,-76]],[[12161,3691],[-37,-75]],[[12049,3917],[75,0]],[[12124,3917],[37,-75]],[[12161,3842],[-37,-75]],[[12049,4068],[75,0]],[[12124,4068],[37,-75]],[[12161,3993],[-37,-76]],[[12049,4219],[75,0]],[[12124,4219],[37,-75]],[[12161,4144],[-37,-76]],[[12049,4370],[75,0]],[[12124,4370],[37,-76]],[[12161,4294],[-37,-75]],[[12049,4520],[75,0]],[[12124,4520],[37,-75]],[[12161,4445],[-37,-75]],[[12049,4821],[75,0]],[[12124,4821],[37,-75],[-37,-75],[-75,0]],[[12049,4972],[75,0]],[[12124,4972],[37,-75],[-37,-76]],[[12011,5047],[38,76],[75,0],[37,-76],[-37,-75]],[[12161,1130],[75,0]],[[12236,1130],[37,-75],[-37,-76],[-75,0]],[[12161,1281],[75,0]],[[12236,1281],[37,-76]],[[12273,1205],[-37,-75]],[[12161,1431],[75,0]],[[12236,1431],[37,-75]],[[12273,1356],[-37,-75]],[[12161,1582],[75,0]],[[12236,1582],[37,-75]],[[12273,1507],[-37,-76]],[[12161,1733],[75,0]],[[12236,1733],[37,-76]],[[12273,1657],[-37,-75]],[[12161,1883],[75,0]],[[12236,1883],[37,-75]],[[12273,1808],[-37,-75]],[[12161,2034],[75,0]],[[12236,2034],[37,-75]],[[12273,1959],[-37,-76]],[[12161,2185],[75,0]],[[12236,2185],[37,-76]],[[12273,2109],[-37,-75]],[[12161,2335],[75,0]],[[12236,2335],[37,-75]],[[12273,2260],[-37,-75]],[[12161,2486],[75,0]],[[12236,2486],[37,-75]],[[12273,2411],[-37,-76]],[[12161,2637],[75,0]],[[12236,2637],[37,-76]],[[12273,2561],[-37,-75]],[[12161,2787],[75,0]],[[12236,2787],[37,-75]],[[12273,2712],[-37,-75]],[[12161,2938],[75,0]],[[12236,2938],[37,-75]],[[12273,2863],[-37,-76]],[[12161,3089],[75,0]],[[12236,3089],[37,-76]],[[12273,3013],[-37,-75]],[[12161,3240],[75,0]],[[12236,3240],[37,-76]],[[12273,3164],[-37,-75]],[[12161,3390],[75,0]],[[12236,3390],[37,-75]],[[12273,3315],[-37,-75]],[[12161,3541],[75,0]],[[12236,3541],[37,-75]],[[12273,3466],[-37,-76]],[[12161,3691],[75,0]],[[12236,3691],[37,-75]],[[12273,3616],[-37,-75]],[[12161,3842],[75,0]],[[12236,3842],[37,-75]],[[12273,3767],[-37,-76]],[[12161,3993],[75,0]],[[12236,3993],[37,-76]],[[12273,3917],[-37,-75]],[[12161,4144],[75,0]],[[12236,4144],[37,-76]],[[12273,4068],[-37,-75]],[[12161,4294],[75,0]],[[12236,4294],[37,-75]],[[12273,4219],[-37,-75]],[[12161,4445],[75,0]],[[12236,4445],[37,-75]],[[12273,4370],[-37,-76]],[[12124,4520],[37,76],[75,0],[37,-76]],[[12273,4520],[-37,-75]],[[12273,1356],[75,0]],[[12348,1356],[37,-75]],[[12385,1281],[-37,-76]],[[12348,1205],[-75,0]],[[12273,1507],[75,0]],[[12348,1507],[37,-76]],[[12385,1431],[-37,-75]],[[12273,1657],[75,0]],[[12348,1657],[37,-75]],[[12385,1582],[-37,-75]],[[12273,1808],[75,0]],[[12348,1808],[37,-75]],[[12385,1733],[-37,-76]],[[12273,1959],[75,0]],[[12348,1959],[37,-76]],[[12385,1883],[-37,-75]],[[12273,2109],[75,0]],[[12348,2109],[37,-75]],[[12385,2034],[-37,-75]],[[12273,2260],[75,0]],[[12348,2260],[37,-75]],[[12385,2185],[-37,-76]],[[12273,2411],[75,0]],[[12348,2411],[37,-76]],[[12385,2335],[-37,-75]],[[12273,2561],[75,0]],[[12348,2561],[37,-75]],[[12385,2486],[-37,-75]],[[12273,2712],[75,0]],[[12348,2712],[37,-75]],[[12385,2637],[-37,-76]],[[12273,2863],[75,0]],[[12348,2863],[37,-76]],[[12385,2787],[-37,-75]],[[12273,3013],[75,0]],[[12348,3013],[37,-75]],[[12385,2938],[-37,-75]],[[12273,3164],[75,0]],[[12348,3164],[37,-75]],[[12385,3089],[-37,-76]],[[12273,3315],[75,0]],[[12348,3315],[37,-75]],[[12385,3240],[-37,-76]],[[12273,3466],[75,0]],[[12348,3466],[37,-76]],[[12385,3390],[-37,-75]],[[12273,3616],[75,0]],[[12348,3616],[37,-75]],[[12385,3541],[-37,-75]],[[12273,3767],[75,0]],[[12348,3767],[37,-76]],[[12385,3691],[-37,-75]],[[12273,3917],[75,0]],[[12348,3917],[37,-75]],[[12385,3842],[-37,-75]],[[12273,4068],[75,0]],[[12348,4068],[37,-75]],[[12385,3993],[-37,-76]],[[12273,4219],[75,0]],[[12348,4219],[37,-75]],[[12385,4144],[-37,-76]],[[12273,4370],[75,0]],[[12348,4370],[37,-76]],[[12385,4294],[-37,-75]],[[12273,4520],[75,0],[37,-75]],[[12385,4445],[-37,-75]],[[12385,1281],[75,0]],[[12460,1281],[38,-76],[-38,-75],[-75,0],[-37,75]],[[12385,1431],[75,0]],[[12460,1431],[38,-75]],[[12498,1356],[-38,-75]],[[12385,1582],[75,0]],[[12460,1582],[38,-75]],[[12498,1507],[-38,-76]],[[12385,1733],[75,0]],[[12460,1733],[38,-76]],[[12498,1657],[-38,-75]],[[12385,1883],[75,0]],[[12460,1883],[38,-75]],[[12498,1808],[-38,-75]],[[12385,2034],[75,0]],[[12460,2034],[38,-75]],[[12498,1959],[-38,-76]],[[12385,2185],[75,0]],[[12460,2185],[38,-76]],[[12498,2109],[-38,-75]],[[12385,2335],[75,0]],[[12460,2335],[38,-75]],[[12498,2260],[-38,-75]],[[12385,2486],[75,0]],[[12460,2486],[38,-75]],[[12498,2411],[-38,-76]],[[12385,2637],[75,0]],[[12460,2637],[38,-76]],[[12498,2561],[-38,-75]],[[12385,2787],[75,0]],[[12460,2787],[38,-75]],[[12498,2712],[-38,-75]],[[12385,2938],[75,0]],[[12460,2938],[38,-75]],[[12498,2863],[-38,-76]],[[12385,3089],[75,0]],[[12460,3089],[38,-76]],[[12498,3013],[-38,-75]],[[12385,3240],[75,0]],[[12460,3240],[38,-76]],[[12498,3164],[-38,-75]],[[12385,3390],[75,0]],[[12460,3390],[38,-75]],[[12498,3315],[-38,-75]],[[12385,3541],[75,0]],[[12460,3541],[38,-75]],[[12498,3466],[-38,-76]],[[12385,3691],[75,0]],[[12460,3691],[38,-75]],[[12498,3616],[-38,-75]],[[12385,3842],[75,0]],[[12460,3842],[38,-75]],[[12498,3767],[-38,-76]],[[12385,3993],[75,0]],[[12460,3993],[38,-76]],[[12498,3917],[-38,-75]],[[12385,4144],[75,0]],[[12460,4144],[38,-76]],[[12498,4068],[-38,-75]],[[12385,4294],[75,0]],[[12460,4294],[38,-75]],[[12498,4219],[-38,-75]],[[12385,4445],[75,0]],[[12460,4445],[38,-75]],[[12498,4370],[-38,-76]],[[12498,1507],[75,0]],[[12573,1507],[37,-76]],[[12610,1431],[-37,-75],[-75,0]],[[12498,1657],[75,0]],[[12573,1657],[37,-75]],[[12610,1582],[-37,-75]],[[12498,1808],[75,0]],[[12573,1808],[37,-75]],[[12610,1733],[-37,-76]],[[12498,1959],[75,0]],[[12573,1959],[37,-76]],[[12610,1883],[-37,-75]],[[12498,2109],[75,0]],[[12573,2109],[37,-75]],[[12610,2034],[-37,-75]],[[12498,2260],[75,0]],[[12573,2260],[37,-75]],[[12610,2185],[-37,-76]],[[12498,2411],[75,0]],[[12573,2411],[37,-76]],[[12610,2335],[-37,-75]],[[12498,2561],[75,0]],[[12573,2561],[37,-75]],[[12610,2486],[-37,-75]],[[12498,2712],[75,0]],[[12573,2712],[37,-75]],[[12610,2637],[-37,-76]],[[12498,2863],[75,0]],[[12573,2863],[37,-76]],[[12610,2787],[-37,-75]],[[12498,3013],[75,0]],[[12573,3013],[37,-75]],[[12610,2938],[-37,-75]],[[12498,3164],[75,0]],[[12573,3164],[37,-75]],[[12610,3089],[-37,-76]],[[12498,3315],[75,0]],[[12573,3315],[37,-75]],[[12610,3240],[-37,-76]],[[12498,3466],[75,0]],[[12573,3466],[37,-76]],[[12610,3390],[-37,-75]],[[12498,3616],[75,0]],[[12573,3616],[37,-75]],[[12610,3541],[-37,-75]],[[12498,3767],[75,0]],[[12573,3767],[37,-76]],[[12610,3691],[-37,-75]],[[12498,3917],[75,0]],[[12573,3917],[37,-75]],[[12610,3842],[-37,-75]],[[12498,4068],[75,0]],[[12573,4068],[37,-75]],[[12610,3993],[-37,-76]],[[12498,4219],[75,0]],[[12573,4219],[37,-75]],[[12610,4144],[-37,-76]],[[12498,4370],[75,0]],[[12573,4370],[37,-76]],[[12610,4294],[-37,-75]],[[12460,4445],[38,75],[75,0],[37,-75]],[[12610,4445],[-37,-75]],[[12610,1582],[75,0]],[[12685,1582],[37,-75]],[[12722,1507],[-37,-76],[-75,0]],[[12610,1733],[75,0]],[[12685,1733],[37,-76]],[[12722,1657],[-37,-75]],[[12610,1883],[75,0]],[[12685,1883],[37,-75]],[[12722,1808],[-37,-75]],[[12610,2034],[75,0]],[[12685,2034],[37,-75]],[[12722,1959],[-37,-76]],[[12610,2185],[75,0]],[[12685,2185],[37,-76]],[[12722,2109],[-37,-75]],[[12610,2335],[75,0]],[[12685,2335],[37,-75]],[[12722,2260],[-37,-75]],[[12610,2486],[75,0]],[[12685,2486],[37,-75]],[[12722,2411],[-37,-76]],[[12610,2637],[75,0]],[[12685,2637],[37,-76]],[[12722,2561],[-37,-75]],[[12610,2787],[75,0]],[[12685,2787],[37,-75]],[[12722,2712],[-37,-75]],[[12610,2938],[75,0]],[[12685,2938],[37,-75]],[[12722,2863],[-37,-76]],[[12610,3089],[75,0]],[[12685,3089],[37,-76]],[[12722,3013],[-37,-75]],[[12610,3240],[75,0]],[[12685,3240],[37,-76]],[[12722,3164],[-37,-75]],[[12610,3390],[75,0]],[[12685,3390],[37,-75]],[[12722,3315],[-37,-75]],[[12610,3541],[75,0]],[[12685,3541],[37,-75]],[[12722,3466],[-37,-76]],[[12610,3691],[75,0]],[[12685,3691],[37,-75]],[[12722,3616],[-37,-75]],[[12610,3842],[75,0]],[[12685,3842],[37,-75],[-37,-76]],[[12610,3993],[75,0]],[[12685,3993],[37,-76]],[[12722,3917],[-37,-75]],[[12610,4144],[75,0]],[[12685,4144],[37,-76]],[[12722,4068],[-37,-75]],[[12610,4294],[75,0]],[[12685,4294],[37,-75],[-37,-75]],[[12610,4445],[75,0],[37,-75],[-37,-76]],[[12722,1657],[75,0]],[[12797,1657],[37,-75]],[[12834,1582],[-37,-75],[-75,0]],[[12722,1808],[75,0]],[[12797,1808],[37,-75]],[[12834,1733],[-37,-76]],[[12722,1959],[75,0]],[[12797,1959],[37,-76]],[[12834,1883],[-37,-75]],[[12722,2109],[75,0]],[[12797,2109],[37,-75]],[[12834,2034],[-37,-75]],[[12722,2260],[75,0]],[[12797,2260],[37,-75]],[[12834,2185],[-37,-76]],[[12722,2411],[75,0]],[[12797,2411],[37,-76]],[[12834,2335],[-37,-75]],[[12722,2561],[75,0]],[[12797,2561],[37,-75]],[[12834,2486],[-37,-75]],[[12722,2712],[75,0]],[[12797,2712],[37,-75]],[[12834,2637],[-37,-76]],[[12722,2863],[75,0]],[[12797,2863],[37,-76]],[[12834,2787],[-37,-75]],[[12722,3013],[75,0]],[[12797,3013],[37,-75]],[[12834,2938],[-37,-75]],[[12722,3164],[75,0]],[[12797,3164],[37,-75]],[[12834,3089],[-37,-76]],[[12722,3315],[75,0]],[[12797,3315],[37,-75]],[[12834,3240],[-37,-76]],[[12722,3466],[75,0]],[[12797,3466],[37,-76]],[[12834,3390],[-37,-75]],[[12722,3616],[75,0],[37,-75]],[[12834,3541],[-37,-75]],[[12722,4068],[75,0],[37,-75],[-37,-76],[-75,0]],[[12834,1733],[75,0]],[[12909,1733],[38,-76]],[[12947,1657],[-38,-75],[-75,0]],[[12834,1883],[75,0]],[[12909,1883],[38,-75]],[[12947,1808],[-38,-75]],[[12834,2034],[75,0]],[[12909,2034],[38,-75]],[[12947,1959],[-38,-76]],[[12834,2185],[75,0]],[[12909,2185],[38,-76]],[[12947,2109],[-38,-75]],[[12834,2335],[75,0]],[[12909,2335],[38,-75]],[[12947,2260],[-38,-75]],[[12834,2486],[75,0]],[[12909,2486],[38,-75]],[[12947,2411],[-38,-76]],[[12834,2637],[75,0]],[[12909,2637],[38,-76]],[[12947,2561],[-38,-75]],[[12834,2787],[75,0]],[[12909,2787],[38,-75]],[[12947,2712],[-38,-75]],[[12834,2938],[75,0]],[[12909,2938],[38,-75]],[[12947,2863],[-38,-76]],[[12834,3089],[75,0]],[[12909,3089],[38,-76]],[[12947,3013],[-38,-75]],[[12834,3240],[75,0]],[[12909,3240],[38,-76]],[[12947,3164],[-38,-75]],[[12834,3390],[75,0]],[[12909,3390],[38,-75]],[[12947,3315],[-38,-75]],[[12834,3541],[75,0],[38,-75],[-38,-76]],[[12947,1808],[75,0]],[[13022,1808],[37,-75]],[[13059,1733],[-37,-76],[-75,0]],[[12947,1959],[75,0]],[[13022,1959],[37,-76]],[[13059,1883],[-37,-75]],[[12947,2109],[75,0]],[[13022,2109],[37,-75]],[[13059,2034],[-37,-75]],[[12947,2260],[75,0]],[[13022,2260],[37,-75]],[[13059,2185],[-37,-76]],[[12947,2411],[75,0]],[[13022,2411],[37,-76]],[[13059,2335],[-37,-75]],[[12947,2561],[75,0]],[[13022,2561],[37,-75]],[[13059,2486],[-37,-75]],[[12947,2712],[75,0]],[[13022,2712],[37,-75]],[[13059,2637],[-37,-76]],[[12947,2863],[75,0]],[[13022,2863],[37,-76]],[[13059,2787],[-37,-75]],[[12947,3013],[75,0]],[[13022,3013],[37,-75]],[[13059,2938],[-37,-75]],[[12947,3164],[75,0]],[[13022,3164],[37,-75]],[[13059,3089],[-37,-76]],[[12947,3315],[75,0],[37,-75],[-37,-76]],[[13059,1883],[75,0]],[[13134,1883],[37,-75]],[[13171,1808],[-37,-75],[-75,0]],[[13059,2034],[75,0]],[[13134,2034],[37,-75]],[[13171,1959],[-37,-76]],[[13059,2185],[75,0]],[[13134,2185],[37,-76]],[[13171,2109],[-37,-75]],[[13059,2335],[75,0]],[[13134,2335],[37,-75]],[[13171,2260],[-37,-75]],[[13059,2486],[75,0]],[[13134,2486],[37,-75]],[[13171,2411],[-37,-76]],[[13059,2637],[75,0]],[[13134,2637],[37,-76]],[[13171,2561],[-37,-75]],[[13059,2787],[75,0]],[[13134,2787],[37,-75]],[[13171,2712],[-37,-75]],[[13059,2938],[75,0]],[[13134,2938],[37,-75]],[[13171,2863],[-37,-76]],[[13059,3089],[75,0],[37,-76]],[[13171,3013],[-37,-75]],[[13171,1959],[75,0]],[[13246,1959],[37,-76]],[[13283,1883],[-37,-75],[-75,0]],[[13171,2109],[75,0]],[[13246,2109],[37,-75]],[[13283,2034],[-37,-75]],[[13171,2260],[75,0]],[[13246,2260],[37,-75]],[[13283,2185],[-37,-76]],[[13171,2411],[75,0]],[[13246,2411],[37,-76]],[[13283,2335],[-37,-75]],[[13171,2561],[75,0]],[[13246,2561],[37,-75]],[[13283,2486],[-37,-75]],[[13171,2712],[75,0]],[[13246,2712],[37,-75]],[[13283,2637],[-37,-76]],[[13171,2863],[75,0]],[[13246,2863],[37,-76]],[[13283,2787],[-37,-75]],[[13171,3013],[75,0],[37,-75],[-37,-75]],[[13283,2034],[75,0]],[[13358,2034],[38,-75]],[[13396,1959],[-38,-76],[-75,0]],[[13283,2185],[75,0]],[[13358,2185],[38,-76]],[[13396,2109],[-38,-75]],[[13283,2335],[75,0]],[[13358,2335],[38,-75]],[[13396,2260],[-38,-75]],[[13283,2486],[75,0]],[[13358,2486],[38,-75]],[[13396,2411],[-38,-76]],[[13283,2637],[75,0]],[[13358,2637],[38,-76]],[[13396,2561],[-38,-75]],[[13283,2787],[75,0],[38,-75]],[[13396,2712],[-38,-75]],[[13396,2109],[75,0]],[[13471,2109],[37,-75]],[[13508,2034],[-37,-75],[-75,0]],[[13396,2260],[75,0]],[[13471,2260],[37,-75]],[[13508,2185],[-37,-76]],[[13396,2411],[75,0]],[[13471,2411],[37,-76]],[[13508,2335],[-37,-75]],[[13396,2561],[75,0]],[[13471,2561],[37,-75]],[[13508,2486],[-37,-75]],[[13396,2712],[75,0],[37,-75]],[[13508,2637],[-37,-76]],[[13508,2185],[75,0]],[[13583,2185],[37,-76]],[[13620,2109],[-37,-75],[-75,0]],[[13508,2335],[75,0]],[[13583,2335],[37,-75]],[[13620,2260],[-37,-75]],[[13508,2486],[75,0]],[[13583,2486],[37,-75]],[[13620,2411],[-37,-76]],[[13508,2637],[75,0],[37,-76],[-37,-75]],[[13620,2260],[75,0]],[[13695,2260],[37,-75]],[[13732,2185],[-37,-76],[-75,0]],[[13620,2411],[75,0]],[[13695,2411],[37,-76]],[[13732,2335],[-37,-75]],[[13732,2335],[75,0]],[[13807,2335],[38,-75]],[[13845,2260],[-38,-75],[-75,0]],[[13695,2411],[37,75],[75,0],[38,-75]],[[13845,2411],[-38,-76]],[[13845,2411],[75,0],[37,-76],[-37,-75],[-75,0]]],"objects":{"ky-wells":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[2,-1]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3,4]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4,5]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[6,7,8,9]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-7,10]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[11,12]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-9,13,14,15]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-12,16,17,18,19]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[20,21]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[22,23,24,-15]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-24,25]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[26,27]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-19,28,29,30]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[31,32,33,34,-29,-18]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[35,36,-33,37]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[38,39,40,-21]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-40,41]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-27,42,43,44]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-35,45,46,47,48,-30]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-37,49,50,51,-46,-34]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[52,53,-50,-36]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[54,55]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-44,56]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":1,"d&a":3}},{"arcs":[[-48,57,58,59]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-52,60,61,62,-58,-47]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-54,63,64,-61,-51]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[65,66,67]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[68,-66,69]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-55,70]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-63,71,72,73,-59]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-65,74,75,76,-72,-62]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-69,77,-67]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[78]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-77,79,80,81,82,-73]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[83,84,-80,-76]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[85,86]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-82,87,88,89]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-85,90,91,92,-88,-81]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[93]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[94,95,96,-86]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[97,98,99,-96,100]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[101,-98,102]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-93,103,104,105,-89]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[106,107,108,109,-104,-92]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[110,-108,111]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-102,112,113,114,-99]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-110,115,116,-105]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-111,117,-116,-109]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-114,118,119,120]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[121]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[122,123]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[124,125,126,-120]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[127]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[128]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[129,130,131]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[132]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[133,-123]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[134,135,136,-126]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-131,137,138,139]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[140,141,142,-138,-130]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-136,143,144,145]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[146,147,148]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[149,150,-147,151]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-143,152,153,154,-139]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[155,156,157,158,-153,-142]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[159,160,-157,161]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-145,162,163,164]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-151,165,166,167,-148]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[168,169,170,-166,-150]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":4}},{"arcs":[[-159,171,172,173,-154]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[174,175,176,-160]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[177,178,179,-164]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[180]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-171,181,182,183,184,-167]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":10}},{"arcs":[[185,-182,-170]],"type":"Polygon","properties":{"wells":5,"gas":0,"oil":null,"d&a":5}},{"arcs":[[186,187,188,-173]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[189,190,191,-176]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":2}},{"arcs":[[192,193,194,-179]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[195,196,197,198]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-184,199,200,201,-196,202]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":8}},{"arcs":[[203,204,205]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[206,207,208,-204,209]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":1,"d&a":null}},{"arcs":[[210,211,-207,212]],"type":"Polygon","properties":{"wells":16,"gas":null,"oil":3,"d&a":9}},{"arcs":[[213,214,215,-188]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[216,-191]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[217,218,219,220,-194]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":1}},{"arcs":[[221,222,223,-219,224]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-198,225,226,227,-222,228]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-202,229,230,231,-226,-197]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[232,233,234,235,-230,-201]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":null,"d&a":2}},{"arcs":[[236,237,-234,238]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-209,239,240,241,-205]],"type":"Polygon","properties":{"wells":15,"gas":3,"oil":1,"d&a":6}},{"arcs":[[-212,242,243,244,-240,-208]],"type":"Polygon","properties":{"wells":36,"gas":null,"oil":5,"d&a":25}},{"arcs":[[245,246,247,-243,-211]],"type":"Polygon","properties":{"wells":25,"gas":null,"oil":6,"d&a":17}},{"arcs":[[248]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[249,-215]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[250,251]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-224,252,253,254,255,-220]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":1}},{"arcs":[[-228,256,257,258,-253,-223]],"type":"Polygon","properties":{"wells":2,"gas":0,"oil":null,"d&a":2}},{"arcs":[[-232,259,260,261,-257,-227]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-236,262,263,264,-260,-231]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":1,"d&a":5}},{"arcs":[[-238,265,266,267,-263,-235]],"type":"Polygon","properties":{"wells":4,"gas":0,"oil":null,"d&a":3}},{"arcs":[[268,269,270,-266,-237]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-245,271,272,273,274,-241]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-248,275,276,277,-272,-244]],"type":"Polygon","properties":{"wells":255,"gas":1,"oil":105,"d&a":107}},{"arcs":[[278,279,280,-276,-247]],"type":"Polygon","properties":{"wells":99,"gas":null,"oil":42,"d&a":46}},{"arcs":[[-251,281,282,283]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[284]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-255,285,286,287,288]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-259,289,290,291,-286,-254]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":0,"d&a":3}},{"arcs":[[-262,292,293,294,-290,-258]],"type":"Polygon","properties":{"wells":34,"gas":8,"oil":0,"d&a":16}},{"arcs":[[-265,295,296,297,-293,-261]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":0,"d&a":10}},{"arcs":[[-268,298,299,300,-296,-264]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-271,301,302,303,-299,-267]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[304,305,306,307,-302,-270]],"type":"Polygon","properties":{"wells":25,"gas":null,"oil":2,"d&a":18}},{"arcs":[[-274,308,309,310,-306,311]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-278,312,313,314,-309,-273]],"type":"Polygon","properties":{"wells":366,"gas":null,"oil":195,"d&a":99}},{"arcs":[[-281,315,316,317,-313,-277]],"type":"Polygon","properties":{"wells":165,"gas":null,"oil":67,"d&a":75}},{"arcs":[[318,319,320,321,-316,-280]],"type":"Polygon","properties":{"wells":39,"gas":null,"oil":26,"d&a":4}},{"arcs":[[322,323,-320,324]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":7,"d&a":6}},{"arcs":[[325]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[326,327,328,-283]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-288,329,330,331]],"type":"Polygon","properties":{"wells":3,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-295,332,333,334,335,-291]],"type":"Polygon","properties":{"wells":93,"gas":18,"oil":10,"d&a":50}},{"arcs":[[-298,336,337,338,-333,-294]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-301,339,340,341,-337,-297]],"type":"Polygon","properties":{"wells":18,"gas":null,"oil":1,"d&a":15}},{"arcs":[[-304,342,343,344,-340,-300]],"type":"Polygon","properties":{"wells":31,"gas":null,"oil":2,"d&a":25}},{"arcs":[[-308,345,346,347,-343,-303]],"type":"Polygon","properties":{"wells":22,"gas":3,"oil":2,"d&a":15}},{"arcs":[[-311,348,349,350,-346,-307]],"type":"Polygon","properties":{"wells":32,"gas":1,"oil":3,"d&a":25}},{"arcs":[[-315,351,352,353,-349,-310]],"type":"Polygon","properties":{"wells":76,"gas":null,"oil":14,"d&a":24}},{"arcs":[[-318,354,355,356,-352,-314]],"type":"Polygon","properties":{"wells":256,"gas":null,"oil":107,"d&a":85}},{"arcs":[[-322,357,358,359,-355,-317]],"type":"Polygon","properties":{"wells":450,"gas":1,"oil":249,"d&a":104}},{"arcs":[[-324,360,361,362,-358,-321]],"type":"Polygon","properties":{"wells":169,"gas":null,"oil":63,"d&a":61}},{"arcs":[[363,364,-361,-323]],"type":"Polygon","properties":{"wells":123,"gas":2,"oil":45,"d&a":59}},{"arcs":[[365,366,367,368]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-328,369,370,371,-366,372]],"type":"Polygon","properties":{"wells":3,"gas":1,"oil":null,"d&a":2}},{"arcs":[[373,374,375,376,377,-331]],"type":"Polygon","properties":{"wells":5,"gas":0,"oil":null,"d&a":5}},{"arcs":[[-335,378,379,380,-375,381]],"type":"Polygon","properties":{"wells":19,"gas":1,"oil":null,"d&a":16}},{"arcs":[[-339,382,383,384,-379,-334]],"type":"Polygon","properties":{"wells":17,"gas":null,"oil":null,"d&a":17}},{"arcs":[[-342,385,386,387,-383,-338]],"type":"Polygon","properties":{"wells":28,"gas":3,"oil":1,"d&a":22}},{"arcs":[[-345,388,389,390,-386,-341]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-348,391,392,393,-389,-344]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":null,"d&a":11}},{"arcs":[[-351,394,395,396,-392,-347]],"type":"Polygon","properties":{"wells":28,"gas":0,"oil":9,"d&a":14}},{"arcs":[[-354,397,398,399,-395,-350]],"type":"Polygon","properties":{"wells":30,"gas":null,"oil":4,"d&a":23}},{"arcs":[[-357,400,401,402,-398,-353]],"type":"Polygon","properties":{"wells":294,"gas":5,"oil":80,"d&a":116}},{"arcs":[[-360,403,404,405,-401,-356]],"type":"Polygon","properties":{"wells":451,"gas":null,"oil":234,"d&a":122}},{"arcs":[[-363,406,407,408,-404,-359]],"type":"Polygon","properties":{"wells":205,"gas":null,"oil":88,"d&a":90}},{"arcs":[[-365,409,410,411,-407,-362]],"type":"Polygon","properties":{"wells":72,"gas":null,"oil":20,"d&a":43}},{"arcs":[[-368,412]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[413,414,415,416,-371]],"type":"Polygon","properties":{"wells":8,"gas":7,"oil":null,"d&a":0}},{"arcs":[[417,418,419]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-377,420,421,422,-418,423]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-381,424,425,426,-421,-376]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-385,427,428,429,-425,-380]],"type":"Polygon","properties":{"wells":47,"gas":3,"oil":null,"d&a":37}},{"arcs":[[-388,430,431,432,-428,-384]],"type":"Polygon","properties":{"wells":43,"gas":6,"oil":0,"d&a":36}},{"arcs":[[-391,433,434,435,-431,-387]],"type":"Polygon","properties":{"wells":59,"gas":3,"oil":16,"d&a":36}},{"arcs":[[-394,436,437,438,-434,-390]],"type":"Polygon","properties":{"wells":29,"gas":2,"oil":4,"d&a":19}},{"arcs":[[-397,439,440,441,-437,-393]],"type":"Polygon","properties":{"wells":77,"gas":null,"oil":17,"d&a":54}},{"arcs":[[-400,442,443,444,-440,-396]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":1,"d&a":6}},{"arcs":[[-403,445,446,447,-443,-399]],"type":"Polygon","properties":{"wells":196,"gas":1,"oil":81,"d&a":78}},{"arcs":[[-406,448,449,450,-446,-402]],"type":"Polygon","properties":{"wells":143,"gas":null,"oil":40,"d&a":77}},{"arcs":[[-409,451,452,453,-449,-405]],"type":"Polygon","properties":{"wells":222,"gas":null,"oil":119,"d&a":84}},{"arcs":[[-412,454,455,456,-452,-408]],"type":"Polygon","properties":{"wells":430,"gas":null,"oil":262,"d&a":118}},{"arcs":[[457,458,-455,-411]],"type":"Polygon","properties":{"wells":23,"gas":null,"oil":17,"d&a":3}},{"arcs":[[-416,459,460]],"type":"Polygon","properties":{"wells":2,"gas":0,"oil":null,"d&a":2}},{"arcs":[[461,462,463,-460,-415]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-423,464,465,466,467,-419]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-427,468,469,470,-465,-422]],"type":"Polygon","properties":{"wells":12,"gas":1,"oil":null,"d&a":11}},{"arcs":[[-430,471,472,473,-469,-426]],"type":"Polygon","properties":{"wells":17,"gas":1,"oil":null,"d&a":16}},{"arcs":[[-433,474,475,476,-472,-429]],"type":"Polygon","properties":{"wells":46,"gas":6,"oil":5,"d&a":28}},{"arcs":[[-436,477,478,479,-475,-432]],"type":"Polygon","properties":{"wells":31,"gas":2,"oil":null,"d&a":28}},{"arcs":[[-439,480,481,482,-478,-435]],"type":"Polygon","properties":{"wells":46,"gas":5,"oil":6,"d&a":27}},{"arcs":[[-442,483,484,485,-481,-438]],"type":"Polygon","properties":{"wells":161,"gas":3,"oil":53,"d&a":82}},{"arcs":[[-445,486,487,488,-484,-441]],"type":"Polygon","properties":{"wells":23,"gas":null,"oil":0,"d&a":23}},{"arcs":[[-448,489,490,491,-487,-444]],"type":"Polygon","properties":{"wells":165,"gas":null,"oil":38,"d&a":52}},{"arcs":[[-451,492,493,494,-490,-447]],"type":"Polygon","properties":{"wells":611,"gas":11,"oil":305,"d&a":120}},{"arcs":[[-454,495,496,497,-493,-450]],"type":"Polygon","properties":{"wells":142,"gas":null,"oil":49,"d&a":79}},{"arcs":[[-457,498,499,500,-496,-453]],"type":"Polygon","properties":{"wells":234,"gas":null,"oil":46,"d&a":145}},{"arcs":[[-459,501,502,503,-499,-456]],"type":"Polygon","properties":{"wells":191,"gas":null,"oil":83,"d&a":64}},{"arcs":[[504,505]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[506,507,508,509,510,-463]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":1,"d&a":1}},{"arcs":[[-467,511,512,513,-508,514]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-471,515,516,517,-512,-466]],"type":"Polygon","properties":{"wells":28,"gas":3,"oil":3,"d&a":19}},{"arcs":[[-474,518,519,520,-516,-470]],"type":"Polygon","properties":{"wells":12,"gas":0,"oil":null,"d&a":12}},{"arcs":[[-477,521,522,523,-519,-473]],"type":"Polygon","properties":{"wells":42,"gas":3,"oil":4,"d&a":29}},{"arcs":[[-480,524,525,526,-522,-476]],"type":"Polygon","properties":{"wells":39,"gas":null,"oil":0,"d&a":34}},{"arcs":[[-483,527,528,529,-525,-479]],"type":"Polygon","properties":{"wells":38,"gas":4,"oil":1,"d&a":28}},{"arcs":[[-486,530,531,532,-528,-482]],"type":"Polygon","properties":{"wells":47,"gas":0,"oil":14,"d&a":27}},{"arcs":[[-489,533,534,535,-531,-485]],"type":"Polygon","properties":{"wells":146,"gas":2,"oil":54,"d&a":75}},{"arcs":[[-492,536,537,538,-534,-488]],"type":"Polygon","properties":{"wells":72,"gas":null,"oil":18,"d&a":44}},{"arcs":[[-495,539,540,541,-537,-491]],"type":"Polygon","properties":{"wells":592,"gas":1,"oil":263,"d&a":162}},{"arcs":[[-498,542,543,544,-540,-494]],"type":"Polygon","properties":{"wells":508,"gas":18,"oil":172,"d&a":178}},{"arcs":[[-501,545,546,547,-543,-497]],"type":"Polygon","properties":{"wells":223,"gas":1,"oil":68,"d&a":106}},{"arcs":[[-504,548,549,550,-546,-500]],"type":"Polygon","properties":{"wells":59,"gas":null,"oil":23,"d&a":27}},{"arcs":[[551,552,553,-549,-503]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":0,"d&a":5}},{"arcs":[[-505,554]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[555,556,557]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-510,558,559,560,-556,561]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-514,562,563,564,-559,-509]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-518,565,566,567,-563,-513]],"type":"Polygon","properties":{"wells":20,"gas":0,"oil":2,"d&a":16}},{"arcs":[[-521,568,569,570,-566,-517]],"type":"Polygon","properties":{"wells":27,"gas":2,"oil":2,"d&a":19}},{"arcs":[[-524,571,572,573,-569,-520]],"type":"Polygon","properties":{"wells":53,"gas":18,"oil":8,"d&a":25}},{"arcs":[[-527,574,575,576,-572,-523]],"type":"Polygon","properties":{"wells":243,"gas":9,"oil":116,"d&a":79}},{"arcs":[[-530,577,578,579,-575,-526]],"type":"Polygon","properties":{"wells":37,"gas":1,"oil":2,"d&a":30}},{"arcs":[[-533,580,581,582,-578,-529]],"type":"Polygon","properties":{"wells":97,"gas":12,"oil":15,"d&a":56}},{"arcs":[[-536,583,584,585,-581,-532]],"type":"Polygon","properties":{"wells":125,"gas":0,"oil":50,"d&a":55}},{"arcs":[[-539,586,587,588,-584,-535]],"type":"Polygon","properties":{"wells":46,"gas":null,"oil":9,"d&a":31}},{"arcs":[[-542,589,590,591,-587,-538]],"type":"Polygon","properties":{"wells":481,"gas":16,"oil":234,"d&a":157}},{"arcs":[[-545,592,593,594,-590,-541]],"type":"Polygon","properties":{"wells":645,"gas":1,"oil":328,"d&a":136}},{"arcs":[[-548,595,596,597,-593,-544]],"type":"Polygon","properties":{"wells":162,"gas":null,"oil":47,"d&a":93}},{"arcs":[[-551,598,599,600,-596,-547]],"type":"Polygon","properties":{"wells":107,"gas":null,"oil":29,"d&a":48}},{"arcs":[[-554,601,602,603,-599,-550]],"type":"Polygon","properties":{"wells":48,"gas":null,"oil":23,"d&a":20}},{"arcs":[[604,605,-602,-553]],"type":"Polygon","properties":{"wells":36,"gas":null,"oil":null,"d&a":32}},{"arcs":[[-561,606,607,608,-557]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-565,609,610,611,-607,-560]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-568,612,613,614,-610,-564]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":9}},{"arcs":[[-571,615,616,617,-613,-567]],"type":"Polygon","properties":{"wells":18,"gas":2,"oil":0,"d&a":16}},{"arcs":[[-574,618,619,620,-616,-570]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":null,"d&a":11}},{"arcs":[[-577,621,622,623,-619,-573]],"type":"Polygon","properties":{"wells":84,"gas":29,"oil":11,"d&a":32}},{"arcs":[[-580,624,625,626,-622,-576]],"type":"Polygon","properties":{"wells":156,"gas":10,"oil":62,"d&a":59}},{"arcs":[[-583,627,628,629,-625,-579]],"type":"Polygon","properties":{"wells":34,"gas":0,"oil":6,"d&a":25}},{"arcs":[[-586,630,631,632,-628,-582]],"type":"Polygon","properties":{"wells":123,"gas":0,"oil":46,"d&a":58}},{"arcs":[[-589,633,634,635,-631,-585]],"type":"Polygon","properties":{"wells":119,"gas":1,"oil":40,"d&a":65}},{"arcs":[[-592,636,637,638,-634,-588]],"type":"Polygon","properties":{"wells":65,"gas":8,"oil":8,"d&a":41}},{"arcs":[[-595,639,640,641,-637,-591]],"type":"Polygon","properties":{"wells":496,"gas":31,"oil":185,"d&a":173}},{"arcs":[[-598,642,643,644,-640,-594]],"type":"Polygon","properties":{"wells":259,"gas":null,"oil":87,"d&a":124}},{"arcs":[[-601,645,646,647,-643,-597]],"type":"Polygon","properties":{"wells":157,"gas":null,"oil":34,"d&a":88}},{"arcs":[[-604,648,649,650,-646,-600]],"type":"Polygon","properties":{"wells":59,"gas":null,"oil":8,"d&a":40}},{"arcs":[[-606,651,652,653,-649,-603]],"type":"Polygon","properties":{"wells":32,"gas":null,"oil":8,"d&a":21}},{"arcs":[[-612,654,655,656,657,-608]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-615,658,659,660,-655,-611]],"type":"Polygon","properties":{"wells":16,"gas":null,"oil":3,"d&a":6}},{"arcs":[[-618,661,662,663,-659,-614]],"type":"Polygon","properties":{"wells":56,"gas":10,"oil":null,"d&a":32}},{"arcs":[[-621,664,665,666,-662,-617]],"type":"Polygon","properties":{"wells":20,"gas":null,"oil":1,"d&a":19}},{"arcs":[[-624,667,668,669,-665,-620]],"type":"Polygon","properties":{"wells":112,"gas":9,"oil":46,"d&a":34}},{"arcs":[[-627,670,671,672,-668,-623]],"type":"Polygon","properties":{"wells":149,"gas":28,"oil":39,"d&a":51}},{"arcs":[[-630,673,674,675,-671,-626]],"type":"Polygon","properties":{"wells":16,"gas":2,"oil":0,"d&a":12}},{"arcs":[[-633,676,677,678,-674,-629]],"type":"Polygon","properties":{"wells":176,"gas":16,"oil":62,"d&a":68}},{"arcs":[[-636,679,680,681,-677,-632]],"type":"Polygon","properties":{"wells":270,"gas":5,"oil":140,"d&a":81}},{"arcs":[[-639,682,683,684,-680,-635]],"type":"Polygon","properties":{"wells":89,"gas":0,"oil":19,"d&a":53}},{"arcs":[[-642,685,686,687,-683,-638]],"type":"Polygon","properties":{"wells":88,"gas":0,"oil":29,"d&a":46}},{"arcs":[[-645,688,689,690,-686,-641]],"type":"Polygon","properties":{"wells":375,"gas":3,"oil":155,"d&a":111}},{"arcs":[[-648,691,692,693,-689,-644]],"type":"Polygon","properties":{"wells":770,"gas":2,"oil":404,"d&a":129}},{"arcs":[[-651,694,695,696,-692,-647]],"type":"Polygon","properties":{"wells":130,"gas":null,"oil":45,"d&a":53}},{"arcs":[[-654,697,698,699,-695,-650]],"type":"Polygon","properties":{"wells":127,"gas":null,"oil":36,"d&a":76}},{"arcs":[[700,701,-698,-653]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":0,"d&a":8}},{"arcs":[[702,703,704]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":0,"d&a":2}},{"arcs":[[-657,705,706,707,708]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-661,709,710,711,-706,-656]],"type":"Polygon","properties":{"wells":26,"gas":0,"oil":null,"d&a":13}},{"arcs":[[-664,712,713,714,-710,-660]],"type":"Polygon","properties":{"wells":137,"gas":3,"oil":23,"d&a":64}},{"arcs":[[-667,715,716,717,-713,-663]],"type":"Polygon","properties":{"wells":154,"gas":23,"oil":27,"d&a":56}},{"arcs":[[-670,718,719,720,-716,-666]],"type":"Polygon","properties":{"wells":16,"gas":3,"oil":null,"d&a":11}},{"arcs":[[-673,721,722,723,-719,-669]],"type":"Polygon","properties":{"wells":146,"gas":22,"oil":27,"d&a":70}},{"arcs":[[-676,724,725,726,-722,-672]],"type":"Polygon","properties":{"wells":65,"gas":18,"oil":1,"d&a":32}},{"arcs":[[-679,727,728,729,-725,-675]],"type":"Polygon","properties":{"wells":59,"gas":9,"oil":11,"d&a":36}},{"arcs":[[-682,730,731,732,-728,-678]],"type":"Polygon","properties":{"wells":274,"gas":52,"oil":63,"d&a":105}},{"arcs":[[-685,733,734,735,-731,-681]],"type":"Polygon","properties":{"wells":97,"gas":5,"oil":26,"d&a":49}},{"arcs":[[-688,736,737,738,-734,-684]],"type":"Polygon","properties":{"wells":107,"gas":null,"oil":19,"d&a":63}},{"arcs":[[-691,739,740,741,-737,-687]],"type":"Polygon","properties":{"wells":251,"gas":null,"oil":94,"d&a":116}},{"arcs":[[-694,742,743,744,-740,-690]],"type":"Polygon","properties":{"wells":328,"gas":3,"oil":145,"d&a":104}},{"arcs":[[-697,745,746,747,-743,-693]],"type":"Polygon","properties":{"wells":144,"gas":null,"oil":37,"d&a":72}},{"arcs":[[-700,748,749,750,-746,-696]],"type":"Polygon","properties":{"wells":216,"gas":null,"oil":83,"d&a":103}},{"arcs":[[-702,751,752,753,-749,-699]],"type":"Polygon","properties":{"wells":116,"gas":null,"oil":27,"d&a":69}},{"arcs":[[-704,754,755,756,757]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":1}},{"arcs":[[758,759,760,761,-755,-703]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":1,"d&a":5}},{"arcs":[[-708,762,763,764,-760,765]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-712,766,767,768,-763,-707]],"type":"Polygon","properties":{"wells":6,"gas":0,"oil":0,"d&a":6}},{"arcs":[[-715,769,770,771,-767,-711]],"type":"Polygon","properties":{"wells":32,"gas":1,"oil":null,"d&a":23}},{"arcs":[[-718,772,773,774,-770,-714]],"type":"Polygon","properties":{"wells":304,"gas":20,"oil":95,"d&a":79}},{"arcs":[[-721,775,776,777,-773,-717]],"type":"Polygon","properties":{"wells":685,"gas":31,"oil":269,"d&a":205}},{"arcs":[[-724,778,779,780,-776,-720]],"type":"Polygon","properties":{"wells":55,"gas":3,"oil":2,"d&a":38}},{"arcs":[[-727,781,782,783,-779,-723]],"type":"Polygon","properties":{"wells":175,"gas":18,"oil":63,"d&a":56}},{"arcs":[[-730,784,785,786,-782,-726]],"type":"Polygon","properties":{"wells":45,"gas":11,"oil":1,"d&a":9}},{"arcs":[[-733,787,788,789,-785,-729]],"type":"Polygon","properties":{"wells":20,"gas":0,"oil":1,"d&a":11}},{"arcs":[[-736,790,791,792,-788,-732]],"type":"Polygon","properties":{"wells":152,"gas":10,"oil":58,"d&a":68}},{"arcs":[[-739,793,794,795,-791,-735]],"type":"Polygon","properties":{"wells":88,"gas":null,"oil":28,"d&a":43}},{"arcs":[[-742,796,797,798,-794,-738]],"type":"Polygon","properties":{"wells":181,"gas":null,"oil":46,"d&a":92}},{"arcs":[[-745,799,800,801,-797,-741]],"type":"Polygon","properties":{"wells":336,"gas":null,"oil":134,"d&a":127}},{"arcs":[[-748,802,803,804,-800,-744]],"type":"Polygon","properties":{"wells":240,"gas":null,"oil":107,"d&a":76}},{"arcs":[[-751,805,806,807,-803,-747]],"type":"Polygon","properties":{"wells":209,"gas":null,"oil":78,"d&a":86}},{"arcs":[[-754,808,809,810,-806,-750]],"type":"Polygon","properties":{"wells":224,"gas":null,"oil":75,"d&a":124}},{"arcs":[[811,812,-809,-753]],"type":"Polygon","properties":{"wells":19,"gas":null,"oil":5,"d&a":10}},{"arcs":[[-757,813,814,815]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-762,816,817,818,-814,-756]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-765,819,820,821,-817,-761]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-769,822,823,824,-820,-764]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":9}},{"arcs":[[-772,825,826,827,-823,-768]],"type":"Polygon","properties":{"wells":106,"gas":3,"oil":23,"d&a":42}},{"arcs":[[-775,828,829,830,-826,-771]],"type":"Polygon","properties":{"wells":136,"gas":2,"oil":26,"d&a":63}},{"arcs":[[-778,831,832,833,-829,-774]],"type":"Polygon","properties":{"wells":699,"gas":51,"oil":251,"d&a":178}},{"arcs":[[-781,834,835,836,-832,-777]],"type":"Polygon","properties":{"wells":365,"gas":3,"oil":155,"d&a":108}},{"arcs":[[-784,837,838,839,-835,-780]],"type":"Polygon","properties":{"wells":212,"gas":20,"oil":68,"d&a":70}},{"arcs":[[-787,840,841,842,-838,-783]],"type":"Polygon","properties":{"wells":169,"gas":31,"oil":9,"d&a":25}},{"arcs":[[-790,843,844,845,-841,-786]],"type":"Polygon","properties":{"wells":44,"gas":null,"oil":10,"d&a":19}},{"arcs":[[-793,846,847,848,-844,-789]],"type":"Polygon","properties":{"wells":64,"gas":5,"oil":14,"d&a":38}},{"arcs":[[-796,849,850,851,-847,-792]],"type":"Polygon","properties":{"wells":123,"gas":2,"oil":42,"d&a":62}},{"arcs":[[-799,852,853,854,-850,-795]],"type":"Polygon","properties":{"wells":73,"gas":null,"oil":14,"d&a":45}},{"arcs":[[-802,855,856,857,-853,-798]],"type":"Polygon","properties":{"wells":253,"gas":0,"oil":109,"d&a":74}},{"arcs":[[-805,858,859,860,-856,-801]],"type":"Polygon","properties":{"wells":516,"gas":null,"oil":210,"d&a":152}},{"arcs":[[-808,861,862,863,-859,-804]],"type":"Polygon","properties":{"wells":437,"gas":4,"oil":193,"d&a":142}},{"arcs":[[-811,864,865,866,-862,-807]],"type":"Polygon","properties":{"wells":197,"gas":2,"oil":75,"d&a":91}},{"arcs":[[-813,867,868,-865,-810]],"type":"Polygon","properties":{"wells":97,"gas":null,"oil":35,"d&a":46}},{"arcs":[[-819,869,870,871,872,-815]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-822,873,874,875,-870,-818]],"type":"Polygon","properties":{"wells":6,"gas":1,"oil":null,"d&a":4}},{"arcs":[[-825,876,877,878,-874,-821]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-828,879,880,881,-877,-824]],"type":"Polygon","properties":{"wells":25,"gas":3,"oil":2,"d&a":8}},{"arcs":[[-831,882,883,884,-880,-827]],"type":"Polygon","properties":{"wells":41,"gas":null,"oil":2,"d&a":32}},{"arcs":[[-834,885,886,887,-883,-830]],"type":"Polygon","properties":{"wells":206,"gas":9,"oil":38,"d&a":117}},{"arcs":[[-837,888,889,890,-886,-833]],"type":"Polygon","properties":{"wells":634,"gas":16,"oil":240,"d&a":221}},{"arcs":[[-840,891,892,893,-889,-836]],"type":"Polygon","properties":{"wells":201,"gas":8,"oil":58,"d&a":77}},{"arcs":[[-843,894,895,896,-892,-839]],"type":"Polygon","properties":{"wells":195,"gas":19,"oil":84,"d&a":50}},{"arcs":[[-846,897,898,899,-895,-842]],"type":"Polygon","properties":{"wells":97,"gas":34,"oil":0,"d&a":8}},{"arcs":[[-849,900,901,902,-898,-845]],"type":"Polygon","properties":{"wells":29,"gas":6,"oil":1,"d&a":14}},{"arcs":[[-852,903,904,905,-901,-848]],"type":"Polygon","properties":{"wells":79,"gas":7,"oil":3,"d&a":67}},{"arcs":[[-855,906,907,908,-904,-851]],"type":"Polygon","properties":{"wells":248,"gas":11,"oil":110,"d&a":84}},{"arcs":[[-858,909,910,911,-907,-854]],"type":"Polygon","properties":{"wells":358,"gas":2,"oil":178,"d&a":100}},{"arcs":[[-861,912,913,914,-910,-857]],"type":"Polygon","properties":{"wells":46,"gas":null,"oil":5,"d&a":31}},{"arcs":[[-864,915,916,917,-913,-860]],"type":"Polygon","properties":{"wells":134,"gas":null,"oil":45,"d&a":64}},{"arcs":[[-867,918,919,920,-916,-863]],"type":"Polygon","properties":{"wells":645,"gas":23,"oil":340,"d&a":170}},{"arcs":[[-869,921,922,-919,-866]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":0,"d&a":7}},{"arcs":[[-872,923,924,925,926]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-876,927,928,929,-924,-871]],"type":"Polygon","properties":{"wells":65,"gas":null,"oil":19,"d&a":32}},{"arcs":[[-879,930,931,932,-928,-875]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":9}},{"arcs":[[-882,933,934,935,-931,-878]],"type":"Polygon","properties":{"wells":54,"gas":19,"oil":null,"d&a":7}},{"arcs":[[-885,936,937,938,-934,-881]],"type":"Polygon","properties":{"wells":18,"gas":0,"oil":null,"d&a":15}},{"arcs":[[-888,939,940,941,-937,-884]],"type":"Polygon","properties":{"wells":93,"gas":null,"oil":9,"d&a":67}},{"arcs":[[-891,942,943,944,-940,-887]],"type":"Polygon","properties":{"wells":256,"gas":16,"oil":50,"d&a":144}},{"arcs":[[-894,945,946,947,-943,-890]],"type":"Polygon","properties":{"wells":378,"gas":8,"oil":112,"d&a":175}},{"arcs":[[-897,948,949,950,-946,-893]],"type":"Polygon","properties":{"wells":107,"gas":10,"oil":14,"d&a":35}},{"arcs":[[-900,951,952,953,-949,-896]],"type":"Polygon","properties":{"wells":17,"gas":4,"oil":null,"d&a":6}},{"arcs":[[-903,954,955,956,-952,-899]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-906,957,958,959,-955,-902]],"type":"Polygon","properties":{"wells":140,"gas":2,"oil":64,"d&a":61}},{"arcs":[[-909,960,961,962,-958,-905]],"type":"Polygon","properties":{"wells":260,"gas":10,"oil":117,"d&a":107}},{"arcs":[[-912,963,964,965,-961,-908]],"type":"Polygon","properties":{"wells":184,"gas":0,"oil":53,"d&a":94}},{"arcs":[[-915,966,967,968,-964,-911]],"type":"Polygon","properties":{"wells":408,"gas":2,"oil":157,"d&a":153}},{"arcs":[[-918,969,970,971,-967,-914]],"type":"Polygon","properties":{"wells":31,"gas":0,"oil":1,"d&a":23}},{"arcs":[[-921,972,973,974,-970,-917]],"type":"Polygon","properties":{"wells":42,"gas":5,"oil":3,"d&a":24}},{"arcs":[[-923,975,976,-973,-920]],"type":"Polygon","properties":{"wells":218,"gas":3,"oil":130,"d&a":54}},{"arcs":[[-926,977,978,979]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-930,980,981,982,-978,-925]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-933,983,984,985,-981,-929]],"type":"Polygon","properties":{"wells":68,"gas":null,"oil":19,"d&a":33}},{"arcs":[[-936,986,987,988,-984,-932]],"type":"Polygon","properties":{"wells":38,"gas":14,"oil":1,"d&a":12}},{"arcs":[[-939,989,990,991,-987,-935]],"type":"Polygon","properties":{"wells":12,"gas":2,"oil":null,"d&a":7}},{"arcs":[[-942,992,993,994,-990,-938]],"type":"Polygon","properties":{"wells":21,"gas":0,"oil":null,"d&a":20}},{"arcs":[[-945,995,996,997,-993,-941]],"type":"Polygon","properties":{"wells":219,"gas":16,"oil":63,"d&a":87}},{"arcs":[[-948,998,999,1000,-996,-944]],"type":"Polygon","properties":{"wells":278,"gas":31,"oil":47,"d&a":144}},{"arcs":[[-951,1001,1002,1003,-999,-947]],"type":"Polygon","properties":{"wells":155,"gas":1,"oil":45,"d&a":76}},{"arcs":[[-954,1004,1005,1006,-1002,-950]],"type":"Polygon","properties":{"wells":103,"gas":3,"oil":40,"d&a":28}},{"arcs":[[-957,1007,1008,1009,-1005,-953]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-960,1010,1011,1012,-1008,-956]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-963,1013,1014,1015,-1011,-959]],"type":"Polygon","properties":{"wells":216,"gas":3,"oil":95,"d&a":79}},{"arcs":[[-966,1016,1017,1018,-1014,-962]],"type":"Polygon","properties":{"wells":499,"gas":6,"oil":173,"d&a":179}},{"arcs":[[-969,1019,1020,1021,-1017,-965]],"type":"Polygon","properties":{"wells":315,"gas":1,"oil":124,"d&a":94}},{"arcs":[[-972,1022,1023,1024,-1020,-968]],"type":"Polygon","properties":{"wells":211,"gas":null,"oil":55,"d&a":105}},{"arcs":[[-975,1025,1026,1027,-1023,-971]],"type":"Polygon","properties":{"wells":34,"gas":3,"oil":1,"d&a":25}},{"arcs":[[-977,1028,1029,1030,-1026,-974]],"type":"Polygon","properties":{"wells":11,"gas":2,"oil":2,"d&a":6}},{"arcs":[[-983,1031,1032,1033,1034,-979]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":0}},{"arcs":[[-986,1035,1036,1037,-1032,-982]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":1,"d&a":13}},{"arcs":[[-989,1038,1039,1040,-1036,-985]],"type":"Polygon","properties":{"wells":15,"gas":null,"oil":2,"d&a":10}},{"arcs":[[-992,1041,1042,1043,-1039,-988]],"type":"Polygon","properties":{"wells":13,"gas":6,"oil":null,"d&a":5}},{"arcs":[[-995,1044,1045,1046,-1042,-991]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-998,1047,1048,1049,-1045,-994]],"type":"Polygon","properties":{"wells":23,"gas":5,"oil":null,"d&a":15}},{"arcs":[[-1001,1050,1051,1052,-1048,-997]],"type":"Polygon","properties":{"wells":185,"gas":10,"oil":44,"d&a":94}},{"arcs":[[-1004,1053,1054,1055,-1051,-1000]],"type":"Polygon","properties":{"wells":121,"gas":17,"oil":19,"d&a":56}},{"arcs":[[-1007,1056,1057,1058,-1054,-1003]],"type":"Polygon","properties":{"wells":104,"gas":22,"oil":26,"d&a":27}},{"arcs":[[-1010,1059,1060,1061,-1057,-1006]],"type":"Polygon","properties":{"wells":11,"gas":1,"oil":0,"d&a":7}},{"arcs":[[-1013,1062,1063,1064,-1060,-1009]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1016,1065,1066,1067,-1063,-1012]],"type":"Polygon","properties":{"wells":22,"gas":null,"oil":1,"d&a":20}},{"arcs":[[-1019,1068,1069,1070,-1066,-1015]],"type":"Polygon","properties":{"wells":144,"gas":9,"oil":27,"d&a":95}},{"arcs":[[-1022,1071,1072,1073,-1069,-1018]],"type":"Polygon","properties":{"wells":486,"gas":2,"oil":192,"d&a":184}},{"arcs":[[-1025,1074,1075,1076,-1072,-1021]],"type":"Polygon","properties":{"wells":212,"gas":0,"oil":71,"d&a":86}},{"arcs":[[-1028,1077,1078,1079,-1075,-1024]],"type":"Polygon","properties":{"wells":32,"gas":0,"oil":1,"d&a":24}},{"arcs":[[-1031,1080,1081,1082,-1078,-1027]],"type":"Polygon","properties":{"wells":34,"gas":null,"oil":1,"d&a":28}},{"arcs":[[1083,1084,1085,1086,-1081,-1030]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":0,"d&a":7}},{"arcs":[[1087,1088,-1085,1089]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":0,"d&a":4}},{"arcs":[[-1034,1090,1091,1092]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1038,1093,1094,1095,-1091,-1033]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1041,1096,1097,1098,-1094,-1037]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":1,"d&a":6}},{"arcs":[[-1044,1099,1100,1101,-1097,-1040]],"type":"Polygon","properties":{"wells":13,"gas":null,"oil":3,"d&a":10}},{"arcs":[[-1047,1102,1103,1104,-1100,-1043]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":3}},{"arcs":[[-1050,1105,1106,1107,-1103,-1046]],"type":"Polygon","properties":{"wells":30,"gas":1,"oil":1,"d&a":18}},{"arcs":[[-1053,1108,1109,1110,-1106,-1049]],"type":"Polygon","properties":{"wells":79,"gas":0,"oil":17,"d&a":48}},{"arcs":[[-1056,1111,1112,1113,-1109,-1052]],"type":"Polygon","properties":{"wells":63,"gas":3,"oil":4,"d&a":39}},{"arcs":[[-1059,1114,1115,1116,-1112,-1055]],"type":"Polygon","properties":{"wells":98,"gas":7,"oil":34,"d&a":27}},{"arcs":[[-1062,1117,1118,1119,-1115,-1058]],"type":"Polygon","properties":{"wells":13,"gas":5,"oil":1,"d&a":6}},{"arcs":[[-1065,1120,1121,1122,-1118,-1061]],"type":"Polygon","properties":{"wells":21,"gas":null,"oil":2,"d&a":15}},{"arcs":[[-1068,1123,1124,1125,-1121,-1064]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1071,1126,1127,1128,-1124,-1067]],"type":"Polygon","properties":{"wells":30,"gas":5,"oil":3,"d&a":20}},{"arcs":[[-1074,1129,1130,1131,-1127,-1070]],"type":"Polygon","properties":{"wells":238,"gas":null,"oil":70,"d&a":108}},{"arcs":[[-1077,1132,1133,1134,-1130,-1073]],"type":"Polygon","properties":{"wells":314,"gas":5,"oil":74,"d&a":158}},{"arcs":[[-1080,1135,1136,1137,-1133,-1076]],"type":"Polygon","properties":{"wells":276,"gas":7,"oil":71,"d&a":132}},{"arcs":[[-1083,1138,1139,1140,-1136,-1079]],"type":"Polygon","properties":{"wells":32,"gas":null,"oil":4,"d&a":20}},{"arcs":[[-1087,1141,1142,1143,-1139,-1082]],"type":"Polygon","properties":{"wells":27,"gas":null,"oil":4,"d&a":19}},{"arcs":[[-1089,1144,1145,1146,-1142,-1086]],"type":"Polygon","properties":{"wells":220,"gas":null,"oil":87,"d&a":102}},{"arcs":[[1147,1148,-1145,-1088]],"type":"Polygon","properties":{"wells":31,"gas":null,"oil":13,"d&a":17}},{"arcs":[[-1096,1149,1150,1151,-1092]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-1099,1152,1153,1154,-1150,-1095]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":0,"d&a":2}},{"arcs":[[-1102,1155,1156,1157,-1153,-1098]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-1105,1158,1159,1160,-1156,-1101]],"type":"Polygon","properties":{"wells":17,"gas":1,"oil":6,"d&a":8}},{"arcs":[[-1108,1161,1162,1163,-1159,-1104]],"type":"Polygon","properties":{"wells":9,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-1111,1164,1165,1166,-1162,-1107]],"type":"Polygon","properties":{"wells":109,"gas":0,"oil":22,"d&a":68}},{"arcs":[[-1114,1167,1168,1169,-1165,-1110]],"type":"Polygon","properties":{"wells":169,"gas":1,"oil":56,"d&a":57}},{"arcs":[[-1117,1170,1171,1172,-1168,-1113]],"type":"Polygon","properties":{"wells":98,"gas":2,"oil":35,"d&a":36}},{"arcs":[[-1120,1173,1174,1175,-1171,-1116]],"type":"Polygon","properties":{"wells":30,"gas":2,"oil":3,"d&a":18}},{"arcs":[[-1123,1176,1177,1178,-1174,-1119]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-1126,1179,1180,1181,-1177,-1122]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-1129,1182,1183,1184,-1180,-1125]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-1132,1185,1186,1187,-1183,-1128]],"type":"Polygon","properties":{"wells":78,"gas":1,"oil":13,"d&a":50}},{"arcs":[[-1135,1188,1189,1190,-1186,-1131]],"type":"Polygon","properties":{"wells":370,"gas":1,"oil":138,"d&a":116}},{"arcs":[[-1138,1191,1192,1193,-1189,-1134]],"type":"Polygon","properties":{"wells":459,"gas":2,"oil":176,"d&a":121}},{"arcs":[[-1141,1194,1195,1196,-1192,-1137]],"type":"Polygon","properties":{"wells":393,"gas":5,"oil":98,"d&a":172}},{"arcs":[[-1144,1197,1198,1199,-1195,-1140]],"type":"Polygon","properties":{"wells":15,"gas":null,"oil":0,"d&a":12}},{"arcs":[[-1147,1200,1201,1202,-1198,-1143]],"type":"Polygon","properties":{"wells":33,"gas":null,"oil":4,"d&a":26}},{"arcs":[[-1149,1203,1204,1205,-1201,-1146]],"type":"Polygon","properties":{"wells":116,"gas":null,"oil":43,"d&a":58}},{"arcs":[[-1155,1206,1207,1208,1209,-1151]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-1158,1210,1211,1212,-1207,-1154]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1161,1213,1214,1215,-1211,-1157]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1164,1216,1217,1218,-1214,-1160]],"type":"Polygon","properties":{"wells":31,"gas":null,"oil":9,"d&a":8}},{"arcs":[[-1167,1219,1220,1221,-1217,-1163]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-1170,1222,1223,1224,-1220,-1166]],"type":"Polygon","properties":{"wells":33,"gas":1,"oil":0,"d&a":30}},{"arcs":[[-1173,1225,1226,1227,-1223,-1169]],"type":"Polygon","properties":{"wells":915,"gas":3,"oil":360,"d&a":241}},{"arcs":[[-1176,1228,1229,1230,-1226,-1172]],"type":"Polygon","properties":{"wells":100,"gas":2,"oil":26,"d&a":39}},{"arcs":[[-1179,1231,1232,1233,-1229,-1175]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":1,"d&a":4}},{"arcs":[[-1182,1234,1235,1236,-1232,-1178]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-1185,1237,1238,1239,-1235,-1181]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-1188,1240,1241,1242,-1238,-1184]],"type":"Polygon","properties":{"wells":31,"gas":null,"oil":6,"d&a":18}},{"arcs":[[-1191,1243,1244,1245,-1241,-1187]],"type":"Polygon","properties":{"wells":159,"gas":1,"oil":37,"d&a":81}},{"arcs":[[-1194,1246,1247,1248,-1244,-1190]],"type":"Polygon","properties":{"wells":627,"gas":6,"oil":270,"d&a":120}},{"arcs":[[-1197,1249,1250,1251,-1247,-1193]],"type":"Polygon","properties":{"wells":550,"gas":7,"oil":172,"d&a":246}},{"arcs":[[-1200,1252,1253,1254,-1250,-1196]],"type":"Polygon","properties":{"wells":342,"gas":7,"oil":116,"d&a":149}},{"arcs":[[-1203,1255,1256,1257,-1253,-1199]],"type":"Polygon","properties":{"wells":24,"gas":null,"oil":1,"d&a":21}},{"arcs":[[-1206,1258,1259,1260,-1256,-1202]],"type":"Polygon","properties":{"wells":19,"gas":null,"oil":null,"d&a":17}},{"arcs":[[1261,1262,1263,-1259,-1205]],"type":"Polygon","properties":{"wells":29,"gas":null,"oil":1,"d&a":25}},{"arcs":[[-1209,1264,1265,1266]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1213,1267,1268,1269,-1265,-1208]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-1216,1270,1271,1272,-1268,-1212]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-1219,1273,1274,1275,-1271,-1215]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-1222,1276,1277,1278,-1274,-1218]],"type":"Polygon","properties":{"wells":18,"gas":0,"oil":4,"d&a":13}},{"arcs":[[-1225,1279,1280,1281,-1277,-1221]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":1,"d&a":6}},{"arcs":[[-1228,1282,1283,1284,-1280,-1224]],"type":"Polygon","properties":{"wells":102,"gas":1,"oil":15,"d&a":66}},{"arcs":[[-1231,1285,1286,1287,-1283,-1227]],"type":"Polygon","properties":{"wells":315,"gas":13,"oil":97,"d&a":120}},{"arcs":[[-1234,1288,1289,1290,-1286,-1230]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-1237,1291,1292,1293,-1289,-1233]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-1240,1294,1295,1296,-1292,-1236]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":0,"d&a":2}},{"arcs":[[-1243,1297,1298,1299,-1295,-1239]],"type":"Polygon","properties":{"wells":13,"gas":null,"oil":null,"d&a":12}},{"arcs":[[-1246,1300,1301,1302,-1298,-1242]],"type":"Polygon","properties":{"wells":91,"gas":1,"oil":32,"d&a":46}},{"arcs":[[-1249,1303,1304,1305,-1301,-1245]],"type":"Polygon","properties":{"wells":211,"gas":16,"oil":49,"d&a":84}},{"arcs":[[-1252,1306,1307,1308,-1304,-1248]],"type":"Polygon","properties":{"wells":335,"gas":5,"oil":105,"d&a":130}},{"arcs":[[-1255,1309,1310,1311,-1307,-1251]],"type":"Polygon","properties":{"wells":542,"gas":8,"oil":192,"d&a":207}},{"arcs":[[-1258,1312,1313,1314,-1310,-1254]],"type":"Polygon","properties":{"wells":610,"gas":17,"oil":224,"d&a":230}},{"arcs":[[-1261,1315,1316,1317,-1313,-1257]],"type":"Polygon","properties":{"wells":50,"gas":4,"oil":7,"d&a":31}},{"arcs":[[-1264,1318,1319,1320,-1316,-1260]],"type":"Polygon","properties":{"wells":22,"gas":null,"oil":null,"d&a":22}},{"arcs":[[1321,1322,-1319,-1263]],"type":"Polygon","properties":{"wells":99,"gas":5,"oil":18,"d&a":58}},{"arcs":[[-1270,1323,1324,1325,-1266]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1273,1326,1327,1328,-1324,-1269]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":0,"d&a":4}},{"arcs":[[-1276,1329,1330,1331,-1327,-1272]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":0,"d&a":4}},{"arcs":[[-1279,1332,1333,1334,-1330,-1275]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":0,"d&a":1}},{"arcs":[[-1282,1335,1336,1337,-1333,-1278]],"type":"Polygon","properties":{"wells":20,"gas":null,"oil":3,"d&a":12}},{"arcs":[[-1285,1338,1339,1340,-1336,-1281]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":null,"d&a":14}},{"arcs":[[-1288,1341,1342,1343,-1339,-1284]],"type":"Polygon","properties":{"wells":54,"gas":4,"oil":1,"d&a":38}},{"arcs":[[-1291,1344,1345,1346,-1342,-1287]],"type":"Polygon","properties":{"wells":65,"gas":5,"oil":4,"d&a":30}},{"arcs":[[-1294,1347,1348,1349,-1345,-1290]],"type":"Polygon","properties":{"wells":23,"gas":1,"oil":null,"d&a":15}},{"arcs":[[-1297,1350,1351,1352,-1348,-1293]],"type":"Polygon","properties":{"wells":13,"gas":null,"oil":1,"d&a":11}},{"arcs":[[-1300,1353,1354,1355,-1351,-1296]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-1303,1356,1357,1358,-1354,-1299]],"type":"Polygon","properties":{"wells":26,"gas":null,"oil":null,"d&a":24}},{"arcs":[[-1306,1359,1360,1361,-1357,-1302]],"type":"Polygon","properties":{"wells":45,"gas":1,"oil":4,"d&a":30}},{"arcs":[[-1309,1362,1363,1364,-1360,-1305]],"type":"Polygon","properties":{"wells":203,"gas":1,"oil":70,"d&a":87}},{"arcs":[[-1312,1365,1366,1367,-1363,-1308]],"type":"Polygon","properties":{"wells":295,"gas":12,"oil":60,"d&a":122}},{"arcs":[[-1315,1368,1369,1370,-1366,-1311]],"type":"Polygon","properties":{"wells":331,"gas":2,"oil":84,"d&a":137}},{"arcs":[[-1318,1371,1372,1373,-1369,-1314]],"type":"Polygon","properties":{"wells":79,"gas":2,"oil":9,"d&a":55}},{"arcs":[[-1321,1374,1375,1376,-1372,-1317]],"type":"Polygon","properties":{"wells":23,"gas":2,"oil":1,"d&a":17}},{"arcs":[[-1323,1377,1378,-1375,-1320]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1329,1379,1380,1381,1382,-1325]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1332,1383,1384,1385,-1380,-1328]],"type":"Polygon","properties":{"wells":20,"gas":null,"oil":4,"d&a":13}},{"arcs":[[-1335,1386,1387,1388,-1384,-1331]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":0,"d&a":1}},{"arcs":[[-1338,1389,1390,1391,-1387,-1334]],"type":"Polygon","properties":{"wells":13,"gas":null,"oil":2,"d&a":5}},{"arcs":[[-1341,1392,1393,1394,-1390,-1337]],"type":"Polygon","properties":{"wells":20,"gas":null,"oil":7,"d&a":11}},{"arcs":[[-1344,1395,1396,1397,-1393,-1340]],"type":"Polygon","properties":{"wells":27,"gas":null,"oil":4,"d&a":12}},{"arcs":[[-1347,1398,1399,1400,-1396,-1343]],"type":"Polygon","properties":{"wells":15,"gas":1,"oil":null,"d&a":9}},{"arcs":[[-1350,1401,1402,1403,-1399,-1346]],"type":"Polygon","properties":{"wells":11,"gas":4,"oil":null,"d&a":4}},{"arcs":[[-1353,1404,1405,1406,-1402,-1349]],"type":"Polygon","properties":{"wells":4,"gas":0,"oil":null,"d&a":3}},{"arcs":[[-1356,1407,1408,1409,-1405,-1352]],"type":"Polygon","properties":{"wells":6,"gas":1,"oil":null,"d&a":4}},{"arcs":[[-1359,1410,1411,1412,-1408,-1355]],"type":"Polygon","properties":{"wells":15,"gas":4,"oil":null,"d&a":11}},{"arcs":[[-1362,1413,1414,1415,-1411,-1358]],"type":"Polygon","properties":{"wells":47,"gas":null,"oil":8,"d&a":36}},{"arcs":[[-1365,1416,1417,1418,-1414,-1361]],"type":"Polygon","properties":{"wells":88,"gas":1,"oil":29,"d&a":38}},{"arcs":[[-1368,1419,1420,1421,-1417,-1364]],"type":"Polygon","properties":{"wells":428,"gas":1,"oil":102,"d&a":83}},{"arcs":[[-1371,1422,1423,1424,-1420,-1367]],"type":"Polygon","properties":{"wells":506,"gas":3,"oil":117,"d&a":108}},{"arcs":[[-1374,1425,1426,1427,-1423,-1370]],"type":"Polygon","properties":{"wells":178,"gas":11,"oil":34,"d&a":89}},{"arcs":[[-1377,1428,1429,1430,-1426,-1373]],"type":"Polygon","properties":{"wells":59,"gas":2,"oil":10,"d&a":28}},{"arcs":[[-1379,1431,1432,-1429,-1376]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[1433,1434,1435]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-1382,1436,1437,1438,-1434,1439]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-1389,1440,1441,1442,1443,-1385]],"type":"Polygon","properties":{"wells":55,"gas":null,"oil":8,"d&a":27}},{"arcs":[[-1392,1444,1445,1446,-1441,-1388]],"type":"Polygon","properties":{"wells":42,"gas":1,"oil":13,"d&a":9}},{"arcs":[[-1395,1447,1448,1449,-1445,-1391]],"type":"Polygon","properties":{"wells":33,"gas":null,"oil":12,"d&a":10}},{"arcs":[[-1398,1450,1451,1452,-1448,-1394]],"type":"Polygon","properties":{"wells":21,"gas":0,"oil":2,"d&a":12}},{"arcs":[[-1401,1453,1454,1455,-1451,-1397]],"type":"Polygon","properties":{"wells":17,"gas":1,"oil":1,"d&a":5}},{"arcs":[[-1404,1456,1457,1458,-1454,-1400]],"type":"Polygon","properties":{"wells":6,"gas":1,"oil":null,"d&a":3}},{"arcs":[[-1407,1459,1460,1461,-1457,-1403]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1410,1462,1463,1464,-1460,-1406]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":1}},{"arcs":[[-1413,1465,1466,1467,-1463,-1409]],"type":"Polygon","properties":{"wells":5,"gas":3,"oil":null,"d&a":2}},{"arcs":[[-1416,1468,1469,1470,-1466,-1412]],"type":"Polygon","properties":{"wells":8,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-1419,1471,1472,1473,-1469,-1415]],"type":"Polygon","properties":{"wells":24,"gas":null,"oil":null,"d&a":22}},{"arcs":[[-1422,1474,1475,1476,-1472,-1418]],"type":"Polygon","properties":{"wells":49,"gas":8,"oil":2,"d&a":33}},{"arcs":[[-1425,1477,1478,1479,-1475,-1421]],"type":"Polygon","properties":{"wells":83,"gas":1,"oil":22,"d&a":32}},{"arcs":[[-1428,1480,1481,1482,-1478,-1424]],"type":"Polygon","properties":{"wells":54,"gas":2,"oil":3,"d&a":34}},{"arcs":[[-1431,1483,1484,1485,-1481,-1427]],"type":"Polygon","properties":{"wells":74,"gas":0,"oil":3,"d&a":26}},{"arcs":[[-1433,1486,1487,1488,-1484,-1430]],"type":"Polygon","properties":{"wells":6,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-1439,1489,1490,1491,1492,-1435]],"type":"Polygon","properties":{"wells":11,"gas":1,"oil":0,"d&a":5}},{"arcs":[[1493,1494,1495,1496,-1490,-1438]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":0,"d&a":2}},{"arcs":[[-1443,1497,1498,1499,-1495,1500]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":0,"d&a":2}},{"arcs":[[-1447,1501,1502,1503,-1498,-1442]],"type":"Polygon","properties":{"wells":51,"gas":5,"oil":8,"d&a":18}},{"arcs":[[-1450,1504,1505,1506,-1502,-1446]],"type":"Polygon","properties":{"wells":339,"gas":null,"oil":162,"d&a":28}},{"arcs":[[-1453,1507,1508,1509,-1505,-1449]],"type":"Polygon","properties":{"wells":146,"gas":2,"oil":61,"d&a":29}},{"arcs":[[-1456,1510,1511,1512,-1508,-1452]],"type":"Polygon","properties":{"wells":180,"gas":11,"oil":78,"d&a":32}},{"arcs":[[-1459,1513,1514,1515,-1511,-1455]],"type":"Polygon","properties":{"wells":23,"gas":2,"oil":1,"d&a":7}},{"arcs":[[-1462,1516,1517,1518,-1514,-1458]],"type":"Polygon","properties":{"wells":34,"gas":null,"oil":2,"d&a":16}},{"arcs":[[-1465,1519,1520,1521,-1517,-1461]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-1468,1522,1523,1524,-1520,-1464]],"type":"Polygon","properties":{"wells":9,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-1471,1525,1526,1527,-1523,-1467]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":1,"d&a":12}},{"arcs":[[-1474,1528,1529,1530,-1526,-1470]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-1477,1531,1532,1533,-1529,-1473]],"type":"Polygon","properties":{"wells":70,"gas":7,"oil":2,"d&a":52}},{"arcs":[[-1480,1534,1535,1536,-1532,-1476]],"type":"Polygon","properties":{"wells":146,"gas":20,"oil":18,"d&a":73}},{"arcs":[[-1483,1537,1538,1539,-1535,-1479]],"type":"Polygon","properties":{"wells":333,"gas":5,"oil":77,"d&a":152}},{"arcs":[[-1486,1540,1541,1542,-1538,-1482]],"type":"Polygon","properties":{"wells":186,"gas":3,"oil":26,"d&a":81}},{"arcs":[[-1489,1543,1544,1545,-1541,-1485]],"type":"Polygon","properties":{"wells":9,"gas":1,"oil":null,"d&a":7}},{"arcs":[[1546,1547,1548,-1544,-1488]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-1492,1549,1550,1551]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1497,1552,1553,1554,-1550,-1491]],"type":"Polygon","properties":{"wells":75,"gas":1,"oil":26,"d&a":26}},{"arcs":[[-1500,1555,1556,1557,-1553,-1496]],"type":"Polygon","properties":{"wells":54,"gas":null,"oil":14,"d&a":26}},{"arcs":[[-1504,1558,1559,1560,-1556,-1499]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":2,"d&a":3}},{"arcs":[[-1507,1561,1562,1563,-1559,-1503]],"type":"Polygon","properties":{"wells":230,"gas":1,"oil":136,"d&a":28}},{"arcs":[[-1510,1564,1565,1566,-1562,-1506]],"type":"Polygon","properties":{"wells":124,"gas":null,"oil":61,"d&a":24}},{"arcs":[[-1513,1567,1568,1569,-1565,-1509]],"type":"Polygon","properties":{"wells":403,"gas":4,"oil":230,"d&a":53}},{"arcs":[[-1516,1570,1571,1572,-1568,-1512]],"type":"Polygon","properties":{"wells":258,"gas":19,"oil":99,"d&a":53}},{"arcs":[[-1519,1573,1574,1575,-1571,-1515]],"type":"Polygon","properties":{"wells":32,"gas":1,"oil":1,"d&a":15}},{"arcs":[[-1522,1576,1577,1578,-1574,-1518]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-1525,1579,1580,1581,-1577,-1521]],"type":"Polygon","properties":{"wells":15,"gas":5,"oil":null,"d&a":6}},{"arcs":[[-1528,1582,1583,1584,-1580,-1524]],"type":"Polygon","properties":{"wells":16,"gas":2,"oil":2,"d&a":10}},{"arcs":[[-1531,1585,1586,1587,-1583,-1527]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":null,"d&a":9}},{"arcs":[[-1534,1588,1589,1590,-1586,-1530]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":null,"d&a":11}},{"arcs":[[-1537,1591,1592,1593,-1589,-1533]],"type":"Polygon","properties":{"wells":20,"gas":0,"oil":null,"d&a":19}},{"arcs":[[-1540,1594,1595,1596,-1592,-1536]],"type":"Polygon","properties":{"wells":33,"gas":5,"oil":1,"d&a":25}},{"arcs":[[-1543,1597,1598,1599,-1595,-1539]],"type":"Polygon","properties":{"wells":29,"gas":8,"oil":0,"d&a":14}},{"arcs":[[-1546,1600,1601,1602,-1598,-1542]],"type":"Polygon","properties":{"wells":7,"gas":4,"oil":null,"d&a":3}},{"arcs":[[-1549,1603,1604,1605,-1601,-1545]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[1606,1607,1608,-1604,-1548]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1555,1609,1610,1611,-1551]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":0,"d&a":5}},{"arcs":[[-1558,1612,1613,1614,-1610,-1554]],"type":"Polygon","properties":{"wells":42,"gas":4,"oil":14,"d&a":15}},{"arcs":[[-1561,1615,1616,1617,-1613,-1557]],"type":"Polygon","properties":{"wells":51,"gas":null,"oil":7,"d&a":25}},{"arcs":[[-1564,1618,1619,1620,-1616,-1560]],"type":"Polygon","properties":{"wells":28,"gas":2,"oil":6,"d&a":8}},{"arcs":[[-1567,1621,1622,1623,-1619,-1563]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":1,"d&a":5}},{"arcs":[[-1570,1624,1625,1626,-1622,-1566]],"type":"Polygon","properties":{"wells":70,"gas":0,"oil":20,"d&a":23}},{"arcs":[[-1573,1627,1628,1629,-1625,-1569]],"type":"Polygon","properties":{"wells":545,"gas":19,"oil":316,"d&a":82}},{"arcs":[[-1576,1630,1631,1632,-1628,-1572]],"type":"Polygon","properties":{"wells":546,"gas":27,"oil":300,"d&a":42}},{"arcs":[[-1579,1633,1634,1635,-1631,-1575]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-1582,1636,1637,1638,-1634,-1578]],"type":"Polygon","properties":{"wells":43,"gas":23,"oil":null,"d&a":3}},{"arcs":[[-1585,1639,1640,1641,-1637,-1581]],"type":"Polygon","properties":{"wells":43,"gas":28,"oil":null,"d&a":7}},{"arcs":[[-1588,1642,1643,1644,-1640,-1584]],"type":"Polygon","properties":{"wells":16,"gas":6,"oil":null,"d&a":8}},{"arcs":[[-1591,1645,1646,1647,-1643,-1587]],"type":"Polygon","properties":{"wells":30,"gas":4,"oil":3,"d&a":19}},{"arcs":[[-1594,1648,1649,1650,-1646,-1590]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1597,1651,1652,1653,-1649,-1593]],"type":"Polygon","properties":{"wells":3,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-1600,1654,1655,1656,-1652,-1596]],"type":"Polygon","properties":{"wells":5,"gas":3,"oil":null,"d&a":1}},{"arcs":[[-1603,1657,1658,1659,-1655,-1599]],"type":"Polygon","properties":{"wells":10,"gas":4,"oil":null,"d&a":5}},{"arcs":[[-1606,1660,1661,1662,-1658,-1602]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1609,1663,1664,1665,-1661,-1605]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[1666,1667,1668,1669,-1664,-1608]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[1670,1671,1672,-1668,1673]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1671,1674]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-1615,1675,1676,1677,1678,-1611]],"type":"Polygon","properties":{"wells":112,"gas":1,"oil":28,"d&a":50}},{"arcs":[[-1618,1679,1680,1681,-1676,-1614]],"type":"Polygon","properties":{"wells":98,"gas":null,"oil":30,"d&a":40}},{"arcs":[[-1621,1682,1683,1684,-1680,-1617]],"type":"Polygon","properties":{"wells":14,"gas":1,"oil":5,"d&a":2}},{"arcs":[[-1624,1685,1686,1687,-1683,-1620]],"type":"Polygon","properties":{"wells":27,"gas":null,"oil":2,"d&a":14}},{"arcs":[[-1627,1688,1689,1690,-1686,-1623]],"type":"Polygon","properties":{"wells":16,"gas":1,"oil":null,"d&a":8}},{"arcs":[[-1630,1691,1692,1693,-1689,-1626]],"type":"Polygon","properties":{"wells":393,"gas":1,"oil":182,"d&a":113}},{"arcs":[[-1633,1694,1695,1696,-1692,-1629]],"type":"Polygon","properties":{"wells":335,"gas":20,"oil":125,"d&a":72}},{"arcs":[[-1636,1697,1698,1699,-1695,-1632]],"type":"Polygon","properties":{"wells":39,"gas":0,"oil":10,"d&a":7}},{"arcs":[[-1639,1700,1701,1702,-1698,-1635]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1642,1703,1704,1705,-1701,-1638]],"type":"Polygon","properties":{"wells":57,"gas":32,"oil":null,"d&a":4}},{"arcs":[[-1645,1706,1707,1708,-1704,-1641]],"type":"Polygon","properties":{"wells":135,"gas":103,"oil":0,"d&a":7}},{"arcs":[[-1648,1709,1710,1711,-1707,-1644]],"type":"Polygon","properties":{"wells":6,"gas":4,"oil":null,"d&a":2}},{"arcs":[[-1651,1712,1713,1714,-1710,-1647]],"type":"Polygon","properties":{"wells":18,"gas":null,"oil":2,"d&a":15}},{"arcs":[[-1657,1715,1716,1717,1718,-1653]],"type":"Polygon","properties":{"wells":5,"gas":4,"oil":null,"d&a":null}},{"arcs":[[-1660,1719,1720,1721,-1716,-1656]],"type":"Polygon","properties":{"wells":4,"gas":2,"oil":null,"d&a":2}},{"arcs":[[-1663,1722,1723,1724,-1720,-1659]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":1,"d&a":1}},{"arcs":[[-1666,1725,1726,1727,-1723,-1662]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1670,1728,1729,1730,-1726,-1665]],"type":"Polygon","properties":{"wells":3,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-1673,1731,1732,-1729,-1669]],"type":"Polygon","properties":{"wells":2,"gas":2,"oil":null,"d&a":null}},{"arcs":[[-1678,1733,1734,1735,1736]],"type":"Polygon","properties":{"wells":26,"gas":null,"oil":4,"d&a":14}},{"arcs":[[-1682,1737,1738,1739,-1734,-1677]],"type":"Polygon","properties":{"wells":83,"gas":0,"oil":22,"d&a":46}},{"arcs":[[-1685,1740,1741,1742,-1738,-1681]],"type":"Polygon","properties":{"wells":103,"gas":null,"oil":33,"d&a":44}},{"arcs":[[-1688,1743,1744,1745,-1741,-1684]],"type":"Polygon","properties":{"wells":33,"gas":1,"oil":2,"d&a":18}},{"arcs":[[-1691,1746,1747,1748,-1744,-1687]],"type":"Polygon","properties":{"wells":129,"gas":3,"oil":70,"d&a":24}},{"arcs":[[-1694,1749,1750,1751,-1747,-1690]],"type":"Polygon","properties":{"wells":33,"gas":4,"oil":2,"d&a":19}},{"arcs":[[-1697,1752,1753,1754,-1750,-1693]],"type":"Polygon","properties":{"wells":197,"gas":8,"oil":60,"d&a":50}},{"arcs":[[-1700,1755,1756,1757,-1753,-1696]],"type":"Polygon","properties":{"wells":34,"gas":0,"oil":3,"d&a":13}},{"arcs":[[-1703,1758,1759,1760,-1756,-1699]],"type":"Polygon","properties":{"wells":47,"gas":1,"oil":6,"d&a":16}},{"arcs":[[-1706,1761,1762,1763,-1759,-1702]],"type":"Polygon","properties":{"wells":21,"gas":null,"oil":null,"d&a":10}},{"arcs":[[-1709,1764,1765,1766,-1762,-1705]],"type":"Polygon","properties":{"wells":86,"gas":53,"oil":null,"d&a":15}},{"arcs":[[-1712,1767,1768,1769,-1765,-1708]],"type":"Polygon","properties":{"wells":113,"gas":40,"oil":1,"d&a":19}},{"arcs":[[-1715,1770,1771,1772,-1768,-1711]],"type":"Polygon","properties":{"wells":12,"gas":3,"oil":1,"d&a":6}},{"arcs":[[1773,1774,1775,1776,-1771,-1714]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-1718,1777,1778,1779,-1775,1780]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1722,1781,1782,1783,-1778,-1717]],"type":"Polygon","properties":{"wells":5,"gas":4,"oil":null,"d&a":1}},{"arcs":[[-1725,1784,1785,1786,-1782,-1721]],"type":"Polygon","properties":{"wells":4,"gas":2,"oil":null,"d&a":1}},{"arcs":[[-1728,1787,1788,1789,-1785,-1724]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":1,"d&a":null}},{"arcs":[[-1731,1790,1791,1792,-1788,-1727]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-1733,1793,1794,1795,-1791,-1730]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[1796,1797]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1736,1798,1799,1800]],"type":"Polygon","properties":{"wells":22,"gas":null,"oil":6,"d&a":12}},{"arcs":[[-1740,1801,1802,1803,-1799,-1735]],"type":"Polygon","properties":{"wells":170,"gas":1,"oil":48,"d&a":78}},{"arcs":[[-1743,1804,1805,1806,-1802,-1739]],"type":"Polygon","properties":{"wells":93,"gas":1,"oil":22,"d&a":49}},{"arcs":[[-1746,1807,1808,1809,-1805,-1742]],"type":"Polygon","properties":{"wells":109,"gas":null,"oil":16,"d&a":69}},{"arcs":[[-1749,1810,1811,1812,-1808,-1745]],"type":"Polygon","properties":{"wells":112,"gas":1,"oil":43,"d&a":37}},{"arcs":[[-1752,1813,1814,1815,-1811,-1748]],"type":"Polygon","properties":{"wells":66,"gas":7,"oil":14,"d&a":23}},{"arcs":[[-1755,1816,1817,1818,-1814,-1751]],"type":"Polygon","properties":{"wells":32,"gas":14,"oil":null,"d&a":2}},{"arcs":[[-1758,1819,1820,1821,-1817,-1754]],"type":"Polygon","properties":{"wells":107,"gas":1,"oil":60,"d&a":18}},{"arcs":[[-1761,1822,1823,1824,-1820,-1757]],"type":"Polygon","properties":{"wells":27,"gas":1,"oil":4,"d&a":12}},{"arcs":[[-1764,1825,1826,1827,-1823,-1760]],"type":"Polygon","properties":{"wells":23,"gas":null,"oil":null,"d&a":14}},{"arcs":[[-1767,1828,1829,1830,-1826,-1763]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":null,"d&a":11}},{"arcs":[[-1770,1831,1832,1833,-1829,-1766]],"type":"Polygon","properties":{"wells":6,"gas":1,"oil":null,"d&a":5}},{"arcs":[[-1773,1834,1835,1836,-1832,-1769]],"type":"Polygon","properties":{"wells":7,"gas":3,"oil":null,"d&a":3}},{"arcs":[[-1777,1837,1838,1839,-1835,-1772]],"type":"Polygon","properties":{"wells":11,"gas":5,"oil":null,"d&a":3}},{"arcs":[[-1780,1840,1841,1842,-1838,-1776]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1784,1843,1844,1845,-1841,-1779]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1787,1846,1847,1848,-1844,-1783]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-1790,1849,1850,1851,-1847,-1786]],"type":"Polygon","properties":{"wells":3,"gas":2,"oil":null,"d&a":0}},{"arcs":[[-1793,1852,1853,1854,-1850,-1789]],"type":"Polygon","properties":{"wells":10,"gas":9,"oil":null,"d&a":1}},{"arcs":[[-1796,1855,1856,1857,-1853,-1792]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":null}},{"arcs":[[1858,-1856,-1795]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[1859,-1797]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":1}},{"arcs":[[-1804,1860,1861,1862,1863,-1800]],"type":"Polygon","properties":{"wells":65,"gas":0,"oil":26,"d&a":28}},{"arcs":[[-1807,1864,1865,1866,-1861,-1803]],"type":"Polygon","properties":{"wells":192,"gas":0,"oil":64,"d&a":112}},{"arcs":[[-1810,1867,1868,1869,-1865,-1806]],"type":"Polygon","properties":{"wells":235,"gas":null,"oil":87,"d&a":107}},{"arcs":[[-1813,1870,1871,1872,-1868,-1809]],"type":"Polygon","properties":{"wells":222,"gas":null,"oil":85,"d&a":92}},{"arcs":[[-1816,1873,1874,1875,-1871,-1812]],"type":"Polygon","properties":{"wells":62,"gas":0,"oil":15,"d&a":37}},{"arcs":[[-1819,1876,1877,1878,-1874,-1815]],"type":"Polygon","properties":{"wells":15,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-1822,1879,1880,1881,-1877,-1818]],"type":"Polygon","properties":{"wells":20,"gas":10,"oil":null,"d&a":3}},{"arcs":[[-1825,1882,1883,1884,-1880,-1821]],"type":"Polygon","properties":{"wells":237,"gas":5,"oil":111,"d&a":54}},{"arcs":[[-1828,1885,1886,1887,-1883,-1824]],"type":"Polygon","properties":{"wells":87,"gas":null,"oil":65,"d&a":14}},{"arcs":[[-1831,1888,1889,1890,-1886,-1827]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-1834,1891,1892,1893,-1889,-1830]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-1837,1894,1895,1896,-1892,-1833]],"type":"Polygon","properties":{"wells":9,"gas":2,"oil":null,"d&a":7}},{"arcs":[[-1840,1897,1898,1899,-1895,-1836]],"type":"Polygon","properties":{"wells":2,"gas":0,"oil":null,"d&a":2}},{"arcs":[[-1846,1900,1901,1902,-1842]],"type":"Polygon","properties":{"wells":8,"gas":2,"oil":null,"d&a":5}},{"arcs":[[-1849,1903,1904,1905,-1901,-1845]],"type":"Polygon","properties":{"wells":3,"gas":2,"oil":null,"d&a":1}},{"arcs":[[-1852,1906,1907,1908,-1904,-1848]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-1855,1909,1910,1911,-1907,-1851]],"type":"Polygon","properties":{"wells":7,"gas":6,"oil":null,"d&a":1}},{"arcs":[[-1858,1912,1913,1914,-1910,-1854]],"type":"Polygon","properties":{"wells":27,"gas":1,"oil":6,"d&a":10}},{"arcs":[[-1863,1915,1916,1917]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1867,1918,1919,1920,-1916,-1862]],"type":"Polygon","properties":{"wells":17,"gas":3,"oil":0,"d&a":12}},{"arcs":[[-1870,1921,1922,1923,-1919,-1866]],"type":"Polygon","properties":{"wells":86,"gas":null,"oil":13,"d&a":64}},{"arcs":[[-1873,1924,1925,1926,-1922,-1869]],"type":"Polygon","properties":{"wells":140,"gas":1,"oil":35,"d&a":69}},{"arcs":[[-1876,1927,1928,1929,-1925,-1872]],"type":"Polygon","properties":{"wells":148,"gas":null,"oil":50,"d&a":67}},{"arcs":[[-1879,1930,1931,1932,-1928,-1875]],"type":"Polygon","properties":{"wells":71,"gas":2,"oil":24,"d&a":36}},{"arcs":[[-1882,1933,1934,1935,-1931,-1878]],"type":"Polygon","properties":{"wells":61,"gas":2,"oil":22,"d&a":14}},{"arcs":[[-1885,1936,1937,1938,-1934,-1881]],"type":"Polygon","properties":{"wells":85,"gas":41,"oil":9,"d&a":12}},{"arcs":[[-1888,1939,1940,1941,-1937,-1884]],"type":"Polygon","properties":{"wells":15,"gas":3,"oil":3,"d&a":4}},{"arcs":[[-1891,1942,1943,1944,-1940,-1887]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-1894,1945,1946,1947,-1943,-1890]],"type":"Polygon","properties":{"wells":17,"gas":null,"oil":5,"d&a":9}},{"arcs":[[-1897,1948,1949,1950,-1946,-1893]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-1900,1951,1952,1953,-1949,-1896]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[1954,1955,1956,-1952,-1899]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1906,1957,1958,1959,1960,-1902]],"type":"Polygon","properties":{"wells":2,"gas":0,"oil":null,"d&a":1}},{"arcs":[[-1909,1961,1962,1963,-1958,-1905]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1912,1964,1965,1966,-1962,-1908]],"type":"Polygon","properties":{"wells":13,"gas":9,"oil":null,"d&a":1}},{"arcs":[[-1915,1967,1968,1969,-1965,-1911]],"type":"Polygon","properties":{"wells":61,"gas":55,"oil":null,"d&a":0}},{"arcs":[[1970,1971,1972,1973,-1968,-1914]],"type":"Polygon","properties":{"wells":25,"gas":8,"oil":null,"d&a":2}},{"arcs":[[1974,1975,-1972,1976]],"type":"Polygon","properties":{"wells":19,"gas":13,"oil":null,"d&a":0}},{"arcs":[[-1921,1977,1978,1979,1980,-1917]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-1924,1981,1982,1983,-1978,-1920]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":1,"d&a":9}},{"arcs":[[-1927,1984,1985,1986,-1982,-1923]],"type":"Polygon","properties":{"wells":64,"gas":null,"oil":15,"d&a":41}},{"arcs":[[-1930,1987,1988,1989,-1985,-1926]],"type":"Polygon","properties":{"wells":133,"gas":0,"oil":77,"d&a":39}},{"arcs":[[-1933,1990,1991,1992,-1988,-1929]],"type":"Polygon","properties":{"wells":134,"gas":null,"oil":43,"d&a":72}},{"arcs":[[-1936,1993,1994,1995,-1991,-1932]],"type":"Polygon","properties":{"wells":76,"gas":1,"oil":13,"d&a":45}},{"arcs":[[-1939,1996,1997,1998,-1994,-1935]],"type":"Polygon","properties":{"wells":97,"gas":10,"oil":16,"d&a":33}},{"arcs":[[-1942,1999,2000,2001,-1997,-1938]],"type":"Polygon","properties":{"wells":40,"gas":24,"oil":1,"d&a":9}},{"arcs":[[-1945,2002,2003,2004,-2000,-1941]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":2,"d&a":3}},{"arcs":[[-1948,2005,2006,2007,-2003,-1944]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-1951,2008,2009,2010,-2006,-1947]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":3,"d&a":5}},{"arcs":[[-1954,2011,2012,2013,-2009,-1950]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-1957,2014,2015,2016,-2012,-1953]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[2017,2018,2019,2020,-2015,-1956]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1960,2021,2022,2023,-2019,2024]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-1964,2025,2026,2027,-2022,-1959]],"type":"Polygon","properties":{"wells":7,"gas":1,"oil":null,"d&a":5}},{"arcs":[[-1967,2028,2029,2030,-2026,-1963]],"type":"Polygon","properties":{"wells":6,"gas":4,"oil":null,"d&a":1}},{"arcs":[[-1970,2031,2032,2033,-2029,-1966]],"type":"Polygon","properties":{"wells":42,"gas":34,"oil":null,"d&a":3}},{"arcs":[[-1974,2034,2035,2036,-2032,-1969]],"type":"Polygon","properties":{"wells":8,"gas":2,"oil":null,"d&a":null}},{"arcs":[[-1976,2037,2038,2039,-2035,-1973]],"type":"Polygon","properties":{"wells":145,"gas":16,"oil":6,"d&a":20}},{"arcs":[[2040,2041,-2038,-1975]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-1980,2042,2043,2044]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-1984,2045,2046,2047,-2043,-1979]],"type":"Polygon","properties":{"wells":9,"gas":1,"oil":0,"d&a":4}},{"arcs":[[-1987,2048,2049,2050,-2046,-1983]],"type":"Polygon","properties":{"wells":15,"gas":null,"oil":1,"d&a":14}},{"arcs":[[-1990,2051,2052,2053,-2049,-1986]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":null,"d&a":11}},{"arcs":[[-1993,2054,2055,2056,-2052,-1989]],"type":"Polygon","properties":{"wells":51,"gas":null,"oil":19,"d&a":23}},{"arcs":[[-1996,2057,2058,2059,-2055,-1992]],"type":"Polygon","properties":{"wells":120,"gas":1,"oil":33,"d&a":58}},{"arcs":[[-1999,2060,2061,2062,-2058,-1995]],"type":"Polygon","properties":{"wells":45,"gas":3,"oil":5,"d&a":18}},{"arcs":[[-2002,2063,2064,2065,-2061,-1998]],"type":"Polygon","properties":{"wells":35,"gas":7,"oil":1,"d&a":18}},{"arcs":[[-2005,2066,2067,2068,-2064,-2001]],"type":"Polygon","properties":{"wells":18,"gas":1,"oil":2,"d&a":8}},{"arcs":[[-2008,2069,2070,2071,-2067,-2004]],"type":"Polygon","properties":{"wells":88,"gas":1,"oil":46,"d&a":18}},{"arcs":[[-2011,2072,2073,2074,-2070,-2007]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":1,"d&a":6}},{"arcs":[[-2014,2075,2076,2077,-2073,-2010]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":2,"d&a":5}},{"arcs":[[-2017,2078,2079,2080,-2076,-2013]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-2021,2081,2082,2083,-2079,-2016]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2024,2084,2085,2086,-2082,-2020]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2028,2087,2088,2089,-2085,-2023]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2031,2090,2091,2092,-2088,-2027]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-2034,2093,2094,2095,-2091,-2030]],"type":"Polygon","properties":{"wells":9,"gas":3,"oil":null,"d&a":4}},{"arcs":[[-2037,2096,2097,2098,-2094,-2033]],"type":"Polygon","properties":{"wells":44,"gas":28,"oil":null,"d&a":3}},{"arcs":[[-2040,2099,2100,2101,-2097,-2036]],"type":"Polygon","properties":{"wells":57,"gas":6,"oil":0,"d&a":6}},{"arcs":[[-2042,2102,2103,-2100,-2039]],"type":"Polygon","properties":{"wells":11,"gas":6,"oil":null,"d&a":1}},{"arcs":[[-2048,2104,2105,2106,2107,-2044]],"type":"Polygon","properties":{"wells":22,"gas":2,"oil":2,"d&a":16}},{"arcs":[[-2051,2108,2109,2110,-2105,-2047]],"type":"Polygon","properties":{"wells":60,"gas":null,"oil":0,"d&a":55}},{"arcs":[[-2054,2111,2112,2113,-2109,-2050]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":0,"d&a":10}},{"arcs":[[-2057,2114,2115,2116,-2112,-2053]],"type":"Polygon","properties":{"wells":55,"gas":null,"oil":5,"d&a":37}},{"arcs":[[-2060,2117,2118,2119,-2115,-2056]],"type":"Polygon","properties":{"wells":356,"gas":2,"oil":110,"d&a":169}},{"arcs":[[-2063,2120,2121,2122,-2118,-2059]],"type":"Polygon","properties":{"wells":396,"gas":4,"oil":141,"d&a":149}},{"arcs":[[-2066,2123,2124,2125,-2121,-2062]],"type":"Polygon","properties":{"wells":85,"gas":0,"oil":23,"d&a":38}},{"arcs":[[-2069,2126,2127,2128,-2124,-2065]],"type":"Polygon","properties":{"wells":22,"gas":11,"oil":1,"d&a":9}},{"arcs":[[-2072,2129,2130,2131,-2127,-2068]],"type":"Polygon","properties":{"wells":52,"gas":2,"oil":12,"d&a":21}},{"arcs":[[-2075,2132,2133,2134,-2130,-2071]],"type":"Polygon","properties":{"wells":48,"gas":0,"oil":16,"d&a":19}},{"arcs":[[-2078,2135,2136,2137,-2133,-2074]],"type":"Polygon","properties":{"wells":16,"gas":0,"oil":3,"d&a":6}},{"arcs":[[-2081,2138,2139,2140,-2136,-2077]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2084,2141,2142,2143,-2139,-2080]],"type":"Polygon","properties":{"wells":89,"gas":null,"oil":1,"d&a":5}},{"arcs":[[-2087,2144,2145,2146,-2142,-2083]],"type":"Polygon","properties":{"wells":23,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-2090,2147,2148,2149,-2145,-2086]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-2093,2150,2151,2152,-2148,-2089]],"type":"Polygon","properties":{"wells":24,"gas":8,"oil":null,"d&a":4}},{"arcs":[[-2096,2153,2154,2155,-2151,-2092]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2099,2156,2157,2158,-2154,-2095]],"type":"Polygon","properties":{"wells":30,"gas":14,"oil":null,"d&a":9}},{"arcs":[[-2102,2159,2160,-2157,-2098]],"type":"Polygon","properties":{"wells":17,"gas":4,"oil":4,"d&a":0}},{"arcs":[[-2104,2161,2162,2163,-2160,-2101]],"type":"Polygon","properties":{"wells":32,"gas":15,"oil":1,"d&a":3}},{"arcs":[[-2107,2164,2165,2166]],"type":"Polygon","properties":{"wells":19,"gas":1,"oil":1,"d&a":13}},{"arcs":[[-2111,2167,2168,2169,-2165,-2106]],"type":"Polygon","properties":{"wells":102,"gas":null,"oil":4,"d&a":91}},{"arcs":[[-2114,2170,2171,2172,-2168,-2110]],"type":"Polygon","properties":{"wells":22,"gas":null,"oil":null,"d&a":21}},{"arcs":[[-2117,2173,2174,2175,-2171,-2113]],"type":"Polygon","properties":{"wells":36,"gas":null,"oil":null,"d&a":28}},{"arcs":[[-2120,2176,2177,2178,-2174,-2116]],"type":"Polygon","properties":{"wells":147,"gas":0,"oil":36,"d&a":73}},{"arcs":[[-2123,2179,2180,2181,-2177,-2119]],"type":"Polygon","properties":{"wells":95,"gas":0,"oil":18,"d&a":51}},{"arcs":[[-2126,2182,2183,2184,-2180,-2122]],"type":"Polygon","properties":{"wells":218,"gas":7,"oil":98,"d&a":56}},{"arcs":[[-2129,2185,2186,2187,-2183,-2125]],"type":"Polygon","properties":{"wells":53,"gas":28,"oil":null,"d&a":18}},{"arcs":[[-2132,2188,2189,2190,-2186,-2128]],"type":"Polygon","properties":{"wells":44,"gas":1,"oil":10,"d&a":13}},{"arcs":[[-2135,2191,2192,2193,-2189,-2131]],"type":"Polygon","properties":{"wells":22,"gas":6,"oil":0,"d&a":7}},{"arcs":[[-2138,2194,2195,2196,-2192,-2134]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2141,2197,2198,2199,-2195,-2137]],"type":"Polygon","properties":{"wells":14,"gas":1,"oil":2,"d&a":8}},{"arcs":[[-2144,2200,2201,2202,-2198,-2140]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-2147,2203,2204,2205,-2201,-2143]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2150,2206,2207,2208,-2204,-2146]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-2153,2209,2210,2211,-2207,-2149]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2156,2212,2213,2214,-2210,-2152]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2159,2215,2216,-2213,-2155]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2217,2218,2219,2220,2221,-2163]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":null,"d&a":3}},{"arcs":[[2222,2223,-2219,2224]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-2170,2225,2226,2227,2228,-2166]],"type":"Polygon","properties":{"wells":16,"gas":0,"oil":null,"d&a":11}},{"arcs":[[-2173,2229,2230,2231,-2226,-2169]],"type":"Polygon","properties":{"wells":42,"gas":null,"oil":null,"d&a":36}},{"arcs":[[-2176,2232,2233,2234,-2230,-2172]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":null,"d&a":10}},{"arcs":[[-2179,2235,2236,2237,-2233,-2175]],"type":"Polygon","properties":{"wells":97,"gas":5,"oil":23,"d&a":53}},{"arcs":[[-2182,2238,2239,2240,-2236,-2178]],"type":"Polygon","properties":{"wells":137,"gas":25,"oil":10,"d&a":64}},{"arcs":[[-2185,2241,2242,2243,-2239,-2181]],"type":"Polygon","properties":{"wells":236,"gas":9,"oil":71,"d&a":78}},{"arcs":[[-2188,2244,2245,2246,-2242,-2184]],"type":"Polygon","properties":{"wells":175,"gas":6,"oil":64,"d&a":68}},{"arcs":[[-2191,2247,2248,2249,-2245,-2187]],"type":"Polygon","properties":{"wells":39,"gas":5,"oil":2,"d&a":22}},{"arcs":[[-2194,2250,2251,2252,-2248,-2190]],"type":"Polygon","properties":{"wells":18,"gas":1,"oil":1,"d&a":8}},{"arcs":[[-2197,2253,2254,2255,-2251,-2193]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":2,"d&a":6}},{"arcs":[[-2200,2256,2257,2258,-2254,-2196]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2203,2259,2260,2261,-2257,-2199]],"type":"Polygon","properties":{"wells":44,"gas":3,"oil":3,"d&a":20}},{"arcs":[[-2206,2262,2263,2264,-2260,-2202]],"type":"Polygon","properties":{"wells":8,"gas":2,"oil":null,"d&a":6}},{"arcs":[[-2209,2265,2266,2267,-2263,-2205]],"type":"Polygon","properties":{"wells":7,"gas":3,"oil":null,"d&a":4}},{"arcs":[[-2212,2268,2269,2270,-2266,-2208]],"type":"Polygon","properties":{"wells":9,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-2215,2271,2272,2273,-2269,-2211]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-2217,2274,2275,2276,-2272,-2214]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2221,2277,2278,2279,2280]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":null,"d&a":12}},{"arcs":[[-2224,2281,2282,2283,-2278,-2220]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":5}},{"arcs":[[2284,2285,2286,2287,-2282,-2223]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":null}},{"arcs":[[2288,2289,2290,-2286,2291]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-2289,2292]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-2228,2293,2294,2295,2296]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-2232,2297,2298,2299,-2294,-2227]],"type":"Polygon","properties":{"wells":84,"gas":null,"oil":19,"d&a":45}},{"arcs":[[-2235,2300,2301,2302,-2298,-2231]],"type":"Polygon","properties":{"wells":94,"gas":null,"oil":10,"d&a":55}},{"arcs":[[-2238,2303,2304,2305,-2301,-2234]],"type":"Polygon","properties":{"wells":203,"gas":1,"oil":42,"d&a":91}},{"arcs":[[-2241,2306,2307,2308,-2304,-2237]],"type":"Polygon","properties":{"wells":79,"gas":0,"oil":2,"d&a":47}},{"arcs":[[-2244,2309,2310,2311,-2307,-2240]],"type":"Polygon","properties":{"wells":207,"gas":1,"oil":29,"d&a":125}},{"arcs":[[-2247,2312,2313,2314,-2310,-2243]],"type":"Polygon","properties":{"wells":85,"gas":19,"oil":10,"d&a":33}},{"arcs":[[-2250,2315,2316,2317,-2313,-2246]],"type":"Polygon","properties":{"wells":83,"gas":11,"oil":10,"d&a":30}},{"arcs":[[-2253,2318,2319,2320,-2316,-2249]],"type":"Polygon","properties":{"wells":232,"gas":1,"oil":112,"d&a":49}},{"arcs":[[-2256,2321,2322,2323,-2319,-2252]],"type":"Polygon","properties":{"wells":77,"gas":1,"oil":26,"d&a":26}},{"arcs":[[-2259,2324,2325,2326,-2322,-2255]],"type":"Polygon","properties":{"wells":17,"gas":1,"oil":3,"d&a":8}},{"arcs":[[-2262,2327,2328,2329,-2325,-2258]],"type":"Polygon","properties":{"wells":10,"gas":1,"oil":null,"d&a":6}},{"arcs":[[-2265,2330,2331,2332,-2328,-2261]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":null,"d&a":9}},{"arcs":[[-2268,2333,2334,2335,-2331,-2264]],"type":"Polygon","properties":{"wells":19,"gas":8,"oil":null,"d&a":9}},{"arcs":[[-2271,2336,2337,2338,-2334,-2267]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-2274,2339,2340,2341,-2337,-2270]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2277,2342,2343,2344,-2340,-2273]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":4}},{"arcs":[[2345,2346,2347,-2343,-2276]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-2280,2348,2349,2350,2351]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":0}},{"arcs":[[-2284,2352,2353,2354,-2349,-2279]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-2288,2355,2356,2357,-2353,-2283]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2291,2358,2359,-2356,-2287]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-2296,2360,2361,2362]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2300,2363,2364,2365,-2361,-2295]],"type":"Polygon","properties":{"wells":228,"gas":2,"oil":42,"d&a":135}},{"arcs":[[-2303,2366,2367,2368,-2364,-2299]],"type":"Polygon","properties":{"wells":199,"gas":1,"oil":43,"d&a":121}},{"arcs":[[-2306,2369,2370,2371,-2367,-2302]],"type":"Polygon","properties":{"wells":479,"gas":2,"oil":165,"d&a":213}},{"arcs":[[-2309,2372,2373,2374,-2370,-2305]],"type":"Polygon","properties":{"wells":231,"gas":4,"oil":26,"d&a":136}},{"arcs":[[-2312,2375,2376,2377,-2373,-2308]],"type":"Polygon","properties":{"wells":312,"gas":5,"oil":64,"d&a":121}},{"arcs":[[-2315,2378,2379,2380,-2376,-2311]],"type":"Polygon","properties":{"wells":49,"gas":13,"oil":null,"d&a":19}},{"arcs":[[-2318,2381,2382,2383,-2379,-2314]],"type":"Polygon","properties":{"wells":546,"gas":69,"oil":93,"d&a":247}},{"arcs":[[-2321,2384,2385,2386,-2382,-2317]],"type":"Polygon","properties":{"wells":218,"gas":11,"oil":5,"d&a":104}},{"arcs":[[-2324,2387,2388,2389,-2385,-2320]],"type":"Polygon","properties":{"wells":50,"gas":null,"oil":18,"d&a":18}},{"arcs":[[-2327,2390,2391,2392,-2388,-2323]],"type":"Polygon","properties":{"wells":102,"gas":5,"oil":22,"d&a":9}},{"arcs":[[-2330,2393,2394,2395,-2391,-2326]],"type":"Polygon","properties":{"wells":27,"gas":2,"oil":1,"d&a":16}},{"arcs":[[-2333,2396,2397,2398,-2394,-2329]],"type":"Polygon","properties":{"wells":38,"gas":5,"oil":1,"d&a":14}},{"arcs":[[-2336,2399,2400,2401,-2397,-2332]],"type":"Polygon","properties":{"wells":38,"gas":15,"oil":null,"d&a":17}},{"arcs":[[-2339,2402,2403,2404,-2400,-2335]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-2342,2405,2406,2407,-2403,-2338]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2345,2408,2409,2410,-2406,-2341]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2348,2411,2412,2413,-2409,-2344]],"type":"Polygon","properties":{"wells":19,"gas":null,"oil":null,"d&a":18}},{"arcs":[[2414,2415,2416,2417,-2412,-2347]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-2351,2418,2419,2420,-2416,2421]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-2355,2422,2423,2424,-2419,-2350]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-2358,2425,2426,2427,-2423,-2354]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2360,2428,2429,2430,-2426,-2357]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2431,2432]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-2366,2433,2434,2435,2436,-2362]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":0,"d&a":8}},{"arcs":[[-2369,2437,2438,2439,-2434,-2365]],"type":"Polygon","properties":{"wells":61,"gas":0,"oil":3,"d&a":30}},{"arcs":[[-2372,2440,2441,2442,-2438,-2368]],"type":"Polygon","properties":{"wells":46,"gas":1,"oil":6,"d&a":20}},{"arcs":[[-2375,2443,2444,2445,-2441,-2371]],"type":"Polygon","properties":{"wells":189,"gas":2,"oil":27,"d&a":118}},{"arcs":[[-2378,2446,2447,2448,-2444,-2374]],"type":"Polygon","properties":{"wells":113,"gas":25,"oil":2,"d&a":53}},{"arcs":[[-2381,2449,2450,2451,-2447,-2377]],"type":"Polygon","properties":{"wells":81,"gas":5,"oil":2,"d&a":60}},{"arcs":[[-2384,2452,2453,2454,-2450,-2380]],"type":"Polygon","properties":{"wells":334,"gas":9,"oil":62,"d&a":202}},{"arcs":[[-2387,2455,2456,2457,-2453,-2383]],"type":"Polygon","properties":{"wells":291,"gas":24,"oil":62,"d&a":123}},{"arcs":[[-2390,2458,2459,2460,-2456,-2386]],"type":"Polygon","properties":{"wells":312,"gas":6,"oil":69,"d&a":136}},{"arcs":[[-2393,2461,2462,2463,-2459,-2389]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-2396,2464,2465,2466,-2462,-2392]],"type":"Polygon","properties":{"wells":69,"gas":2,"oil":21,"d&a":21}},{"arcs":[[-2399,2467,2468,2469,-2465,-2395]],"type":"Polygon","properties":{"wells":60,"gas":10,"oil":5,"d&a":18}},{"arcs":[[-2402,2470,2471,2472,-2468,-2398]],"type":"Polygon","properties":{"wells":57,"gas":11,"oil":null,"d&a":9}},{"arcs":[[-2405,2473,2474,2475,-2471,-2401]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":null,"d&a":13}},{"arcs":[[-2408,2476,2477,2478,-2474,-2404]],"type":"Polygon","properties":{"wells":18,"gas":4,"oil":null,"d&a":13}},{"arcs":[[-2411,2479,2480,2481,-2477,-2407]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-2414,2482,2483,2484,-2480,-2410]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-2418,2485,2486,2487,-2483,-2413]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-2421,2488,2489,2490,-2486,-2417]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2425,2491,2492,2493,-2489,-2420]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-2428,2494,2495,2496,-2492,-2424]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-2431,2497,2498,2499,-2495,-2427]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[2500,2501,2502,2503,-2498,-2430]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-2432,2504,2505,-2502,2506]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2436,2507,2508,2509]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":1,"d&a":2}},{"arcs":[[-2440,2510,2511,2512,-2508,-2435]],"type":"Polygon","properties":{"wells":76,"gas":1,"oil":12,"d&a":30}},{"arcs":[[-2443,2513,2514,2515,-2511,-2439]],"type":"Polygon","properties":{"wells":75,"gas":2,"oil":8,"d&a":38}},{"arcs":[[-2446,2516,2517,2518,-2514,-2442]],"type":"Polygon","properties":{"wells":21,"gas":null,"oil":null,"d&a":14}},{"arcs":[[-2449,2519,2520,2521,-2517,-2445]],"type":"Polygon","properties":{"wells":95,"gas":6,"oil":5,"d&a":47}},{"arcs":[[-2452,2522,2523,2524,-2520,-2448]],"type":"Polygon","properties":{"wells":64,"gas":null,"oil":2,"d&a":52}},{"arcs":[[-2455,2525,2526,2527,-2523,-2451]],"type":"Polygon","properties":{"wells":743,"gas":1,"oil":275,"d&a":375}},{"arcs":[[-2458,2528,2529,2530,-2526,-2454]],"type":"Polygon","properties":{"wells":306,"gas":0,"oil":64,"d&a":172}},{"arcs":[[-2461,2531,2532,2533,-2529,-2457]],"type":"Polygon","properties":{"wells":208,"gas":4,"oil":60,"d&a":93}},{"arcs":[[-2464,2534,2535,2536,-2532,-2460]],"type":"Polygon","properties":{"wells":161,"gas":1,"oil":73,"d&a":33}},{"arcs":[[-2467,2537,2538,2539,-2535,-2463]],"type":"Polygon","properties":{"wells":13,"gas":1,"oil":1,"d&a":8}},{"arcs":[[-2470,2540,2541,2542,-2538,-2466]],"type":"Polygon","properties":{"wells":75,"gas":null,"oil":20,"d&a":30}},{"arcs":[[-2473,2543,2544,2545,-2541,-2469]],"type":"Polygon","properties":{"wells":91,"gas":18,"oil":null,"d&a":8}},{"arcs":[[-2476,2546,2547,2548,-2544,-2472]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-2479,2549,2550,2551,-2547,-2475]],"type":"Polygon","properties":{"wells":13,"gas":null,"oil":null,"d&a":13}},{"arcs":[[-2482,2552,2553,2554,-2550,-2478]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":null,"d&a":11}},{"arcs":[[-2485,2555,2556,2557,-2553,-2481]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-2488,2558,2559,2560,-2556,-2484]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-2491,2561,2562,2563,-2559,-2487]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2494,2564,2565,2566,-2562,-2490]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2500,2567,2568,2569,2570,-2496]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2504,2571,2572,-2568,-2499]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2506,2573,-2572,-2503]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2513,2574,2575,2576,2577,-2509]],"type":"Polygon","properties":{"wells":59,"gas":1,"oil":3,"d&a":27}},{"arcs":[[-2516,2578,2579,2580,-2575,-2512]],"type":"Polygon","properties":{"wells":99,"gas":4,"oil":13,"d&a":50}},{"arcs":[[-2519,2581,2582,2583,-2579,-2515]],"type":"Polygon","properties":{"wells":117,"gas":1,"oil":46,"d&a":40}},{"arcs":[[-2522,2584,2585,2586,-2582,-2518]],"type":"Polygon","properties":{"wells":178,"gas":17,"oil":16,"d&a":84}},{"arcs":[[-2525,2587,2588,2589,-2585,-2521]],"type":"Polygon","properties":{"wells":52,"gas":13,"oil":null,"d&a":20}},{"arcs":[[-2528,2590,2591,2592,-2588,-2524]],"type":"Polygon","properties":{"wells":300,"gas":20,"oil":19,"d&a":191}},{"arcs":[[-2531,2593,2594,2595,-2591,-2527]],"type":"Polygon","properties":{"wells":153,"gas":1,"oil":18,"d&a":102}},{"arcs":[[-2534,2596,2597,2598,-2594,-2530]],"type":"Polygon","properties":{"wells":477,"gas":2,"oil":171,"d&a":172}},{"arcs":[[-2537,2599,2600,2601,-2597,-2533]],"type":"Polygon","properties":{"wells":214,"gas":2,"oil":120,"d&a":28}},{"arcs":[[-2540,2602,2603,2604,-2600,-2536]],"type":"Polygon","properties":{"wells":423,"gas":null,"oil":259,"d&a":51}},{"arcs":[[-2543,2605,2606,2607,-2603,-2539]],"type":"Polygon","properties":{"wells":51,"gas":null,"oil":13,"d&a":18}},{"arcs":[[-2546,2608,2609,2610,-2606,-2542]],"type":"Polygon","properties":{"wells":14,"gas":2,"oil":null,"d&a":7}},{"arcs":[[-2549,2611,2612,2613,-2609,-2545]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2552,2614,2615,2616,-2612,-2548]],"type":"Polygon","properties":{"wells":12,"gas":2,"oil":1,"d&a":7}},{"arcs":[[-2555,2617,2618,2619,-2615,-2551]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":1,"d&a":6}},{"arcs":[[-2558,2620,2621,2622,-2618,-2554]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2561,2623,2624,2625,-2621,-2557]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2564,2626,2627,2628,-2624,-2560]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-2567,2629,2630,2631,-2627,-2563]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2632,2633,2634,2635,-2630,-2566]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2570,2636,2637,2638,-2634,2639]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2577,2640,2641,2642]],"type":"Polygon","properties":{"wells":16,"gas":0,"oil":0,"d&a":2}},{"arcs":[[-2581,2643,2644,2645,-2641,-2576]],"type":"Polygon","properties":{"wells":153,"gas":3,"oil":23,"d&a":80}},{"arcs":[[-2584,2646,2647,2648,-2644,-2580]],"type":"Polygon","properties":{"wells":247,"gas":1,"oil":53,"d&a":110}},{"arcs":[[-2587,2649,2650,2651,-2647,-2583]],"type":"Polygon","properties":{"wells":409,"gas":1,"oil":108,"d&a":185}},{"arcs":[[-2590,2652,2653,2654,-2650,-2586]],"type":"Polygon","properties":{"wells":45,"gas":3,"oil":1,"d&a":20}},{"arcs":[[-2593,2655,2656,2657,-2653,-2589]],"type":"Polygon","properties":{"wells":95,"gas":0,"oil":8,"d&a":66}},{"arcs":[[-2596,2658,2659,2660,-2656,-2592]],"type":"Polygon","properties":{"wells":140,"gas":0,"oil":18,"d&a":100}},{"arcs":[[-2599,2661,2662,2663,-2659,-2595]],"type":"Polygon","properties":{"wells":92,"gas":null,"oil":6,"d&a":63}},{"arcs":[[-2602,2664,2665,2666,-2662,-2598]],"type":"Polygon","properties":{"wells":496,"gas":2,"oil":216,"d&a":161}},{"arcs":[[-2605,2667,2668,2669,-2665,-2601]],"type":"Polygon","properties":{"wells":41,"gas":1,"oil":8,"d&a":24}},{"arcs":[[-2608,2670,2671,2672,-2668,-2604]],"type":"Polygon","properties":{"wells":141,"gas":2,"oil":41,"d&a":25}},{"arcs":[[-2611,2673,2674,2675,-2671,-2607]],"type":"Polygon","properties":{"wells":267,"gas":null,"oil":79,"d&a":55}},{"arcs":[[-2614,2676,2677,2678,-2674,-2610]],"type":"Polygon","properties":{"wells":71,"gas":null,"oil":19,"d&a":23}},{"arcs":[[-2617,2679,2680,2681,-2677,-2613]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":0,"d&a":4}},{"arcs":[[-2620,2682,2683,2684,-2680,-2616]],"type":"Polygon","properties":{"wells":16,"gas":null,"oil":7,"d&a":5}},{"arcs":[[-2623,2685,2686,2687,-2683,-2619]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-2626,2688,2689,2690,-2686,-2622]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-2629,2691,2692,2693,-2689,-2625]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-2632,2694,2695,2696,-2692,-2628]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2639,2697,2698,2699,2700,-2635]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[2701,2702,2703,-2698,-2638]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2704,2705,2706,2707]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[2708,2709,-2705,2710]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2709,2711]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2646,2712,2713,2714,2715,-2642]],"type":"Polygon","properties":{"wells":422,"gas":5,"oil":115,"d&a":162}},{"arcs":[[-2649,2716,2717,2718,-2713,-2645]],"type":"Polygon","properties":{"wells":445,"gas":8,"oil":134,"d&a":167}},{"arcs":[[-2652,2719,2720,2721,-2717,-2648]],"type":"Polygon","properties":{"wells":420,"gas":1,"oil":139,"d&a":170}},{"arcs":[[-2655,2722,2723,2724,-2720,-2651]],"type":"Polygon","properties":{"wells":223,"gas":0,"oil":47,"d&a":121}},{"arcs":[[-2658,2725,2726,2727,-2723,-2654]],"type":"Polygon","properties":{"wells":83,"gas":1,"oil":8,"d&a":54}},{"arcs":[[-2661,2728,2729,2730,-2726,-2657]],"type":"Polygon","properties":{"wells":227,"gas":1,"oil":14,"d&a":175}},{"arcs":[[-2664,2731,2732,2733,-2729,-2660]],"type":"Polygon","properties":{"wells":105,"gas":1,"oil":2,"d&a":72}},{"arcs":[[-2667,2734,2735,2736,-2732,-2663]],"type":"Polygon","properties":{"wells":598,"gas":1,"oil":253,"d&a":203}},{"arcs":[[-2670,2737,2738,2739,-2735,-2666]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-2673,2740,2741,2742,-2738,-2669]],"type":"Polygon","properties":{"wells":15,"gas":3,"oil":1,"d&a":4}},{"arcs":[[-2676,2743,2744,2745,-2741,-2672]],"type":"Polygon","properties":{"wells":17,"gas":1,"oil":3,"d&a":6}},{"arcs":[[-2679,2746,2747,2748,-2744,-2675]],"type":"Polygon","properties":{"wells":144,"gas":null,"oil":45,"d&a":20}},{"arcs":[[-2682,2749,2750,2751,-2747,-2678]],"type":"Polygon","properties":{"wells":22,"gas":null,"oil":6,"d&a":9}},{"arcs":[[-2685,2752,2753,2754,-2750,-2681]],"type":"Polygon","properties":{"wells":68,"gas":null,"oil":39,"d&a":6}},{"arcs":[[-2691,2755,2756,-2687]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2694,2757,2758,2759,-2756,-2690]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2697,2760,2761,2762,-2758,-2693]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[2763,2764,2765,2766,-2761,-2696]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2700,2767,2768,2769,-2765,2770]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2704,2771,2772,2773,-2768,-2699]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[2774,2775,2776,2777,-2772,-2703]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-2707,2778,2779,2780,-2776,2781]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2715,2782,2783,2784]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":0,"d&a":1}},{"arcs":[[-2719,2785,2786,2787,-2783,-2714]],"type":"Polygon","properties":{"wells":811,"gas":4,"oil":265,"d&a":322}},{"arcs":[[-2722,2788,2789,2790,-2786,-2718]],"type":"Polygon","properties":{"wells":596,"gas":2,"oil":129,"d&a":263}},{"arcs":[[-2725,2791,2792,2793,-2789,-2721]],"type":"Polygon","properties":{"wells":360,"gas":3,"oil":62,"d&a":192}},{"arcs":[[-2728,2794,2795,2796,-2792,-2724]],"type":"Polygon","properties":{"wells":103,"gas":null,"oil":19,"d&a":66}},{"arcs":[[-2731,2797,2798,2799,-2795,-2727]],"type":"Polygon","properties":{"wells":114,"gas":5,"oil":6,"d&a":85}},{"arcs":[[-2734,2800,2801,2802,-2798,-2730]],"type":"Polygon","properties":{"wells":293,"gas":1,"oil":82,"d&a":140}},{"arcs":[[-2737,2803,2804,2805,-2801,-2733]],"type":"Polygon","properties":{"wells":1135,"gas":3,"oil":390,"d&a":451}},{"arcs":[[-2740,2806,2807,2808,-2804,-2736]],"type":"Polygon","properties":{"wells":30,"gas":1,"oil":null,"d&a":21}},{"arcs":[[-2743,2809,2810,2811,-2807,-2739]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-2746,2812,2813,2814,-2810,-2742]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2749,2815,2816,2817,-2813,-2745]],"type":"Polygon","properties":{"wells":16,"gas":6,"oil":1,"d&a":1}},{"arcs":[[-2752,2818,2819,2820,-2816,-2748]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":1,"d&a":3}},{"arcs":[[-2755,2821,2822,2823,-2819,-2751]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2824,2825,2826,-2822,-2754]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2763,2827,2828,2829,2830,-2759]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2767,2831,2832,2833,-2828,-2762]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2774,2834,2835,2836,2837,-2769]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2778,2838,2839,-2835,-2773]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2781,2840,2841,-2839,-2777]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[2842,2843,2844,-2841,-2780]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[2845,2846,2847]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[2848,2849,2850,-2846,2851]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":null,"d&a":2}},{"arcs":[[2852,2853,2854,-2849,2855]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2856,2857,-2853,2858]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2857,2859]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2788,2860,2861,2862,-2784]],"type":"Polygon","properties":{"wells":38,"gas":null,"oil":6,"d&a":21}},{"arcs":[[-2791,2863,2864,2865,-2861,-2787]],"type":"Polygon","properties":{"wells":516,"gas":3,"oil":141,"d&a":247}},{"arcs":[[-2794,2866,2867,2868,-2864,-2790]],"type":"Polygon","properties":{"wells":673,"gas":2,"oil":189,"d&a":340}},{"arcs":[[-2797,2869,2870,2871,-2867,-2793]],"type":"Polygon","properties":{"wells":735,"gas":1,"oil":189,"d&a":356}},{"arcs":[[-2800,2872,2873,2874,-2870,-2796]],"type":"Polygon","properties":{"wells":405,"gas":2,"oil":131,"d&a":150}},{"arcs":[[-2803,2875,2876,2877,-2873,-2799]],"type":"Polygon","properties":{"wells":240,"gas":1,"oil":22,"d&a":157}},{"arcs":[[-2806,2878,2879,2880,-2876,-2802]],"type":"Polygon","properties":{"wells":287,"gas":2,"oil":40,"d&a":172}},{"arcs":[[-2809,2881,2882,2883,-2879,-2805]],"type":"Polygon","properties":{"wells":59,"gas":0,"oil":1,"d&a":36}},{"arcs":[[-2812,2884,2885,2886,-2882,-2808]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-2815,2887,2888,2889,-2885,-2811]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2818,2890,2891,2892,-2888,-2814]],"type":"Polygon","properties":{"wells":2,"gas":0,"oil":null,"d&a":2}},{"arcs":[[-2821,2893,2894,2895,-2891,-2817]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-2824,2896,2897,2898,-2894,-2820]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2827,2899,2900,2901,-2897,-2823]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":4}},{"arcs":[[2902,2903,2904,2905,-2900,-2826]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2906,2907,-2904,2908]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2830,2909,-2907,2910]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2911,2912,2913,2914,2915,-2833]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-2837,2916,-2913,2917]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[2918,2919,2920,-2844]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2851,2921,2922,2923,2924,-2847]],"type":"Polygon","properties":{"wells":50,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2855,2925,2926,2927,-2922,-2850]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-2866,2928,2929,2930,2931,-2862]],"type":"Polygon","properties":{"wells":193,"gas":1,"oil":29,"d&a":94}},{"arcs":[[-2869,2932,2933,2934,-2929,-2865]],"type":"Polygon","properties":{"wells":939,"gas":14,"oil":272,"d&a":401}},{"arcs":[[-2872,2935,2936,2937,-2933,-2868]],"type":"Polygon","properties":{"wells":577,"gas":5,"oil":140,"d&a":285}},{"arcs":[[-2875,2938,2939,2940,-2936,-2871]],"type":"Polygon","properties":{"wells":412,"gas":2,"oil":119,"d&a":204}},{"arcs":[[-2878,2941,2942,2943,-2939,-2874]],"type":"Polygon","properties":{"wells":624,"gas":null,"oil":160,"d&a":323}},{"arcs":[[-2881,2944,2945,2946,-2942,-2877]],"type":"Polygon","properties":{"wells":206,"gas":null,"oil":22,"d&a":105}},{"arcs":[[-2884,2947,2948,2949,-2945,-2880]],"type":"Polygon","properties":{"wells":36,"gas":null,"oil":0,"d&a":19}},{"arcs":[[-2887,2950,2951,2952,-2948,-2883]],"type":"Polygon","properties":{"wells":15,"gas":null,"oil":null,"d&a":14}},{"arcs":[[-2890,2953,2954,2955,-2951,-2886]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-2893,2956,2957,2958,-2954,-2889]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-2899,2959,2960,2961,2962,-2895]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2902,2963,2964,2965,-2960,-2898]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2906,2966,2967,-2964,-2901]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2915,2968,2969,2970]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2971,2972,2973]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2920,2974,2975,2976,-2972,2977]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2924,2978,2979,2980]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[2981,2982,2983,2984,-2927]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-2931,2985,2986,2987]],"type":"Polygon","properties":{"wells":263,"gas":12,"oil":65,"d&a":123}},{"arcs":[[-2935,2988,2989,2990,-2986,-2930]],"type":"Polygon","properties":{"wells":1156,"gas":22,"oil":292,"d&a":517}},{"arcs":[[-2938,2991,2992,2993,-2989,-2934]],"type":"Polygon","properties":{"wells":985,"gas":9,"oil":352,"d&a":392}},{"arcs":[[-2941,2994,2995,2996,-2992,-2937]],"type":"Polygon","properties":{"wells":579,"gas":3,"oil":231,"d&a":203}},{"arcs":[[-2944,2997,2998,2999,-2995,-2940]],"type":"Polygon","properties":{"wells":407,"gas":null,"oil":87,"d&a":234}},{"arcs":[[-2947,3000,3001,3002,-2998,-2943]],"type":"Polygon","properties":{"wells":231,"gas":null,"oil":60,"d&a":117}},{"arcs":[[-2950,3003,3004,3005,-3001,-2946]],"type":"Polygon","properties":{"wells":59,"gas":null,"oil":5,"d&a":42}},{"arcs":[[-2953,3006,3007,3008,-3004,-2949]],"type":"Polygon","properties":{"wells":11,"gas":1,"oil":null,"d&a":9}},{"arcs":[[-2956,3009,3010,3011,-3007,-2952]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-2959,3012,3013,3014,-3010,-2955]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[3015,3016,3017,3018,-3013,-2958]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2962,3019,3020,3021,-3017,3022]],"type":"Polygon","properties":{"wells":3,"gas":1,"oil":null,"d&a":1}},{"arcs":[[-2966,3023,3024,3025,-3020,-2961]],"type":"Polygon","properties":{"wells":17,"gas":null,"oil":6,"d&a":6}},{"arcs":[[-2968,3026,3027,3028,-3024,-2965]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3029]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3030,-2970]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2977,3031,3032,3033,3034,-2973]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3035,3036,3037,-3032,-2976]],"type":"Polygon","properties":{"wells":2,"gas":2,"oil":null,"d&a":0}},{"arcs":[[3038,3039,3040,3041,3042,-2980]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-2984,3043,3044,3045,-3040,3046]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3047,3048,-3044,-2983]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-2991,3049,3050,3051,3052,-2987]],"type":"Polygon","properties":{"wells":975,"gas":30,"oil":204,"d&a":450}},{"arcs":[[-2994,3053,3054,3055,-3050,-2990]],"type":"Polygon","properties":{"wells":641,"gas":18,"oil":199,"d&a":272}},{"arcs":[[-2997,3056,3057,3058,-3054,-2993]],"type":"Polygon","properties":{"wells":414,"gas":4,"oil":83,"d&a":226}},{"arcs":[[-3000,3059,3060,3061,-3057,-2996]],"type":"Polygon","properties":{"wells":90,"gas":1,"oil":9,"d&a":40}},{"arcs":[[-3003,3062,3063,3064,-3060,-2999]],"type":"Polygon","properties":{"wells":388,"gas":null,"oil":119,"d&a":188}},{"arcs":[[-3006,3065,3066,3067,-3063,-3002]],"type":"Polygon","properties":{"wells":28,"gas":null,"oil":1,"d&a":18}},{"arcs":[[-3009,3068,3069,3070,-3066,-3005]],"type":"Polygon","properties":{"wells":22,"gas":null,"oil":null,"d&a":17}},{"arcs":[[-3012,3071,3072,3073,-3069,-3008]],"type":"Polygon","properties":{"wells":24,"gas":2,"oil":null,"d&a":16}},{"arcs":[[-3015,3074,3075,3076,-3072,-3011]],"type":"Polygon","properties":{"wells":43,"gas":null,"oil":7,"d&a":32}},{"arcs":[[-3019,3077,3078,3079,-3075,-3014]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-3026,3080,3081,3082,3083,-3021]],"type":"Polygon","properties":{"wells":8,"gas":0,"oil":null,"d&a":4}},{"arcs":[[-3029,3084,3085,3086,-3081,-3025]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3087,3088,3089,-3085,-3028]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3089,3090]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3034,3091,3092]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3038,3093,3094,-3092,-3033]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3095,3096,3097,-3094,-3037]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":1}},{"arcs":[[-3042,3098,3099,3100,-3097,3101]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3046,3102,3103,3104,-3099,-3041]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3049,3105,3106,-3103,-3045]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[3107,3108,3109]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3110,-3108,3111]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":0}},{"arcs":[[-3052,3112,3113,3114,3115]],"type":"Polygon","properties":{"wells":616,"gas":13,"oil":202,"d&a":221}},{"arcs":[[-3056,3116,3117,3118,-3113,-3051]],"type":"Polygon","properties":{"wells":609,"gas":7,"oil":153,"d&a":246}},{"arcs":[[-3059,3119,3120,3121,-3117,-3055]],"type":"Polygon","properties":{"wells":191,"gas":5,"oil":27,"d&a":104}},{"arcs":[[-3062,3122,3123,3124,-3120,-3058]],"type":"Polygon","properties":{"wells":70,"gas":null,"oil":7,"d&a":45}},{"arcs":[[-3065,3125,3126,3127,-3123,-3061]],"type":"Polygon","properties":{"wells":136,"gas":null,"oil":52,"d&a":29}},{"arcs":[[-3068,3128,3129,3130,-3126,-3064]],"type":"Polygon","properties":{"wells":36,"gas":null,"oil":3,"d&a":25}},{"arcs":[[-3071,3131,3132,3133,-3129,-3067]],"type":"Polygon","properties":{"wells":14,"gas":0,"oil":null,"d&a":7}},{"arcs":[[-3074,3134,3135,3136,-3132,-3070]],"type":"Polygon","properties":{"wells":15,"gas":null,"oil":2,"d&a":11}},{"arcs":[[-3077,3137,3138,3139,-3135,-3073]],"type":"Polygon","properties":{"wells":128,"gas":null,"oil":44,"d&a":55}},{"arcs":[[-3080,3140,3141,3142,-3138,-3076]],"type":"Polygon","properties":{"wells":14,"gas":null,"oil":null,"d&a":12}},{"arcs":[[3143,3144,3145,3146,-3141,-3079]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-3083,3147,3148,3149,-3145,3150]],"type":"Polygon","properties":{"wells":40,"gas":27,"oil":null,"d&a":4}},{"arcs":[[-3087,3151,3152,3153,-3148,-3082]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3154]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3105,3155,3156,3157,-3100]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3107,3158,3159,3160,-3156,-3104]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3161,3162,3163]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3111,3164,3165,3166,3167,-3109]],"type":"Polygon","properties":{"wells":3,"gas":0,"oil":null,"d&a":3}},{"arcs":[[-3115,3168,3169,3170]],"type":"Polygon","properties":{"wells":13,"gas":null,"oil":3,"d&a":7}},{"arcs":[[-3119,3171,3172,3173,-3169,-3114]],"type":"Polygon","properties":{"wells":271,"gas":2,"oil":72,"d&a":119}},{"arcs":[[-3122,3174,3175,3176,-3172,-3118]],"type":"Polygon","properties":{"wells":186,"gas":2,"oil":33,"d&a":96}},{"arcs":[[-3125,3177,3178,3179,-3175,-3121]],"type":"Polygon","properties":{"wells":45,"gas":1,"oil":4,"d&a":23}},{"arcs":[[-3128,3180,3181,3182,-3178,-3124]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":1,"d&a":2}},{"arcs":[[-3134,3183,3184,3185,3186,-3130]],"type":"Polygon","properties":{"wells":19,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-3137,3187,3188,3189,-3184,-3133]],"type":"Polygon","properties":{"wells":18,"gas":1,"oil":null,"d&a":14}},{"arcs":[[-3140,3190,3191,3192,-3188,-3136]],"type":"Polygon","properties":{"wells":158,"gas":null,"oil":45,"d&a":81}},{"arcs":[[-3143,3193,3194,3195,-3191,-3139]],"type":"Polygon","properties":{"wells":83,"gas":null,"oil":36,"d&a":38}},{"arcs":[[-3147,3196,3197,3198,-3194,-3142]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3150,3199,3200,3201,-3197,-3146]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3154,3202,3203,3204,-3200,-3149]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":8}},{"arcs":[[3205,3206,-3203,-3153]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":8}},{"arcs":[[3207]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[3208,3209,3210,3211]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3212,3213,-3209,3214]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3161,3215,3216,3217,-3157]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3218,3219,3220,3221,-3216,-3160]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3163,3222,3223,3224,-3220,3225]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[3226,3227,3228,3229,-3223,-3162]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-3167,3230,3231,3232,-3228,3233]],"type":"Polygon","properties":{"wells":1,"gas":0,"oil":null,"d&a":1}},{"arcs":[[3234,3235,3236,-3231,-3166]],"type":"Polygon","properties":{"wells":14,"gas":9,"oil":null,"d&a":3}},{"arcs":[[-3174,3237,3238,3239,-3170]],"type":"Polygon","properties":{"wells":60,"gas":null,"oil":22,"d&a":10}},{"arcs":[[-3177,3240,3241,3242,-3238,-3173]],"type":"Polygon","properties":{"wells":222,"gas":1,"oil":49,"d&a":107}},{"arcs":[[-3180,3243,3244,3245,-3241,-3176]],"type":"Polygon","properties":{"wells":150,"gas":1,"oil":38,"d&a":70}},{"arcs":[[-3183,3246,3247,3248,-3244,-3179]],"type":"Polygon","properties":{"wells":56,"gas":null,"oil":10,"d&a":28}},{"arcs":[[3249,3250,3251,3252,-3247,-3182]],"type":"Polygon","properties":{"wells":17,"gas":0,"oil":2,"d&a":10}},{"arcs":[[-3186,3253,3254,3255,-3251,3256]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-3190,3257,3258,3259,-3254,-3185]],"type":"Polygon","properties":{"wells":30,"gas":null,"oil":1,"d&a":18}},{"arcs":[[-3193,3260,3261,3262,-3258,-3189]],"type":"Polygon","properties":{"wells":15,"gas":null,"oil":3,"d&a":10}},{"arcs":[[-3196,3263,3264,3265,-3261,-3192]],"type":"Polygon","properties":{"wells":107,"gas":null,"oil":33,"d&a":54}},{"arcs":[[-3199,3266,3267,3268,-3264,-3195]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":1,"d&a":8}},{"arcs":[[-3202,3269,3270,3271,-3267,-3198]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-3205,3272,3273,3274,-3270,-3201]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-3207,3275,3276,-3273,-3204]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":8}},{"arcs":[[3277,3278]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3279,3280,-3278,3281]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":4}},{"arcs":[[3282,3283,3284]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3211,3285,3286,-3283,3287]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3288,3289,3290,-3213]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3222,3291,3292,3293,-3217]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3225,3294,3295,3296,-3292,-3221]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-3230,3297,-3295,-3224]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3237,3298,3299,3300,3301,-3232]],"type":"Polygon","properties":{"wells":18,"gas":8,"oil":null,"d&a":2}},{"arcs":[[3302,3303,-3299,-3236]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3243,3304,3305,3306,3307,-3239]],"type":"Polygon","properties":{"wells":30,"gas":null,"oil":2,"d&a":21}},{"arcs":[[-3246,3308,3309,3310,-3305,-3242]],"type":"Polygon","properties":{"wells":65,"gas":null,"oil":14,"d&a":27}},{"arcs":[[-3249,3311,3312,3313,-3309,-3245]],"type":"Polygon","properties":{"wells":16,"gas":null,"oil":2,"d&a":11}},{"arcs":[[-3253,3314,3315,3316,-3312,-3248]],"type":"Polygon","properties":{"wells":19,"gas":null,"oil":2,"d&a":12}},{"arcs":[[-3256,3317,3318,3319,-3315,-3252]],"type":"Polygon","properties":{"wells":11,"gas":1,"oil":null,"d&a":8}},{"arcs":[[-3260,3320,3321,3322,-3318,-3255]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":0,"d&a":11}},{"arcs":[[-3263,3323,3324,3325,-3321,-3259]],"type":"Polygon","properties":{"wells":26,"gas":null,"oil":3,"d&a":22}},{"arcs":[[-3266,3326,3327,3328,-3324,-3262]],"type":"Polygon","properties":{"wells":49,"gas":null,"oil":16,"d&a":27}},{"arcs":[[-3269,3329,3330,3331,-3327,-3265]],"type":"Polygon","properties":{"wells":25,"gas":0,"oil":4,"d&a":15}},{"arcs":[[-3272,3332,3333,3334,-3330,-3268]],"type":"Polygon","properties":{"wells":25,"gas":null,"oil":4,"d&a":18}},{"arcs":[[-3275,3335,3336,3337,-3333,-3271]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3277,3338,3339,3340,-3336,-3274]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3341,3342]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3343,3344,3345,-3280]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3287,3346,3347,3348,-3284]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3290,3349,3350,3351,3352]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3353,3354,3355]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3297,3356,-3293]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3301,3357,3358,3359]],"type":"Polygon","properties":{"wells":4,"gas":0,"oil":null,"d&a":4}},{"arcs":[[-3304,3360,3361,3362,-3358,-3300]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-3307,3363,3364,3365,3366]],"type":"Polygon","properties":{"wells":55,"gas":1,"oil":12,"d&a":17}},{"arcs":[[-3311,3367,3368,3369,-3364,-3306]],"type":"Polygon","properties":{"wells":31,"gas":null,"oil":10,"d&a":9}},{"arcs":[[-3314,3370,3371,3372,-3368,-3310]],"type":"Polygon","properties":{"wells":75,"gas":null,"oil":11,"d&a":35}},{"arcs":[[-3317,3373,3374,3375,-3371,-3313]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":0,"d&a":9}},{"arcs":[[-3320,3376,3377,3378,-3374,-3316]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":0,"d&a":3}},{"arcs":[[-3323,3379,3380,3381,-3377,-3319]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-3326,3382,3383,3384,-3380,-3322]],"type":"Polygon","properties":{"wells":21,"gas":null,"oil":0,"d&a":15}},{"arcs":[[-3329,3385,3386,3387,-3383,-3325]],"type":"Polygon","properties":{"wells":15,"gas":null,"oil":null,"d&a":13}},{"arcs":[[-3332,3388,3389,3390,-3386,-3328]],"type":"Polygon","properties":{"wells":22,"gas":3,"oil":null,"d&a":13}},{"arcs":[[-3335,3391,3392,3393,-3389,-3331]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":3,"d&a":8}},{"arcs":[[-3338,3394,3395,3396,-3392,-3334]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":10}},{"arcs":[[-3341,3397,3398,3399,-3395,-3337]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":6}},{"arcs":[[3400,3401,3402,3403,-3398,-3340]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3404,3405,3406,-3402,3407]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[3408,-3405,3409]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3410,-3342]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[3411,3412,3413,3414,3415,-3345]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3348,3416,-3413,3417]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-3352,3418,3419,3420,3421]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3422,3423,3424,-3419,-3351]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3355,3425,3426,-3424,3427]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3428,-3426,-3354]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3363,3429,3430,3431,3432,-3359]],"type":"Polygon","properties":{"wells":13,"gas":null,"oil":null,"d&a":4}},{"arcs":[[3433,3434,3435,3436,-3430,-3362]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3437,3438,3439,-3435,3440]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3441,-3438,3442]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3366,3443,3444]],"type":"Polygon","properties":{"wells":4,"gas":0,"oil":null,"d&a":4}},{"arcs":[[-3370,3445,3446,3447,-3444,-3365]],"type":"Polygon","properties":{"wells":97,"gas":null,"oil":23,"d&a":38}},{"arcs":[[-3373,3448,3449,3450,-3446,-3369]],"type":"Polygon","properties":{"wells":22,"gas":1,"oil":1,"d&a":9}},{"arcs":[[-3376,3451,3452,3453,-3449,-3372]],"type":"Polygon","properties":{"wells":50,"gas":null,"oil":15,"d&a":22}},{"arcs":[[-3379,3454,3455,3456,-3452,-3375]],"type":"Polygon","properties":{"wells":48,"gas":1,"oil":9,"d&a":9}},{"arcs":[[-3382,3457,3458,3459,-3455,-3378]],"type":"Polygon","properties":{"wells":10,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-3385,3460,3461,3462,-3458,-3381]],"type":"Polygon","properties":{"wells":8,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-3388,3463,3464,3465,-3461,-3384]],"type":"Polygon","properties":{"wells":63,"gas":1,"oil":9,"d&a":46}},{"arcs":[[-3391,3466,3467,3468,-3464,-3387]],"type":"Polygon","properties":{"wells":15,"gas":null,"oil":0,"d&a":14}},{"arcs":[[-3394,3469,3470,3471,-3467,-3390]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-3397,3472,3473,3474,-3470,-3393]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3400,3475,3476,3477,-3473,-3396]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":0,"d&a":3}},{"arcs":[[-3404,3478,3479,3480,-3476,-3399]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-3407,3481,3482,3483,-3479,-3403]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":2,"d&a":10}},{"arcs":[[-3409,3484,3485,3486,-3482,-3406]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3415,3487]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3421,3488]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3489,3490,3491]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3432,3492,3493,3494,3495]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3437,3496,3497,3498,-3493,-3431]],"type":"Polygon","properties":{"wells":74,"gas":null,"oil":null,"d&a":41}},{"arcs":[[-3440,3499,3500,3501,-3497,-3436]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-3442,3502,-3500,-3439]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3451,3503,3504,3505,3506,-3447]],"type":"Polygon","properties":{"wells":104,"gas":null,"oil":21,"d&a":47}},{"arcs":[[-3454,3507,3508,3509,-3504,-3450]],"type":"Polygon","properties":{"wells":40,"gas":1,"oil":9,"d&a":20}},{"arcs":[[-3457,3510,3511,3512,-3508,-3453]],"type":"Polygon","properties":{"wells":74,"gas":2,"oil":19,"d&a":28}},{"arcs":[[-3460,3513,3514,3515,-3511,-3456]],"type":"Polygon","properties":{"wells":39,"gas":2,"oil":2,"d&a":21}},{"arcs":[[-3463,3516,3517,3518,-3514,-3459]],"type":"Polygon","properties":{"wells":9,"gas":2,"oil":null,"d&a":5}},{"arcs":[[-3466,3519,3520,3521,-3517,-3462]],"type":"Polygon","properties":{"wells":145,"gas":1,"oil":46,"d&a":64}},{"arcs":[[-3469,3522,3523,3524,-3520,-3465]],"type":"Polygon","properties":{"wells":56,"gas":2,"oil":9,"d&a":43}},{"arcs":[[-3472,3525,3526,3527,-3523,-3468]],"type":"Polygon","properties":{"wells":10,"gas":2,"oil":null,"d&a":8}},{"arcs":[[-3475,3528,3529,3530,-3526,-3471]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":null,"d&a":3}},{"arcs":[[-3478,3531,3532,3533,-3529,-3474]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3481,3534,3535,3536,-3532,-3477]],"type":"Polygon","properties":{"wells":17,"gas":null,"oil":1,"d&a":6}},{"arcs":[[-3484,3537,3538,3539,-3535,-3480]],"type":"Polygon","properties":{"wells":274,"gas":null,"oil":36,"d&a":64}},{"arcs":[[-3487,3540,3541,3542,-3538,-3483]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[3543,3544,3545,-3541,-3486]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[3546,3547]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[3548,3549]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3550,3551,3552,3553]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-3491,3554,3555,3556,-3551,3557]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3558,3559,3560,3561,-3555,-3490]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3495,3562,3563,3564,-3560,3565]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3499,3566,3567,3568,-3563,-3494]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-3502,3569,3570,3571,-3567,-3498]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3572,3573]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3574,3575,3576]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3506,3577,3578,3579,-3575,3580]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":1,"d&a":2}},{"arcs":[[-3510,3581,3582,3583,-3578,-3505]],"type":"Polygon","properties":{"wells":82,"gas":1,"oil":23,"d&a":36}},{"arcs":[[-3513,3584,3585,3586,-3582,-3509]],"type":"Polygon","properties":{"wells":21,"gas":null,"oil":3,"d&a":15}},{"arcs":[[-3516,3587,3588,3589,-3585,-3512]],"type":"Polygon","properties":{"wells":11,"gas":1,"oil":0,"d&a":4}},{"arcs":[[-3519,3590,3591,3592,-3588,-3515]],"type":"Polygon","properties":{"wells":16,"gas":3,"oil":null,"d&a":6}},{"arcs":[[-3522,3593,3594,3595,-3591,-3518]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3525,3596,3597,3598,-3594,-3521]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3528,3599,3600,3601,-3597,-3524]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-3531,3602,3603,3604,-3600,-3527]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-3534,3605,3606,3607,-3603,-3530]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":9}},{"arcs":[[-3537,3608,3609,3610,-3606,-3533]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3540,3611,3612,3613,-3609,-3536]],"type":"Polygon","properties":{"wells":197,"gas":0,"oil":21,"d&a":43}},{"arcs":[[-3543,3614,3615,3616,-3612,-3539]],"type":"Polygon","properties":{"wells":111,"gas":null,"oil":8,"d&a":40}},{"arcs":[[-3546,3617,3618,3619,-3615,-3542]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3620,3621,3622,-3618,-3545]],"type":"Polygon","properties":{"wells":8,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-3547,3623,3624,3625,-3622,3626]],"type":"Polygon","properties":{"wells":3,"gas":2,"oil":null,"d&a":1}},{"arcs":[[3627,3628,3629,-3549]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3553,3630,3631,3632,3633]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3557,3634,3635,3636,-3631,-3552]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3562,3637,3638,3639,-3635,-3556]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3565,3640,3641,3642,-3638,-3561]],"type":"Polygon","properties":{"wells":3,"gas":2,"oil":null,"d&a":1}},{"arcs":[[-3569,3643,3644,3645,-3641,-3564]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3572,3646,3647,3648,-3644,-3568]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":0}},{"arcs":[[3649,3650,-3647,-3571]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[3651,3652,3653,3654,3655,-3573]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3656,-3653,3657]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3580,3658,3659,3660,3661,-3576]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":1,"d&a":2}},{"arcs":[[-3584,3662,3663,3664,-3659,-3579]],"type":"Polygon","properties":{"wells":12,"gas":1,"oil":2,"d&a":3}},{"arcs":[[-3587,3665,3666,3667,-3663,-3583]],"type":"Polygon","properties":{"wells":27,"gas":0,"oil":5,"d&a":16}},{"arcs":[[-3590,3668,3669,3670,-3666,-3586]],"type":"Polygon","properties":{"wells":6,"gas":1,"oil":null,"d&a":3}},{"arcs":[[-3593,3671,3672,3673,-3669,-3589]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-3596,3674,3675,3676,-3672,-3592]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3599,3677,3678,3679,-3675,-3595]],"type":"Polygon","properties":{"wells":6,"gas":0,"oil":null,"d&a":6}},{"arcs":[[-3602,3680,3681,3682,-3678,-3598]],"type":"Polygon","properties":{"wells":3,"gas":0,"oil":null,"d&a":3}},{"arcs":[[-3605,3683,3684,3685,-3681,-3601]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-3608,3686,3687,3688,-3684,-3604]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3611,3689,3690,3691,-3687,-3607]],"type":"Polygon","properties":{"wells":11,"gas":1,"oil":null,"d&a":8}},{"arcs":[[-3614,3692,3693,3694,-3690,-3610]],"type":"Polygon","properties":{"wells":28,"gas":1,"oil":7,"d&a":10}},{"arcs":[[-3617,3695,3696,3697,-3693,-3613]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3620,3698,-3696,-3616]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[3699,3700,3701,3702,-3625]],"type":"Polygon","properties":{"wells":3,"gas":0,"oil":null,"d&a":3}},{"arcs":[[3703,3704,3705,-3701,3706]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[3707,3708,-3704,3709]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3710,3711,3712,-3629]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[3713,3714,3715]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3633,3716,3717,3718,-3714,3719]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3637,3720,3721,3722,-3717,-3632]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3640,3723,3724,3725,-3721,-3636]],"type":"Polygon","properties":{"wells":11,"gas":3,"oil":null,"d&a":4}},{"arcs":[[-3643,3726,3727,-3724,-3639]],"type":"Polygon","properties":{"wells":8,"gas":4,"oil":null,"d&a":4}},{"arcs":[[-3646,3728,3729,3730,-3727,-3642]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-3649,3731,3732,3733,-3729,-3645]],"type":"Polygon","properties":{"wells":26,"gas":20,"oil":null,"d&a":2}},{"arcs":[[-3651,3734,3735,-3732,-3648]],"type":"Polygon","properties":{"wells":1,"gas":0,"oil":null,"d&a":1}},{"arcs":[[3736,3737,3738]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3655,3739,3740,3741,-3737,3742]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3657,3743,3744,3745,-3740,-3654]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-3661,3746,3747,3748]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3665,3749,3750,3751,-3747,-3660]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":0,"d&a":4}},{"arcs":[[-3668,3752,3753,3754,-3750,-3664]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3671,3755,3756,3757,-3753,-3667]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3674,3758,3759,3760,-3756,-3670]],"type":"Polygon","properties":{"wells":3,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-3677,3761,3762,3763,-3759,-3673]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3683,3764,3765,3766,3767,-3679]],"type":"Polygon","properties":{"wells":7,"gas":2,"oil":null,"d&a":5}},{"arcs":[[-3686,3768,3769,3770,-3765,-3682]],"type":"Polygon","properties":{"wells":55,"gas":11,"oil":1,"d&a":39}},{"arcs":[[-3689,3771,3772,3773,-3769,-3685]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-3692,3774,3775,3776,-3772,-3688]],"type":"Polygon","properties":{"wells":5,"gas":0,"oil":null,"d&a":3}},{"arcs":[[-3695,3777,3778,3779,-3775,-3691]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-3698,3780,3781,3782,-3778,-3694]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3783,3784]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3706,3785,3786,3787,3788,-3702]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3709,3789,3790,3791,-3786,-3705]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3792,3793,3794,3795,-3790,-3708]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3796,-3794,3797]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3798,3799,3800,3801,3802,-3712]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3803,3804,-3800,3805]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3719,3806,3807,3808,-3715]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3723,3809,3810,3811,-3807,-3718]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3726,3812,3813,-3810,-3722]],"type":"Polygon","properties":{"wells":7,"gas":2,"oil":null,"d&a":4}},{"arcs":[[-3734,3814,3815,3816,3817,-3730]],"type":"Polygon","properties":{"wells":3,"gas":3,"oil":null,"d&a":null}},{"arcs":[[-3736,3818,-3815,-3733]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-3742,3819,3820,-3738]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3746,3821,3822,3823,-3820,-3741]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[3824,3825,-3822,-3745]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3752,3826,3827,3828,3829,-3748]],"type":"Polygon","properties":{"wells":58,"gas":1,"oil":19,"d&a":20}},{"arcs":[[-3755,3830,3831,3832,-3827,-3751]],"type":"Polygon","properties":{"wells":4,"gas":0,"oil":null,"d&a":3}},{"arcs":[[-3758,3833,3834,3835,-3831,-3754]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3761,3836,3837,3838,-3834,-3757]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3764,3839,3840,3841,-3837,-3760]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[3842,3843,3844,-3840,-3763]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3767,3845,3846,3847,-3844,3848]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3771,3849,3850,3851,-3846,-3766]],"type":"Polygon","properties":{"wells":9,"gas":1,"oil":null,"d&a":6}},{"arcs":[[-3774,3852,3853,3854,-3850,-3770]],"type":"Polygon","properties":{"wells":22,"gas":0,"oil":0,"d&a":22}},{"arcs":[[-3777,3855,3856,3857,-3853,-3773]],"type":"Polygon","properties":{"wells":10,"gas":2,"oil":null,"d&a":7}},{"arcs":[[-3783,3858,3859,3860,3861,-3779]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[3862,3863,3864,3865,-3859,-3782]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[3866,3867,3868,-3864,3869]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3784,3870,3871,-3867,3872]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3788,3873,3874,3875]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3792,3876,3877,3878,-3874,-3787]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3796,3879,3880,3881,-3877,-3791]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3797,3882,3883,-3880,-3795]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3802,3884,3885,3886,3887]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[3888,3889,3890,-3804]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3812,3891,3892,-3808]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3814,3893,-3892,-3811]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3894,3895]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3817,3896,-3895,3897]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3898,3899]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3826,3900,-3823]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3829,3901,3902,3903]],"type":"Polygon","properties":{"wells":2,"gas":2,"oil":null,"d&a":0}},{"arcs":[[-3833,3904,3905,3906,-3902,-3828]],"type":"Polygon","properties":{"wells":24,"gas":10,"oil":2,"d&a":9}},{"arcs":[[-3836,3907,3908,3909,-3905,-3832]],"type":"Polygon","properties":{"wells":6,"gas":2,"oil":null,"d&a":3}},{"arcs":[[-3839,3910,3911,3912,-3908,-3835]],"type":"Polygon","properties":{"wells":1,"gas":0,"oil":null,"d&a":1}},{"arcs":[[-3842,3913,3914,3915,-3911,-3838]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3852,3916,3917,3918,3919,-3847]],"type":"Polygon","properties":{"wells":2,"gas":0,"oil":null,"d&a":2}},{"arcs":[[-3855,3920,3921,3922,-3917,-3851]],"type":"Polygon","properties":{"wells":26,"gas":9,"oil":2,"d&a":6}},{"arcs":[[-3858,3923,3924,3925,-3921,-3854]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[3926,3927,3928,3929,-3924,-3857]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3861,3930,3931,3932,-3928,3933]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-3866,3934,3935,3936,-3931,-3860]],"type":"Polygon","properties":{"wells":4,"gas":0,"oil":1,"d&a":3}},{"arcs":[[-3869,3937,3938,3939,-3935,-3865]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3872,3940,3941,3942,-3938,-3868]],"type":"Polygon","properties":{"wells":11,"gas":2,"oil":null,"d&a":9}},{"arcs":[[-3879,3943,-3875]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3884,3944,3945,3946,-3881]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3887,3947,3948,3949,3950]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3951,3952,3953,3954,-3948,-3886]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-3890,3955,3956,3957,-3953,3958]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3899,3959,3960,3961,3962]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3963,3964]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3907,3965,3966,3967,3968,-3903]],"type":"Polygon","properties":{"wells":38,"gas":23,"oil":null,"d&a":6}},{"arcs":[[-3910,3969,3970,3971,-3966,-3906]],"type":"Polygon","properties":{"wells":91,"gas":29,"oil":14,"d&a":20}},{"arcs":[[-3913,3972,3973,3974,-3970,-3909]],"type":"Polygon","properties":{"wells":21,"gas":17,"oil":null,"d&a":1}},{"arcs":[[-3916,3975,3976,3977,-3973,-3912]],"type":"Polygon","properties":{"wells":4,"gas":2,"oil":null,"d&a":null}},{"arcs":[[3978,3979,3980,3981,-3976,-3915]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[3982,3983,3984,-3980,3985]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3919,3986,3987,3988,-3983,3989]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3923,3990,3991,3992,-3987,-3918]],"type":"Polygon","properties":{"wells":60,"gas":39,"oil":0,"d&a":8}},{"arcs":[[-3926,3993,3994,3995,-3991,-3922]],"type":"Polygon","properties":{"wells":12,"gas":0,"oil":null,"d&a":10}},{"arcs":[[-3930,3996,3997,-3994,-3925]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-3933,3998,3999,-3997,-3929]],"type":"Polygon","properties":{"wells":1,"gas":0,"oil":null,"d&a":1}},{"arcs":[[-3937,4000,4001,4002,-3999,-3932]],"type":"Polygon","properties":{"wells":9,"gas":3,"oil":null,"d&a":3}},{"arcs":[[-3943,4003,4004,4005,-3939]],"type":"Polygon","properties":{"wells":17,"gas":null,"oil":4,"d&a":9}},{"arcs":[[4006,4007,4008,-4004,-3942]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":null,"d&a":3}},{"arcs":[[4009,4010,4011,4012,-3946]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3950,4013,4014,4015,-4011,4016]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3955,4017,4018,4019,-4014,-3949]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3958,4020,4021,4022,-4018,-3954]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[4023,4024,-4021,-3957]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4025]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4026,4027]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4028,4029,4030,-4027,4031]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-3962,4032,4033,4034,-4029,4035]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4036,-4033,-3961]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[4037,-3964]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3968,4038,4039,4040]],"type":"Polygon","properties":{"wells":5,"gas":4,"oil":null,"d&a":null}},{"arcs":[[-3972,4041,4042,4043,-4039,-3967]],"type":"Polygon","properties":{"wells":53,"gas":36,"oil":0,"d&a":2}},{"arcs":[[-3975,4044,4045,4046,-4042,-3971]],"type":"Polygon","properties":{"wells":61,"gas":46,"oil":1,"d&a":4}},{"arcs":[[-3978,4047,4048,4049,-4045,-3974]],"type":"Polygon","properties":{"wells":52,"gas":39,"oil":null,"d&a":6}},{"arcs":[[-3982,4050,4051,4052,-4048,-3977]],"type":"Polygon","properties":{"wells":2,"gas":0,"oil":null,"d&a":1}},{"arcs":[[-3985,4053,4054,4055,-4051,-3981]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-3989,4056,4057,4058,-4054,-3984]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":1,"d&a":4}},{"arcs":[[-3993,4059,4060,4061,-4057,-3988]],"type":"Polygon","properties":{"wells":30,"gas":18,"oil":1,"d&a":1}},{"arcs":[[-3996,4062,4063,-4060,-3992]],"type":"Polygon","properties":{"wells":57,"gas":40,"oil":null,"d&a":4}},{"arcs":[[4064,4065,4066,-4002]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4009,4067,4068,4069,-4005]],"type":"Polygon","properties":{"wells":19,"gas":null,"oil":4,"d&a":10}},{"arcs":[[4070,4071,-4068,-4008]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4016,4072,4073,4074,4075,-4012]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":null,"d&a":11}},{"arcs":[[-4020,4076,4077,-4073,-4015]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4023,4078,4079,-4077,-4019]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4025,4080,4081,4082,-4079,-4022]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-4035,4083,-4030]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4044,4084,4085,4086,4087,-4040]],"type":"Polygon","properties":{"wells":35,"gas":23,"oil":null,"d&a":4}},{"arcs":[[-4047,4088,4089,4090,-4085,-4043]],"type":"Polygon","properties":{"wells":117,"gas":96,"oil":null,"d&a":4}},{"arcs":[[-4050,4091,4092,4093,-4089,-4046]],"type":"Polygon","properties":{"wells":153,"gas":83,"oil":15,"d&a":11}},{"arcs":[[-4053,4094,4095,4096,-4092,-4049]],"type":"Polygon","properties":{"wells":55,"gas":48,"oil":0,"d&a":4}},{"arcs":[[-4056,4097,4098,4099,-4095,-4052]],"type":"Polygon","properties":{"wells":18,"gas":13,"oil":null,"d&a":2}},{"arcs":[[-4059,4100,4101,4102,-4098,-4055]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-4062,4103,4104,4105,-4101,-4058]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4064,4106,4107,4108,-4104,-4061]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[4109,4110,4111,4112]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":2,"d&a":3}},{"arcs":[[4113,4114,4115,-4110,4116]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4066,4117,4118,4119,-4114,4120]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":4,"d&a":1}},{"arcs":[[-4072,4121,4122,4123,4124,-4069]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-4075,4125,4126,4127]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[4128,-4082]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4129,4130]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4131,4132]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-4132,4133]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4087,4134,4135,4136]],"type":"Polygon","properties":{"wells":24,"gas":16,"oil":null,"d&a":2}},{"arcs":[[-4091,4137,4138,4139,-4135,-4086]],"type":"Polygon","properties":{"wells":104,"gas":64,"oil":1,"d&a":8}},{"arcs":[[-4094,4140,4141,4142,-4138,-4090]],"type":"Polygon","properties":{"wells":97,"gas":46,"oil":11,"d&a":24}},{"arcs":[[-4097,4143,4144,4145,-4141,-4093]],"type":"Polygon","properties":{"wells":179,"gas":91,"oil":30,"d&a":32}},{"arcs":[[-4100,4146,4147,4148,-4144,-4096]],"type":"Polygon","properties":{"wells":63,"gas":36,"oil":2,"d&a":5}},{"arcs":[[-4103,4149,4150,4151,-4147,-4099]],"type":"Polygon","properties":{"wells":21,"gas":15,"oil":null,"d&a":2}},{"arcs":[[-4106,4152,4153,4154,-4150,-4102]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4109,4155,4156,4157,-4153,-4105]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[4158,4159,4160,4161,-4156,-4108]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-4112,4162,4163,4164,-4160,4165]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4116,4166,4167,4168,-4163,-4111]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4120,4169,4170,4171,-4167,-4115]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":0,"d&a":4}},{"arcs":[[4172,-4170,-4119]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-4124,4173,4174,4175]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4176,4177,4178,4179,-4174,-4123]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":null,"d&a":null}},{"arcs":[[4180,4181,4182,-4178,4183]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[4184,4185,-4181,4186]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-4127,4187,4188,4189,4190]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":3}},{"arcs":[[4191,4192]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[4193,4194,4195,-4130]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-4195,4196]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4197]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4140,4198,4199,4200,4201,-4136]],"type":"Polygon","properties":{"wells":121,"gas":71,"oil":6,"d&a":17}},{"arcs":[[-4143,4202,4203,4204,-4199,-4139]],"type":"Polygon","properties":{"wells":55,"gas":33,"oil":1,"d&a":3}},{"arcs":[[-4146,4205,4206,4207,-4203,-4142]],"type":"Polygon","properties":{"wells":138,"gas":55,"oil":16,"d&a":35}},{"arcs":[[-4149,4208,4209,4210,-4206,-4145]],"type":"Polygon","properties":{"wells":96,"gas":52,"oil":null,"d&a":6}},{"arcs":[[-4152,4211,4212,4213,-4209,-4148]],"type":"Polygon","properties":{"wells":102,"gas":73,"oil":null,"d&a":11}},{"arcs":[[-4155,4214,4215,4216,-4212,-4151]],"type":"Polygon","properties":{"wells":33,"gas":12,"oil":null,"d&a":9}},{"arcs":[[-4158,4217,4218,4219,-4215,-4154]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-4162,4220,4221,4222,-4218,-4157]],"type":"Polygon","properties":{"wells":13,"gas":4,"oil":null,"d&a":3}},{"arcs":[[-4165,4223,4224,4225,-4221,-4161]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-4169,4226,4227,4228,-4224,-4164]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4172,4229,-4227,-4168]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4180,4230,4231,4232,4233,-4175]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-4186,4234,4235,-4182]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[4236,4237,4238,4239,-4235,-4185]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-4190,4240,4241,4242,-4238,4243]],"type":"Polygon","properties":{"wells":8,"gas":3,"oil":null,"d&a":5}},{"arcs":[[4244,4245,4246,4247,-4241,-4189]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4192,4248,4249,-4246,4250]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4251,4252]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4201,4253,4254,4255]],"type":"Polygon","properties":{"wells":37,"gas":25,"oil":null,"d&a":2}},{"arcs":[[-4205,4256,4257,4258,-4254,-4200]],"type":"Polygon","properties":{"wells":27,"gas":15,"oil":0,"d&a":4}},{"arcs":[[-4208,4259,4260,4261,-4257,-4204]],"type":"Polygon","properties":{"wells":65,"gas":37,"oil":1,"d&a":10}},{"arcs":[[-4211,4262,4263,4264,-4260,-4207]],"type":"Polygon","properties":{"wells":114,"gas":70,"oil":2,"d&a":15}},{"arcs":[[-4214,4265,4266,4267,-4263,-4210]],"type":"Polygon","properties":{"wells":84,"gas":44,"oil":2,"d&a":9}},{"arcs":[[-4217,4268,4269,4270,-4266,-4213]],"type":"Polygon","properties":{"wells":43,"gas":28,"oil":null,"d&a":7}},{"arcs":[[-4220,4271,4272,4273,-4269,-4216]],"type":"Polygon","properties":{"wells":20,"gas":10,"oil":null,"d&a":0}},{"arcs":[[-4223,4274,4275,4276,-4272,-4219]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-4226,4277,4278,4279,-4275,-4222]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-4229,4280,4281,4282,-4278,-4225]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[4283,4284,4285,4286]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":4}},{"arcs":[[4287,4288,4289,-4284,4290]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4233,4291,4292,4293,-4288,4294]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[4295,4296,4297,-4292,-4232]],"type":"Polygon","properties":{"wells":12,"gas":1,"oil":null,"d&a":9}},{"arcs":[[-4243,4298,4299,4300,4301,-4239]],"type":"Polygon","properties":{"wells":3,"gas":2,"oil":null,"d&a":1}},{"arcs":[[-4248,4302,4303,4304,-4299,-4242]],"type":"Polygon","properties":{"wells":15,"gas":9,"oil":null,"d&a":5}},{"arcs":[[-4250,4305,4306,4307,-4303,-4247]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4252,4308,4309,4310]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":3}},{"arcs":[[4311]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4259,4312,4313,4314,4315,-4255]],"type":"Polygon","properties":{"wells":22,"gas":5,"oil":3,"d&a":6}},{"arcs":[[-4262,4316,4317,4318,-4313,-4258]],"type":"Polygon","properties":{"wells":30,"gas":17,"oil":null,"d&a":9}},{"arcs":[[-4265,4319,4320,4321,-4317,-4261]],"type":"Polygon","properties":{"wells":98,"gas":59,"oil":0,"d&a":4}},{"arcs":[[-4268,4322,4323,4324,-4320,-4264]],"type":"Polygon","properties":{"wells":84,"gas":63,"oil":0,"d&a":7}},{"arcs":[[-4271,4325,4326,4327,-4323,-4267]],"type":"Polygon","properties":{"wells":118,"gas":73,"oil":4,"d&a":10}},{"arcs":[[-4274,4328,4329,4330,-4326,-4270]],"type":"Polygon","properties":{"wells":103,"gas":70,"oil":null,"d&a":16}},{"arcs":[[-4277,4331,4332,4333,-4329,-4273]],"type":"Polygon","properties":{"wells":13,"gas":4,"oil":null,"d&a":2}},{"arcs":[[-4280,4334,4335,4336,-4332,-4276]],"type":"Polygon","properties":{"wells":38,"gas":7,"oil":6,"d&a":4}},{"arcs":[[-4283,4337,4338,4339,-4335,-4279]],"type":"Polygon","properties":{"wells":19,"gas":4,"oil":1,"d&a":3}},{"arcs":[[4340,4341,4342,4343,-4338,-4282]],"type":"Polygon","properties":{"wells":1,"gas":0,"oil":null,"d&a":0}},{"arcs":[[4344,4345,4346,-4342,4347]],"type":"Polygon","properties":{"wells":8,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-4286,4348,4349,4350,-4345,4351]],"type":"Polygon","properties":{"wells":3,"gas":0,"oil":null,"d&a":3}},{"arcs":[[-4290,4352,4353,4354,-4349,-4285]],"type":"Polygon","properties":{"wells":19,"gas":14,"oil":null,"d&a":4}},{"arcs":[[-4294,4355,4356,4357,-4353,-4289]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":2,"d&a":5}},{"arcs":[[-4298,4358,4359,4360,-4356,-4293]],"type":"Polygon","properties":{"wells":27,"gas":null,"oil":13,"d&a":11}},{"arcs":[[4361,4362,4363,4364,-4359,-4297]],"type":"Polygon","properties":{"wells":18,"gas":3,"oil":null,"d&a":2}},{"arcs":[[4365,4366,4367,-4363,4368]],"type":"Polygon","properties":{"wells":7,"gas":4,"oil":null,"d&a":3}},{"arcs":[[-4301,4369,4370,4371,-4366,4372]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":4}},{"arcs":[[-4305,4373,4374,4375,-4370,-4300]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4308,4376,4377,4378,-4374,-4304]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":2}},{"arcs":[[4379,4380,4381,-4377,-4307]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4382,-4310]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4383]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4315,4384,4385,4386]],"type":"Polygon","properties":{"wells":36,"gas":23,"oil":1,"d&a":10}},{"arcs":[[-4319,4387,4388,4389,-4385,-4314]],"type":"Polygon","properties":{"wells":37,"gas":24,"oil":3,"d&a":1}},{"arcs":[[-4322,4390,4391,4392,-4388,-4318]],"type":"Polygon","properties":{"wells":71,"gas":55,"oil":1,"d&a":4}},{"arcs":[[-4325,4393,4394,4395,-4391,-4321]],"type":"Polygon","properties":{"wells":126,"gas":85,"oil":5,"d&a":12}},{"arcs":[[-4328,4396,4397,4398,-4394,-4324]],"type":"Polygon","properties":{"wells":100,"gas":47,"oil":4,"d&a":20}},{"arcs":[[-4331,4399,4400,4401,-4397,-4327]],"type":"Polygon","properties":{"wells":96,"gas":70,"oil":0,"d&a":15}},{"arcs":[[-4334,4402,4403,4404,-4400,-4330]],"type":"Polygon","properties":{"wells":62,"gas":33,"oil":3,"d&a":4}},{"arcs":[[-4337,4405,4406,4407,-4403,-4333]],"type":"Polygon","properties":{"wells":15,"gas":6,"oil":null,"d&a":1}},{"arcs":[[-4340,4408,4409,4410,-4406,-4336]],"type":"Polygon","properties":{"wells":114,"gas":45,"oil":21,"d&a":24}},{"arcs":[[-4344,4411,4412,4413,-4409,-4339]],"type":"Polygon","properties":{"wells":31,"gas":12,"oil":0,"d&a":13}},{"arcs":[[-4347,4414,4415,4416,-4412,-4343]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4351,4417,4418,4419,-4415,-4346]],"type":"Polygon","properties":{"wells":4,"gas":4,"oil":null,"d&a":null}},{"arcs":[[-4355,4420,4421,4422,-4418,-4350]],"type":"Polygon","properties":{"wells":49,"gas":39,"oil":null,"d&a":9}},{"arcs":[[-4358,4423,4424,4425,-4421,-4354]],"type":"Polygon","properties":{"wells":8,"gas":0,"oil":null,"d&a":7}},{"arcs":[[-4361,4426,4427,4428,-4424,-4357]],"type":"Polygon","properties":{"wells":24,"gas":null,"oil":6,"d&a":11}},{"arcs":[[-4365,4429,4430,4431,-4427,-4360]],"type":"Polygon","properties":{"wells":73,"gas":null,"oil":11,"d&a":40}},{"arcs":[[-4368,4432,4433,4434,-4430,-4364]],"type":"Polygon","properties":{"wells":65,"gas":1,"oil":20,"d&a":20}},{"arcs":[[-4372,4435,4436,4437,-4433,-4367]],"type":"Polygon","properties":{"wells":19,"gas":0,"oil":11,"d&a":8}},{"arcs":[[-4376,4438,4439,4440,-4436,-4371]],"type":"Polygon","properties":{"wells":3,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-4379,4441,4442,4443,-4439,-4375]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":0,"d&a":4}},{"arcs":[[-4382,4444,4445,4446,-4442,-4378]],"type":"Polygon","properties":{"wells":18,"gas":1,"oil":4,"d&a":11}},{"arcs":[[4447,4448,4449,-4445,-4381]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":3,"d&a":3}},{"arcs":[[4450,4451]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":2}},{"arcs":[[4452,4453,-4451,4454]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-4453,4455]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4456,4457,4458]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4390,4459,4460,4461,4462,-4386]],"type":"Polygon","properties":{"wells":33,"gas":20,"oil":1,"d&a":2}},{"arcs":[[-4393,4463,4464,4465,-4460,-4389]],"type":"Polygon","properties":{"wells":55,"gas":36,"oil":3,"d&a":8}},{"arcs":[[-4396,4466,4467,4468,-4464,-4392]],"type":"Polygon","properties":{"wells":76,"gas":64,"oil":null,"d&a":2}},{"arcs":[[-4399,4469,4470,4471,-4467,-4395]],"type":"Polygon","properties":{"wells":84,"gas":56,"oil":4,"d&a":10}},{"arcs":[[-4402,4472,4473,4474,-4470,-4398]],"type":"Polygon","properties":{"wells":23,"gas":9,"oil":5,"d&a":4}},{"arcs":[[-4405,4475,4476,4477,-4473,-4401]],"type":"Polygon","properties":{"wells":73,"gas":49,"oil":2,"d&a":3}},{"arcs":[[-4408,4478,4479,4480,-4476,-4404]],"type":"Polygon","properties":{"wells":6,"gas":4,"oil":0,"d&a":2}},{"arcs":[[-4411,4481,4482,4483,-4479,-4407]],"type":"Polygon","properties":{"wells":67,"gas":58,"oil":null,"d&a":3}},{"arcs":[[-4414,4484,4485,4486,-4482,-4410]],"type":"Polygon","properties":{"wells":118,"gas":69,"oil":5,"d&a":18}},{"arcs":[[-4417,4487,4488,4489,-4485,-4413]],"type":"Polygon","properties":{"wells":77,"gas":29,"oil":4,"d&a":29}},{"arcs":[[-4420,4490,4491,4492,-4488,-4416]],"type":"Polygon","properties":{"wells":19,"gas":5,"oil":2,"d&a":6}},{"arcs":[[-4423,4493,4494,4495,-4491,-4419]],"type":"Polygon","properties":{"wells":31,"gas":4,"oil":15,"d&a":7}},{"arcs":[[-4426,4496,4497,4498,-4494,-4422]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4429,4499,4500,4501,-4497,-4425]],"type":"Polygon","properties":{"wells":13,"gas":null,"oil":1,"d&a":6}},{"arcs":[[-4432,4502,4503,4504,-4500,-4428]],"type":"Polygon","properties":{"wells":31,"gas":null,"oil":15,"d&a":7}},{"arcs":[[-4435,4505,4506,4507,-4503,-4431]],"type":"Polygon","properties":{"wells":16,"gas":null,"oil":6,"d&a":6}},{"arcs":[[-4438,4508,4509,4510,-4506,-4434]],"type":"Polygon","properties":{"wells":240,"gas":7,"oil":103,"d&a":14}},{"arcs":[[-4441,4511,4512,4513,-4509,-4437]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-4444,4514,4515,4516,-4512,-4440]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4447,4517,4518,4519,-4515,-4443]],"type":"Polygon","properties":{"wells":13,"gas":0,"oil":3,"d&a":6}},{"arcs":[[-4450,4520,4521,4522,-4518,-4446]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[4523,4524,4525,4526,-4521,-4449]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[4527,4528,4529,-4525,4530]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":0}},{"arcs":[[4531,4532,-4528,4533]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4534]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4458,4535,4536]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4537,-4536,-4457]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4462,4538,4539,4540]],"type":"Polygon","properties":{"wells":4,"gas":3,"oil":null,"d&a":1}},{"arcs":[[-4466,4541,4542,4543,-4539,-4461]],"type":"Polygon","properties":{"wells":9,"gas":4,"oil":null,"d&a":3}},{"arcs":[[-4469,4544,4545,4546,-4542,-4465]],"type":"Polygon","properties":{"wells":88,"gas":65,"oil":6,"d&a":2}},{"arcs":[[-4472,4547,4548,4549,-4545,-4468]],"type":"Polygon","properties":{"wells":149,"gas":97,"oil":3,"d&a":5}},{"arcs":[[-4475,4550,4551,4552,-4548,-4471]],"type":"Polygon","properties":{"wells":68,"gas":48,"oil":1,"d&a":4}},{"arcs":[[-4478,4553,4554,4555,-4551,-4474]],"type":"Polygon","properties":{"wells":47,"gas":24,"oil":0,"d&a":7}},{"arcs":[[-4481,4556,4557,4558,-4554,-4477]],"type":"Polygon","properties":{"wells":8,"gas":6,"oil":null,"d&a":1}},{"arcs":[[-4484,4559,4560,4561,-4557,-4480]],"type":"Polygon","properties":{"wells":12,"gas":7,"oil":null,"d&a":3}},{"arcs":[[-4487,4562,4563,4564,-4560,-4483]],"type":"Polygon","properties":{"wells":88,"gas":67,"oil":1,"d&a":11}},{"arcs":[[-4490,4565,4566,4567,-4563,-4486]],"type":"Polygon","properties":{"wells":112,"gas":80,"oil":0,"d&a":16}},{"arcs":[[-4493,4568,4569,4570,-4566,-4489]],"type":"Polygon","properties":{"wells":149,"gas":81,"oil":11,"d&a":26}},{"arcs":[[-4496,4571,4572,4573,-4569,-4492]],"type":"Polygon","properties":{"wells":15,"gas":1,"oil":0,"d&a":11}},{"arcs":[[-4499,4574,4575,4576,-4572,-4495]],"type":"Polygon","properties":{"wells":38,"gas":10,"oil":9,"d&a":9}},{"arcs":[[-4502,4577,4578,4579,-4575,-4498]],"type":"Polygon","properties":{"wells":18,"gas":4,"oil":3,"d&a":5}},{"arcs":[[-4505,4580,4581,4582,-4578,-4501]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":0,"d&a":7}},{"arcs":[[-4508,4583,4584,4585,-4581,-4504]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":1,"d&a":7}},{"arcs":[[-4511,4586,4587,4588,-4584,-4507]],"type":"Polygon","properties":{"wells":44,"gas":1,"oil":11,"d&a":17}},{"arcs":[[-4514,4589,4590,4591,-4587,-4510]],"type":"Polygon","properties":{"wells":341,"gas":9,"oil":190,"d&a":19}},{"arcs":[[-4517,4592,4593,4594,-4590,-4513]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":0,"d&a":4}},{"arcs":[[-4520,4595,4596,4597,-4593,-4516]],"type":"Polygon","properties":{"wells":4,"gas":2,"oil":null,"d&a":2}},{"arcs":[[-4523,4598,4599,4600,-4596,-4519]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4527,4601,4602,4603,-4599,-4522]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-4533,4604,4605,-4529]],"type":"Polygon","properties":{"wells":9,"gas":1,"oil":null,"d&a":2}},{"arcs":[[4606,-4605,-4532]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4544,4607,4608,4609,-4540]],"type":"Polygon","properties":{"wells":8,"gas":3,"oil":null,"d&a":3}},{"arcs":[[-4547,4610,4611,4612,-4608,-4543]],"type":"Polygon","properties":{"wells":15,"gas":7,"oil":0,"d&a":3}},{"arcs":[[-4550,4613,4614,4615,-4611,-4546]],"type":"Polygon","properties":{"wells":54,"gas":43,"oil":1,"d&a":6}},{"arcs":[[-4553,4616,4617,4618,-4614,-4549]],"type":"Polygon","properties":{"wells":118,"gas":79,"oil":7,"d&a":6}},{"arcs":[[-4556,4619,4620,4621,-4617,-4552]],"type":"Polygon","properties":{"wells":48,"gas":19,"oil":2,"d&a":3}},{"arcs":[[-4559,4622,4623,4624,-4620,-4555]],"type":"Polygon","properties":{"wells":81,"gas":50,"oil":null,"d&a":0}},{"arcs":[[-4562,4625,4626,4627,-4623,-4558]],"type":"Polygon","properties":{"wells":15,"gas":12,"oil":null,"d&a":0}},{"arcs":[[-4565,4628,4629,4630,-4626,-4561]],"type":"Polygon","properties":{"wells":24,"gas":8,"oil":null,"d&a":3}},{"arcs":[[-4568,4631,4632,4633,-4629,-4564]],"type":"Polygon","properties":{"wells":52,"gas":34,"oil":4,"d&a":2}},{"arcs":[[-4571,4634,4635,4636,-4632,-4567]],"type":"Polygon","properties":{"wells":175,"gas":124,"oil":null,"d&a":17}},{"arcs":[[-4574,4637,4638,4639,-4635,-4570]],"type":"Polygon","properties":{"wells":126,"gas":50,"oil":22,"d&a":15}},{"arcs":[[-4577,4640,4641,4642,-4638,-4573]],"type":"Polygon","properties":{"wells":26,"gas":2,"oil":2,"d&a":15}},{"arcs":[[-4580,4643,4644,4645,-4641,-4576]],"type":"Polygon","properties":{"wells":18,"gas":11,"oil":null,"d&a":5}},{"arcs":[[-4583,4646,4647,4648,-4644,-4579]],"type":"Polygon","properties":{"wells":51,"gas":1,"oil":16,"d&a":8}},{"arcs":[[-4586,4649,4650,4651,-4647,-4582]],"type":"Polygon","properties":{"wells":161,"gas":1,"oil":90,"d&a":19}},{"arcs":[[-4589,4652,4653,4654,-4650,-4585]],"type":"Polygon","properties":{"wells":1100,"gas":4,"oil":515,"d&a":61}},{"arcs":[[-4592,4655,4656,4657,-4653,-4588]],"type":"Polygon","properties":{"wells":446,"gas":1,"oil":221,"d&a":26}},{"arcs":[[-4595,4658,4659,4660,-4656,-4591]],"type":"Polygon","properties":{"wells":20,"gas":3,"oil":5,"d&a":4}},{"arcs":[[-4598,4661,4662,4663,-4659,-4594]],"type":"Polygon","properties":{"wells":24,"gas":16,"oil":null,"d&a":3}},{"arcs":[[-4601,4664,4665,4666,-4662,-4597]],"type":"Polygon","properties":{"wells":42,"gas":34,"oil":null,"d&a":7}},{"arcs":[[4667,4668,4669,4670,-4603]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":1,"d&a":2}},{"arcs":[[-4613,4671,4672,4673,4674,-4609]],"type":"Polygon","properties":{"wells":15,"gas":1,"oil":null,"d&a":6}},{"arcs":[[-4616,4675,4676,4677,-4672,-4612]],"type":"Polygon","properties":{"wells":24,"gas":11,"oil":1,"d&a":2}},{"arcs":[[-4619,4678,4679,4680,-4676,-4615]],"type":"Polygon","properties":{"wells":104,"gas":71,"oil":2,"d&a":6}},{"arcs":[[-4622,4681,4682,4683,-4679,-4618]],"type":"Polygon","properties":{"wells":23,"gas":20,"oil":0,"d&a":1}},{"arcs":[[-4625,4684,4685,4686,-4682,-4621]],"type":"Polygon","properties":{"wells":16,"gas":10,"oil":0,"d&a":1}},{"arcs":[[-4628,4687,4688,4689,-4685,-4624]],"type":"Polygon","properties":{"wells":12,"gas":3,"oil":null,"d&a":1}},{"arcs":[[-4631,4690,4691,4692,-4688,-4627]],"type":"Polygon","properties":{"wells":43,"gas":28,"oil":null,"d&a":2}},{"arcs":[[-4634,4693,4694,4695,-4691,-4630]],"type":"Polygon","properties":{"wells":9,"gas":5,"oil":null,"d&a":2}},{"arcs":[[-4637,4696,4697,4698,-4694,-4633]],"type":"Polygon","properties":{"wells":26,"gas":19,"oil":null,"d&a":3}},{"arcs":[[-4640,4699,4700,4701,-4697,-4636]],"type":"Polygon","properties":{"wells":147,"gas":90,"oil":8,"d&a":16}},{"arcs":[[-4643,4702,4703,4704,-4700,-4639]],"type":"Polygon","properties":{"wells":33,"gas":9,"oil":11,"d&a":3}},{"arcs":[[-4646,4705,4706,4707,-4703,-4642]],"type":"Polygon","properties":{"wells":16,"gas":1,"oil":1,"d&a":10}},{"arcs":[[-4649,4708,4709,4710,-4706,-4645]],"type":"Polygon","properties":{"wells":15,"gas":1,"oil":3,"d&a":8}},{"arcs":[[-4652,4711,4712,4713,-4709,-4648]],"type":"Polygon","properties":{"wells":17,"gas":2,"oil":6,"d&a":5}},{"arcs":[[-4655,4714,4715,4716,-4712,-4651]],"type":"Polygon","properties":{"wells":446,"gas":2,"oil":248,"d&a":25}},{"arcs":[[-4658,4717,4718,4719,-4715,-4654]],"type":"Polygon","properties":{"wells":2000,"gas":1,"oil":975,"d&a":39}},{"arcs":[[-4661,4720,4721,4722,-4718,-4657]],"type":"Polygon","properties":{"wells":474,"gas":2,"oil":199,"d&a":27}},{"arcs":[[-4664,4723,4724,4725,-4721,-4660]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":4}},{"arcs":[[-4667,4726,4727,4728,-4724,-4663]],"type":"Polygon","properties":{"wells":65,"gas":57,"oil":null,"d&a":8}},{"arcs":[[4729,4730,4731,4732,-4727,-4666]],"type":"Polygon","properties":{"wells":41,"gas":27,"oil":null,"d&a":13}},{"arcs":[[-4670,4733,4734,4735,-4731,4736]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":1,"d&a":3}},{"arcs":[[4737,4738,4739,4740,-4734,-4669]],"type":"Polygon","properties":{"wells":11,"gas":2,"oil":null,"d&a":5}},{"arcs":[[4741,4742,-4739,4743]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[4744]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4745,4746,4747,4748]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[4749,-4746,4750]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4674,4751,4752,4753]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4678,4754,4755,4756,-4752,-4673]],"type":"Polygon","properties":{"wells":21,"gas":7,"oil":2,"d&a":5}},{"arcs":[[-4681,4757,4758,4759,-4755,-4677]],"type":"Polygon","properties":{"wells":17,"gas":11,"oil":0,"d&a":5}},{"arcs":[[-4684,4760,4761,4762,-4758,-4680]],"type":"Polygon","properties":{"wells":59,"gas":43,"oil":1,"d&a":4}},{"arcs":[[-4687,4763,4764,4765,-4761,-4683]],"type":"Polygon","properties":{"wells":35,"gas":18,"oil":null,"d&a":1}},{"arcs":[[-4690,4766,4767,4768,-4764,-4686]],"type":"Polygon","properties":{"wells":12,"gas":6,"oil":null,"d&a":null}},{"arcs":[[-4693,4769,4770,4771,-4767,-4689]],"type":"Polygon","properties":{"wells":29,"gas":20,"oil":null,"d&a":3}},{"arcs":[[-4696,4772,4773,4774,-4770,-4692]],"type":"Polygon","properties":{"wells":11,"gas":5,"oil":1,"d&a":1}},{"arcs":[[-4699,4775,4776,4777,-4773,-4695]],"type":"Polygon","properties":{"wells":39,"gas":23,"oil":null,"d&a":4}},{"arcs":[[-4702,4778,4779,4780,-4776,-4698]],"type":"Polygon","properties":{"wells":100,"gas":76,"oil":null,"d&a":14}},{"arcs":[[-4705,4781,4782,4783,-4779,-4701]],"type":"Polygon","properties":{"wells":51,"gas":27,"oil":1,"d&a":3}},{"arcs":[[-4708,4784,4785,4786,-4782,-4704]],"type":"Polygon","properties":{"wells":10,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-4711,4787,4788,4789,-4785,-4707]],"type":"Polygon","properties":{"wells":24,"gas":null,"oil":2,"d&a":15}},{"arcs":[[-4714,4790,4791,4792,-4788,-4710]],"type":"Polygon","properties":{"wells":13,"gas":1,"oil":2,"d&a":5}},{"arcs":[[-4717,4793,4794,4795,-4791,-4713]],"type":"Polygon","properties":{"wells":241,"gas":2,"oil":175,"d&a":6}},{"arcs":[[-4720,4796,4797,4798,-4794,-4716]],"type":"Polygon","properties":{"wells":871,"gas":2,"oil":718,"d&a":20}},{"arcs":[[-4723,4799,4800,4801,-4797,-4719]],"type":"Polygon","properties":{"wells":91,"gas":null,"oil":26,"d&a":22}},{"arcs":[[-4726,4802,4803,4804,-4800,-4722]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":3,"d&a":4}},{"arcs":[[-4729,4805,4806,4807,-4803,-4725]],"type":"Polygon","properties":{"wells":63,"gas":1,"oil":17,"d&a":25}},{"arcs":[[-4733,4808,4809,4810,-4806,-4728]],"type":"Polygon","properties":{"wells":5,"gas":2,"oil":null,"d&a":3}},{"arcs":[[-4736,4811,4812,4813,-4809,-4732]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-4741,4814,4815,4816,-4812,-4735]],"type":"Polygon","properties":{"wells":33,"gas":2,"oil":3,"d&a":17}},{"arcs":[[-4743,4817,4818,4819,-4815,-4740]],"type":"Polygon","properties":{"wells":24,"gas":7,"oil":null,"d&a":4}},{"arcs":[[4820,4821,4822,4823,-4818,-4742]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4824,-4822,4825]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[4826,4827]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4748,4828,4829,4830,-4827,4831]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4750,4832,4833,-4829,-4747]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4757,4834,4835,4836,-4753]],"type":"Polygon","properties":{"wells":8,"gas":6,"oil":null,"d&a":0}},{"arcs":[[-4760,4837,4838,4839,-4835,-4756]],"type":"Polygon","properties":{"wells":10,"gas":4,"oil":1,"d&a":3}},{"arcs":[[-4763,4840,4841,4842,-4838,-4759]],"type":"Polygon","properties":{"wells":17,"gas":13,"oil":null,"d&a":3}},{"arcs":[[-4766,4843,4844,4845,-4841,-4762]],"type":"Polygon","properties":{"wells":86,"gas":72,"oil":1,"d&a":3}},{"arcs":[[-4769,4846,4847,4848,-4844,-4765]],"type":"Polygon","properties":{"wells":68,"gas":39,"oil":null,"d&a":1}},{"arcs":[[-4772,4849,4850,4851,-4847,-4768]],"type":"Polygon","properties":{"wells":8,"gas":5,"oil":null,"d&a":1}},{"arcs":[[-4775,4852,4853,4854,-4850,-4771]],"type":"Polygon","properties":{"wells":124,"gas":92,"oil":0,"d&a":2}},{"arcs":[[-4778,4855,4856,4857,-4853,-4774]],"type":"Polygon","properties":{"wells":95,"gas":75,"oil":1,"d&a":3}},{"arcs":[[-4781,4858,4859,4860,-4856,-4777]],"type":"Polygon","properties":{"wells":117,"gas":90,"oil":4,"d&a":2}},{"arcs":[[-4784,4861,4862,4863,-4859,-4780]],"type":"Polygon","properties":{"wells":111,"gas":58,"oil":1,"d&a":6}},{"arcs":[[-4787,4864,4865,4866,-4862,-4783]],"type":"Polygon","properties":{"wells":27,"gas":1,"oil":7,"d&a":14}},{"arcs":[[-4790,4867,4868,4869,-4865,-4786]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-4793,4870,4871,4872,-4868,-4789]],"type":"Polygon","properties":{"wells":14,"gas":1,"oil":1,"d&a":10}},{"arcs":[[-4796,4873,4874,4875,-4871,-4792]],"type":"Polygon","properties":{"wells":10,"gas":2,"oil":2,"d&a":4}},{"arcs":[[-4799,4876,4877,4878,-4874,-4795]],"type":"Polygon","properties":{"wells":425,"gas":1,"oil":290,"d&a":25}},{"arcs":[[-4802,4879,4880,4881,-4877,-4798]],"type":"Polygon","properties":{"wells":303,"gas":3,"oil":204,"d&a":19}},{"arcs":[[-4805,4882,4883,4884,-4880,-4801]],"type":"Polygon","properties":{"wells":42,"gas":null,"oil":29,"d&a":2}},{"arcs":[[-4808,4885,4886,4887,-4883,-4804]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4811,4888,4889,4890,-4886,-4807]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":3,"d&a":4}},{"arcs":[[-4814,4891,4892,4893,-4889,-4810]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":0}},{"arcs":[[-4817,4894,4895,4896,-4892,-4813]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-4820,4897,4898,4899,-4895,-4816]],"type":"Polygon","properties":{"wells":7,"gas":1,"oil":null,"d&a":1}},{"arcs":[[-4824,4900,4901,4902,-4898,-4819]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4825,4903,4904,4905,-4901,-4823]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-4834,4906,-4830]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4840,4907,4908,4909,-4836]],"type":"Polygon","properties":{"wells":63,"gas":43,"oil":null,"d&a":2}},{"arcs":[[-4843,4910,4911,4912,-4908,-4839]],"type":"Polygon","properties":{"wells":9,"gas":8,"oil":null,"d&a":1}},{"arcs":[[-4846,4913,4914,4915,-4911,-4842]],"type":"Polygon","properties":{"wells":52,"gas":41,"oil":2,"d&a":2}},{"arcs":[[-4849,4916,4917,4918,-4914,-4845]],"type":"Polygon","properties":{"wells":80,"gas":56,"oil":null,"d&a":6}},{"arcs":[[-4852,4919,4920,4921,-4917,-4848]],"type":"Polygon","properties":{"wells":57,"gas":43,"oil":null,"d&a":4}},{"arcs":[[-4855,4922,4923,4924,-4920,-4851]],"type":"Polygon","properties":{"wells":22,"gas":11,"oil":6,"d&a":1}},{"arcs":[[-4858,4925,4926,4927,-4923,-4854]],"type":"Polygon","properties":{"wells":76,"gas":47,"oil":null,"d&a":7}},{"arcs":[[-4861,4928,4929,4930,-4926,-4857]],"type":"Polygon","properties":{"wells":12,"gas":7,"oil":null,"d&a":3}},{"arcs":[[-4864,4931,4932,4933,-4929,-4860]],"type":"Polygon","properties":{"wells":17,"gas":11,"oil":null,"d&a":4}},{"arcs":[[-4867,4934,4935,4936,-4932,-4863]],"type":"Polygon","properties":{"wells":7,"gas":1,"oil":null,"d&a":5}},{"arcs":[[-4870,4937,4938,4939,-4935,-4866]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-4873,4940,4941,4942,-4938,-4869]],"type":"Polygon","properties":{"wells":8,"gas":null,"oil":0,"d&a":7}},{"arcs":[[-4876,4943,4944,4945,-4941,-4872]],"type":"Polygon","properties":{"wells":28,"gas":1,"oil":3,"d&a":18}},{"arcs":[[-4879,4946,4947,4948,-4944,-4875]],"type":"Polygon","properties":{"wells":55,"gas":10,"oil":16,"d&a":18}},{"arcs":[[-4882,4949,4950,4951,-4947,-4878]],"type":"Polygon","properties":{"wells":38,"gas":20,"oil":0,"d&a":11}},{"arcs":[[-4885,4952,4953,4954,-4950,-4881]],"type":"Polygon","properties":{"wells":17,"gas":null,"oil":7,"d&a":4}},{"arcs":[[-4888,4955,4956,4957,-4953,-4884]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-4891,4958,4959,4960,-4956,-4887]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4894,4961,4962,4963,-4959,-4890]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":8,"d&a":1}},{"arcs":[[-4897,4964,4965,4966,-4962,-4893]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-4900,4967,4968,4969,-4965,-4896]],"type":"Polygon","properties":{"wells":79,"gas":7,"oil":49,"d&a":17}},{"arcs":[[-4903,4970,4971,4972,-4968,-4899]],"type":"Polygon","properties":{"wells":70,"gas":34,"oil":null,"d&a":36}},{"arcs":[[-4906,4973,4974,4975,-4971,-4902]],"type":"Polygon","properties":{"wells":14,"gas":6,"oil":null,"d&a":8}},{"arcs":[[4976,4977,4978,-4974,-4905]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[4979,4980,4981,4982]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[4983,-4980,4984]],"type":"Polygon","properties":{"wells":3,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-4913,4985,4986,4987,4988,-4909]],"type":"Polygon","properties":{"wells":32,"gas":24,"oil":null,"d&a":1}},{"arcs":[[-4916,4989,4990,4991,-4986,-4912]],"type":"Polygon","properties":{"wells":14,"gas":9,"oil":1,"d&a":null}},{"arcs":[[-4919,4992,4993,4994,-4990,-4915]],"type":"Polygon","properties":{"wells":29,"gas":25,"oil":null,"d&a":1}},{"arcs":[[-4922,4995,4996,4997,-4993,-4918]],"type":"Polygon","properties":{"wells":84,"gas":59,"oil":null,"d&a":4}},{"arcs":[[-4925,4998,4999,5000,-4996,-4921]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":1,"d&a":0}},{"arcs":[[-4928,5001,5002,5003,-4999,-4924]],"type":"Polygon","properties":{"wells":9,"gas":4,"oil":0,"d&a":3}},{"arcs":[[-4931,5004,5005,5006,-5002,-4927]],"type":"Polygon","properties":{"wells":55,"gas":31,"oil":1,"d&a":12}},{"arcs":[[-4934,5007,5008,5009,-5005,-4930]],"type":"Polygon","properties":{"wells":76,"gas":61,"oil":null,"d&a":7}},{"arcs":[[-4937,5010,5011,5012,-5008,-4933]],"type":"Polygon","properties":{"wells":6,"gas":2,"oil":null,"d&a":3}},{"arcs":[[-4940,5013,5014,5015,-5011,-4936]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":0}},{"arcs":[[-4943,5016,5017,5018,-5014,-4939]],"type":"Polygon","properties":{"wells":12,"gas":null,"oil":null,"d&a":10}},{"arcs":[[-4946,5019,5020,5021,-5017,-4942]],"type":"Polygon","properties":{"wells":193,"gas":3,"oil":99,"d&a":46}},{"arcs":[[-4949,5022,5023,5024,-5020,-4945]],"type":"Polygon","properties":{"wells":291,"gas":27,"oil":150,"d&a":55}},{"arcs":[[-4952,5025,5026,5027,-5023,-4948]],"type":"Polygon","properties":{"wells":99,"gas":44,"oil":14,"d&a":29}},{"arcs":[[-4955,5028,5029,5030,-5026,-4951]],"type":"Polygon","properties":{"wells":59,"gas":36,"oil":0,"d&a":8}},{"arcs":[[-4958,5031,5032,5033,-5029,-4954]],"type":"Polygon","properties":{"wells":23,"gas":2,"oil":2,"d&a":12}},{"arcs":[[-4961,5034,5035,5036,-5032,-4957]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-4964,5037,5038,5039,-5035,-4960]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-4967,5040,5041,5042,-5038,-4963]],"type":"Polygon","properties":{"wells":6,"gas":0,"oil":null,"d&a":4}},{"arcs":[[-4970,5043,5044,5045,-5041,-4966]],"type":"Polygon","properties":{"wells":15,"gas":1,"oil":null,"d&a":13}},{"arcs":[[-4973,5046,5047,5048,-5044,-4969]],"type":"Polygon","properties":{"wells":11,"gas":null,"oil":2,"d&a":9}},{"arcs":[[-4976,5049,5050,5051,-5047,-4972]],"type":"Polygon","properties":{"wells":38,"gas":13,"oil":null,"d&a":23}},{"arcs":[[-4979,5052,5053,5054,-5050,-4975]],"type":"Polygon","properties":{"wells":16,"gas":5,"oil":null,"d&a":10}},{"arcs":[[5055,5056,5057,5058,-5053,-4978]],"type":"Polygon","properties":{"wells":12,"gas":0,"oil":null,"d&a":12}},{"arcs":[[-4982,5059,5060,5061,-5057,5062]],"type":"Polygon","properties":{"wells":8,"gas":4,"oil":null,"d&a":2}},{"arcs":[[-4984,5063,5064,5065,-5060,-4981]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[5066,5067,5068,5069]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[5070,-5067,5071]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-4988,5072,5073,5074]],"type":"Polygon","properties":{"wells":13,"gas":8,"oil":null,"d&a":2}},{"arcs":[[-4992,5075,5076,5077,-5073,-4987]],"type":"Polygon","properties":{"wells":34,"gas":24,"oil":null,"d&a":3}},{"arcs":[[-4995,5078,5079,5080,-5076,-4991]],"type":"Polygon","properties":{"wells":15,"gas":10,"oil":null,"d&a":1}},{"arcs":[[-4998,5081,5082,5083,-5079,-4994]],"type":"Polygon","properties":{"wells":17,"gas":9,"oil":null,"d&a":3}},{"arcs":[[-5001,5084,5085,5086,-5082,-4997]],"type":"Polygon","properties":{"wells":8,"gas":4,"oil":null,"d&a":2}},{"arcs":[[-5004,5087,5088,5089,-5085,-5000]],"type":"Polygon","properties":{"wells":32,"gas":15,"oil":0,"d&a":7}},{"arcs":[[-5007,5090,5091,5092,-5088,-5003]],"type":"Polygon","properties":{"wells":81,"gas":45,"oil":4,"d&a":8}},{"arcs":[[-5010,5093,5094,5095,-5091,-5006]],"type":"Polygon","properties":{"wells":12,"gas":7,"oil":null,"d&a":5}},{"arcs":[[-5013,5096,5097,5098,-5094,-5009]],"type":"Polygon","properties":{"wells":18,"gas":7,"oil":null,"d&a":7}},{"arcs":[[-5016,5099,5100,5101,-5097,-5012]],"type":"Polygon","properties":{"wells":1,"gas":0,"oil":null,"d&a":1}},{"arcs":[[-5019,5102,5103,5104,-5100,-5015]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-5022,5105,5106,5107,-5103,-5018]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-5025,5108,5109,5110,-5106,-5021]],"type":"Polygon","properties":{"wells":12,"gas":1,"oil":1,"d&a":4}},{"arcs":[[-5028,5111,5112,5113,-5109,-5024]],"type":"Polygon","properties":{"wells":37,"gas":21,"oil":3,"d&a":4}},{"arcs":[[-5031,5114,5115,5116,-5112,-5027]],"type":"Polygon","properties":{"wells":78,"gas":47,"oil":1,"d&a":12}},{"arcs":[[-5034,5117,5118,5119,-5115,-5030]],"type":"Polygon","properties":{"wells":8,"gas":3,"oil":null,"d&a":4}},{"arcs":[[-5037,5120,5121,5122,-5118,-5033]],"type":"Polygon","properties":{"wells":13,"gas":3,"oil":null,"d&a":4}},{"arcs":[[-5040,5123,5124,5125,-5121,-5036]],"type":"Polygon","properties":{"wells":20,"gas":13,"oil":null,"d&a":4}},{"arcs":[[-5043,5126,5127,5128,-5124,-5039]],"type":"Polygon","properties":{"wells":12,"gas":8,"oil":null,"d&a":null}},{"arcs":[[-5049,5129,5130,5131,5132,-5045]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":4}},{"arcs":[[-5052,5133,5134,5135,-5130,-5048]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-5055,5136,5137,5138,-5134,-5051]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-5059,5139,5140,5141,-5137,-5054]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":8}},{"arcs":[[-5062,5142,5143,5144,-5140,-5058]],"type":"Polygon","properties":{"wells":13,"gas":8,"oil":null,"d&a":5}},{"arcs":[[-5066,5145,5146,5147,-5143,-5061]],"type":"Polygon","properties":{"wells":7,"gas":4,"oil":null,"d&a":2}},{"arcs":[[5148,5149,5150,5151,-5146,-5065]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-5069,5152,5153,5154,-5150,5155]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-5071,5156,-5153,-5068]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-5078,5157,5158,5159,-5074]],"type":"Polygon","properties":{"wells":19,"gas":13,"oil":null,"d&a":3}},{"arcs":[[-5081,5160,5161,5162,-5158,-5077]],"type":"Polygon","properties":{"wells":17,"gas":11,"oil":null,"d&a":3}},{"arcs":[[-5084,5163,5164,5165,-5161,-5080]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":null,"d&a":2}},{"arcs":[[-5087,5166,5167,5168,-5164,-5083]],"type":"Polygon","properties":{"wells":21,"gas":15,"oil":null,"d&a":2}},{"arcs":[[-5090,5169,5170,5171,-5167,-5086]],"type":"Polygon","properties":{"wells":48,"gas":26,"oil":1,"d&a":10}},{"arcs":[[-5093,5172,5173,5174,-5170,-5089]],"type":"Polygon","properties":{"wells":50,"gas":27,"oil":2,"d&a":5}},{"arcs":[[-5096,5175,5176,5177,-5173,-5092]],"type":"Polygon","properties":{"wells":20,"gas":13,"oil":1,"d&a":1}},{"arcs":[[-5099,5178,5179,5180,-5176,-5095]],"type":"Polygon","properties":{"wells":47,"gas":31,"oil":null,"d&a":4}},{"arcs":[[-5102,5181,5182,5183,-5179,-5098]],"type":"Polygon","properties":{"wells":54,"gas":31,"oil":null,"d&a":10}},{"arcs":[[-5105,5184,5185,5186,-5182,-5101]],"type":"Polygon","properties":{"wells":13,"gas":4,"oil":null,"d&a":5}},{"arcs":[[-5108,5187,5188,5189,-5185,-5104]],"type":"Polygon","properties":{"wells":10,"gas":1,"oil":null,"d&a":6}},{"arcs":[[-5111,5190,5191,5192,-5188,-5107]],"type":"Polygon","properties":{"wells":8,"gas":1,"oil":3,"d&a":1}},{"arcs":[[-5114,5193,5194,5195,-5191,-5110]],"type":"Polygon","properties":{"wells":39,"gas":29,"oil":null,"d&a":9}},{"arcs":[[-5117,5196,5197,5198,-5194,-5113]],"type":"Polygon","properties":{"wells":154,"gas":105,"oil":3,"d&a":28}},{"arcs":[[-5120,5199,5200,5201,-5197,-5116]],"type":"Polygon","properties":{"wells":38,"gas":22,"oil":null,"d&a":7}},{"arcs":[[-5123,5202,5203,5204,-5200,-5119]],"type":"Polygon","properties":{"wells":57,"gas":15,"oil":5,"d&a":15}},{"arcs":[[-5126,5205,5206,5207,-5203,-5122]],"type":"Polygon","properties":{"wells":26,"gas":16,"oil":2,"d&a":5}},{"arcs":[[-5129,5208,5209,5210,-5206,-5125]],"type":"Polygon","properties":{"wells":18,"gas":9,"oil":null,"d&a":7}},{"arcs":[[5211,5212,5213,5214,-5209,-5128]],"type":"Polygon","properties":{"wells":13,"gas":4,"oil":null,"d&a":9}},{"arcs":[[-5132,5215,5216,5217,-5213,5218]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-5136,5219,5220,5221,-5216,-5131]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-5139,5222,5223,5224,-5220,-5135]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":9}},{"arcs":[[-5142,5225,5226,5227,-5223,-5138]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":0,"d&a":2}},{"arcs":[[-5145,5228,5229,5230,-5226,-5141]],"type":"Polygon","properties":{"wells":6,"gas":null,"oil":null,"d&a":6}},{"arcs":[[-5148,5231,5232,5233,-5229,-5144]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-5152,5234,5235,5236,-5232,-5147]],"type":"Polygon","properties":{"wells":13,"gas":null,"oil":7,"d&a":6}},{"arcs":[[-5155,5237,5238,5239,-5235,-5151]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-5163,5240,5241,5242,-5159]],"type":"Polygon","properties":{"wells":14,"gas":12,"oil":null,"d&a":null}},{"arcs":[[-5166,5243,5244,5245,-5241,-5162]],"type":"Polygon","properties":{"wells":4,"gas":3,"oil":null,"d&a":null}},{"arcs":[[-5169,5246,5247,5248,-5244,-5165]],"type":"Polygon","properties":{"wells":12,"gas":12,"oil":null,"d&a":null}},{"arcs":[[-5172,5249,5250,5251,-5247,-5168]],"type":"Polygon","properties":{"wells":52,"gas":37,"oil":null,"d&a":6}},{"arcs":[[-5175,5252,5253,5254,-5250,-5171]],"type":"Polygon","properties":{"wells":188,"gas":17,"oil":9,"d&a":20}},{"arcs":[[-5178,5255,5256,5257,-5253,-5174]],"type":"Polygon","properties":{"wells":94,"gas":46,"oil":1,"d&a":7}},{"arcs":[[-5181,5258,5259,5260,-5256,-5177]],"type":"Polygon","properties":{"wells":62,"gas":43,"oil":null,"d&a":6}},{"arcs":[[-5184,5261,5262,5263,-5259,-5180]],"type":"Polygon","properties":{"wells":48,"gas":25,"oil":null,"d&a":7}},{"arcs":[[-5187,5264,5265,5266,-5262,-5183]],"type":"Polygon","properties":{"wells":11,"gas":1,"oil":null,"d&a":8}},{"arcs":[[-5190,5267,5268,5269,-5265,-5186]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":4}},{"arcs":[[-5193,5270,5271,5272,-5268,-5189]],"type":"Polygon","properties":{"wells":4,"gas":2,"oil":null,"d&a":2}},{"arcs":[[-5196,5273,5274,5275,-5271,-5192]],"type":"Polygon","properties":{"wells":24,"gas":1,"oil":4,"d&a":12}},{"arcs":[[-5199,5276,5277,5278,-5274,-5195]],"type":"Polygon","properties":{"wells":30,"gas":14,"oil":null,"d&a":4}},{"arcs":[[-5202,5279,5280,5281,-5277,-5198]],"type":"Polygon","properties":{"wells":37,"gas":12,"oil":null,"d&a":12}},{"arcs":[[-5205,5282,5283,5284,-5280,-5201]],"type":"Polygon","properties":{"wells":33,"gas":15,"oil":1,"d&a":1}},{"arcs":[[-5208,5285,5286,5287,-5283,-5204]],"type":"Polygon","properties":{"wells":40,"gas":8,"oil":3,"d&a":8}},{"arcs":[[-5211,5288,5289,5290,-5286,-5207]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-5215,5291,5292,5293,-5289,-5210]],"type":"Polygon","properties":{"wells":11,"gas":1,"oil":1,"d&a":5}},{"arcs":[[-5222,5294,5295,5296,5297,-5217]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-5225,5298,5299,5300,-5295,-5221]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-5228,5301,5302,5303,-5299,-5224]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-5231,5304,5305,5306,-5302,-5227]],"type":"Polygon","properties":{"wells":7,"gas":0,"oil":5,"d&a":1}},{"arcs":[[-5234,5307,5308,5309,-5305,-5230]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-5237,5310,5311,5312,-5308,-5233]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-5240,5313,5314,5315,-5311,-5236]],"type":"Polygon","properties":{"wells":5,"gas":0,"oil":0,"d&a":4}},{"arcs":[[5316,5317,-5314,-5239]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-5246,5318,5319,5320,-5242]],"type":"Polygon","properties":{"wells":8,"gas":5,"oil":null,"d&a":1}},{"arcs":[[-5252,5321,5322,5323,5324,-5248]],"type":"Polygon","properties":{"wells":45,"gas":37,"oil":null,"d&a":2}},{"arcs":[[-5255,5325,5326,5327,-5322,-5251]],"type":"Polygon","properties":{"wells":50,"gas":31,"oil":null,"d&a":4}},{"arcs":[[-5258,5328,5329,5330,-5326,-5254]],"type":"Polygon","properties":{"wells":178,"gas":40,"oil":13,"d&a":19}},{"arcs":[[-5261,5331,5332,5333,-5329,-5257]],"type":"Polygon","properties":{"wells":98,"gas":54,"oil":3,"d&a":25}},{"arcs":[[-5264,5334,5335,5336,-5332,-5260]],"type":"Polygon","properties":{"wells":76,"gas":47,"oil":null,"d&a":3}},{"arcs":[[-5267,5337,5338,5339,-5335,-5263]],"type":"Polygon","properties":{"wells":61,"gas":24,"oil":2,"d&a":14}},{"arcs":[[-5270,5340,5341,5342,-5338,-5266]],"type":"Polygon","properties":{"wells":42,"gas":22,"oil":null,"d&a":9}},{"arcs":[[-5273,5343,5344,5345,-5341,-5269]],"type":"Polygon","properties":{"wells":40,"gas":30,"oil":null,"d&a":5}},{"arcs":[[-5276,5346,5347,5348,-5344,-5272]],"type":"Polygon","properties":{"wells":38,"gas":3,"oil":10,"d&a":18}},{"arcs":[[-5279,5349,5350,5351,-5347,-5275]],"type":"Polygon","properties":{"wells":8,"gas":2,"oil":0,"d&a":1}},{"arcs":[[-5282,5352,5353,5354,-5350,-5278]],"type":"Polygon","properties":{"wells":8,"gas":4,"oil":null,"d&a":3}},{"arcs":[[-5285,5355,5356,5357,-5353,-5281]],"type":"Polygon","properties":{"wells":25,"gas":5,"oil":null,"d&a":2}},{"arcs":[[-5288,5358,5359,5360,-5356,-5284]],"type":"Polygon","properties":{"wells":57,"gas":16,"oil":1,"d&a":4}},{"arcs":[[-5291,5361,5362,5363,-5359,-5287]],"type":"Polygon","properties":{"wells":47,"gas":19,"oil":2,"d&a":19}},{"arcs":[[-5294,5364,5365,5366,-5362,-5290]],"type":"Polygon","properties":{"wells":12,"gas":3,"oil":0,"d&a":7}},{"arcs":[[5367,5368,5369,5370,-5365,-5293]],"type":"Polygon","properties":{"wells":8,"gas":4,"oil":null,"d&a":1}},{"arcs":[[-5297,5371,5372,5373,-5369,5374]],"type":"Polygon","properties":{"wells":4,"gas":2,"oil":null,"d&a":1}},{"arcs":[[-5301,5375,5376,5377,-5372,-5296]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-5304,5378,5379,5380,-5376,-5300]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-5307,5381,5382,5383,-5379,-5303]],"type":"Polygon","properties":{"wells":28,"gas":7,"oil":2,"d&a":10}},{"arcs":[[-5310,5384,5385,5386,-5382,-5306]],"type":"Polygon","properties":{"wells":15,"gas":3,"oil":5,"d&a":6}},{"arcs":[[-5313,5387,5388,5389,-5385,-5309]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":0,"d&a":4}},{"arcs":[[-5316,5390,5391,5392,-5388,-5312]],"type":"Polygon","properties":{"wells":2,"gas":1,"oil":null,"d&a":1}},{"arcs":[[-5318,5393,5394,5395,-5391,-5315]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[5396,5397,5398,5399,5400,-5320]],"type":"Polygon","properties":{"wells":1,"gas":0,"oil":null,"d&a":null}},{"arcs":[[-5324,5401,5402,5403,-5398,5404]],"type":"Polygon","properties":{"wells":6,"gas":3,"oil":null,"d&a":2}},{"arcs":[[-5328,5405,5406,5407,-5402,-5323]],"type":"Polygon","properties":{"wells":57,"gas":48,"oil":null,"d&a":3}},{"arcs":[[-5331,5408,5409,5410,-5406,-5327]],"type":"Polygon","properties":{"wells":102,"gas":86,"oil":0,"d&a":6}},{"arcs":[[-5334,5411,5412,5413,-5409,-5330]],"type":"Polygon","properties":{"wells":78,"gas":55,"oil":0,"d&a":10}},{"arcs":[[-5337,5414,5415,5416,-5412,-5333]],"type":"Polygon","properties":{"wells":122,"gas":106,"oil":null,"d&a":7}},{"arcs":[[-5340,5417,5418,5419,-5415,-5336]],"type":"Polygon","properties":{"wells":116,"gas":59,"oil":7,"d&a":15}},{"arcs":[[-5343,5420,5421,5422,-5418,-5339]],"type":"Polygon","properties":{"wells":132,"gas":100,"oil":null,"d&a":7}},{"arcs":[[-5346,5423,5424,5425,-5421,-5342]],"type":"Polygon","properties":{"wells":91,"gas":65,"oil":1,"d&a":10}},{"arcs":[[-5349,5426,5427,5428,-5424,-5345]],"type":"Polygon","properties":{"wells":17,"gas":6,"oil":null,"d&a":5}},{"arcs":[[-5352,5429,5430,5431,-5427,-5348]],"type":"Polygon","properties":{"wells":16,"gas":6,"oil":null,"d&a":5}},{"arcs":[[-5355,5432,5433,5434,-5430,-5351]],"type":"Polygon","properties":{"wells":9,"gas":null,"oil":null,"d&a":7}},{"arcs":[[-5358,5435,5436,5437,-5433,-5354]],"type":"Polygon","properties":{"wells":46,"gas":21,"oil":null,"d&a":5}},{"arcs":[[-5361,5438,5439,5440,-5436,-5357]],"type":"Polygon","properties":{"wells":107,"gas":54,"oil":1,"d&a":5}},{"arcs":[[-5364,5441,5442,5443,-5439,-5360]],"type":"Polygon","properties":{"wells":49,"gas":8,"oil":null,"d&a":2}},{"arcs":[[-5367,5444,5445,5446,-5442,-5363]],"type":"Polygon","properties":{"wells":6,"gas":2,"oil":null,"d&a":3}},{"arcs":[[-5371,5447,5448,5449,-5445,-5366]],"type":"Polygon","properties":{"wells":6,"gas":5,"oil":null,"d&a":0}},{"arcs":[[-5374,5450,5451,5452,-5448,-5370]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":0,"d&a":1}},{"arcs":[[-5378,5453,5454,5455,-5451,-5373]],"type":"Polygon","properties":{"wells":17,"gas":null,"oil":5,"d&a":7}},{"arcs":[[-5381,5456,5457,5458,-5454,-5377]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-5384,5459,5460,5461,-5457,-5380]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":null}},{"arcs":[[-5387,5462,5463,5464,-5460,-5383]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":0,"d&a":2}},{"arcs":[[-5390,5465,5466,5467,-5463,-5386]],"type":"Polygon","properties":{"wells":17,"gas":null,"oil":3,"d&a":10}},{"arcs":[[-5393,5468,5469,5470,-5466,-5389]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-5396,5471,5472,5473,-5469,-5392]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[5474,5475,5476,5477,-5472,-5395]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[5478,-5476,5479]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-5400,5480,5481,5482]],"type":"Polygon","properties":{"wells":2,"gas":2,"oil":null,"d&a":null}},{"arcs":[[-5404,5483,5484,5485,-5481,-5399]],"type":"Polygon","properties":{"wells":29,"gas":12,"oil":10,"d&a":6}},{"arcs":[[-5408,5486,5487,5488,-5484,-5403]],"type":"Polygon","properties":{"wells":6,"gas":3,"oil":null,"d&a":2}},{"arcs":[[-5411,5489,5490,5491,-5487,-5407]],"type":"Polygon","properties":{"wells":70,"gas":59,"oil":null,"d&a":2}},{"arcs":[[-5414,5492,5493,5494,-5490,-5410]],"type":"Polygon","properties":{"wells":126,"gas":80,"oil":4,"d&a":8}},{"arcs":[[-5417,5495,5496,5497,-5493,-5413]],"type":"Polygon","properties":{"wells":135,"gas":111,"oil":1,"d&a":4}},{"arcs":[[-5420,5498,5499,5500,-5496,-5416]],"type":"Polygon","properties":{"wells":138,"gas":91,"oil":6,"d&a":6}},{"arcs":[[-5423,5501,5502,5503,-5499,-5419]],"type":"Polygon","properties":{"wells":130,"gas":124,"oil":null,"d&a":1}},{"arcs":[[-5426,5504,5505,5506,-5502,-5422]],"type":"Polygon","properties":{"wells":122,"gas":101,"oil":null,"d&a":4}},{"arcs":[[-5429,5507,5508,5509,-5505,-5425]],"type":"Polygon","properties":{"wells":95,"gas":63,"oil":0,"d&a":15}},{"arcs":[[-5432,5510,5511,5512,-5508,-5428]],"type":"Polygon","properties":{"wells":44,"gas":34,"oil":null,"d&a":1}},{"arcs":[[-5435,5513,5514,5515,-5511,-5431]],"type":"Polygon","properties":{"wells":29,"gas":9,"oil":3,"d&a":9}},{"arcs":[[-5438,5516,5517,5518,-5514,-5434]],"type":"Polygon","properties":{"wells":75,"gas":43,"oil":null,"d&a":16}},{"arcs":[[-5441,5519,5520,5521,-5517,-5437]],"type":"Polygon","properties":{"wells":160,"gas":116,"oil":6,"d&a":11}},{"arcs":[[-5444,5522,5523,5524,-5520,-5440]],"type":"Polygon","properties":{"wells":57,"gas":22,"oil":0,"d&a":2}},{"arcs":[[-5447,5525,5526,5527,-5523,-5443]],"type":"Polygon","properties":{"wells":73,"gas":37,"oil":1,"d&a":1}},{"arcs":[[-5450,5528,5529,5530,-5526,-5446]],"type":"Polygon","properties":{"wells":19,"gas":6,"oil":null,"d&a":5}},{"arcs":[[-5453,5531,5532,5533,-5529,-5449]],"type":"Polygon","properties":{"wells":40,"gas":28,"oil":null,"d&a":6}},{"arcs":[[-5456,5534,5535,5536,-5532,-5452]],"type":"Polygon","properties":{"wells":235,"gas":8,"oil":107,"d&a":36}},{"arcs":[[-5459,5537,5538,5539,-5535,-5455]],"type":"Polygon","properties":{"wells":114,"gas":3,"oil":36,"d&a":11}},{"arcs":[[-5462,5540,5541,5542,-5538,-5458]],"type":"Polygon","properties":{"wells":50,"gas":null,"oil":28,"d&a":5}},{"arcs":[[-5465,5543,5544,5545,-5541,-5461]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":1,"d&a":2}},{"arcs":[[-5468,5546,5547,5548,-5544,-5464]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":1,"d&a":3}},{"arcs":[[-5471,5549,5550,5551,-5547,-5467]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-5474,5552,5553,5554,-5550,-5470]],"type":"Polygon","properties":{"wells":12,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-5478,5555,5556,5557,-5553,-5473]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-5479,5558,5559,5560,-5556,-5477]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-5486,5561,5562,5563,-5482]],"type":"Polygon","properties":{"wells":8,"gas":7,"oil":null,"d&a":0}},{"arcs":[[-5489,5564,5565,5566,-5562,-5485]],"type":"Polygon","properties":{"wells":44,"gas":35,"oil":null,"d&a":2}},{"arcs":[[-5492,5567,5568,5569,-5565,-5488]],"type":"Polygon","properties":{"wells":9,"gas":7,"oil":null,"d&a":null}},{"arcs":[[-5495,5570,5571,5572,-5568,-5491]],"type":"Polygon","properties":{"wells":100,"gas":64,"oil":0,"d&a":9}},{"arcs":[[-5498,5573,5574,5575,-5571,-5494]],"type":"Polygon","properties":{"wells":194,"gas":92,"oil":23,"d&a":15}},{"arcs":[[-5501,5576,5577,5578,-5574,-5497]],"type":"Polygon","properties":{"wells":201,"gas":136,"oil":2,"d&a":4}},{"arcs":[[-5504,5579,5580,5581,-5577,-5500]],"type":"Polygon","properties":{"wells":129,"gas":115,"oil":1,"d&a":6}},{"arcs":[[-5507,5582,5583,5584,-5580,-5503]],"type":"Polygon","properties":{"wells":142,"gas":120,"oil":null,"d&a":2}},{"arcs":[[-5510,5585,5586,5587,-5583,-5506]],"type":"Polygon","properties":{"wells":135,"gas":102,"oil":4,"d&a":16}},{"arcs":[[-5513,5588,5589,5590,-5586,-5509]],"type":"Polygon","properties":{"wells":96,"gas":68,"oil":null,"d&a":7}},{"arcs":[[-5516,5591,5592,5593,-5589,-5512]],"type":"Polygon","properties":{"wells":109,"gas":80,"oil":null,"d&a":8}},{"arcs":[[-5519,5594,5595,5596,-5592,-5515]],"type":"Polygon","properties":{"wells":24,"gas":11,"oil":1,"d&a":4}},{"arcs":[[-5522,5597,5598,5599,-5595,-5518]],"type":"Polygon","properties":{"wells":102,"gas":60,"oil":1,"d&a":20}},{"arcs":[[-5525,5600,5601,5602,-5598,-5521]],"type":"Polygon","properties":{"wells":317,"gas":51,"oil":146,"d&a":25}},{"arcs":[[-5528,5603,5604,5605,-5601,-5524]],"type":"Polygon","properties":{"wells":628,"gas":27,"oil":274,"d&a":9}},{"arcs":[[-5531,5606,5607,5608,-5604,-5527]],"type":"Polygon","properties":{"wells":137,"gas":54,"oil":24,"d&a":10}},{"arcs":[[-5534,5609,5610,5611,-5607,-5530]],"type":"Polygon","properties":{"wells":26,"gas":1,"oil":9,"d&a":4}},{"arcs":[[-5537,5612,5613,5614,-5610,-5533]],"type":"Polygon","properties":{"wells":315,"gas":41,"oil":157,"d&a":34}},{"arcs":[[-5540,5615,5616,5617,-5613,-5536]],"type":"Polygon","properties":{"wells":236,"gas":46,"oil":97,"d&a":28}},{"arcs":[[-5543,5618,5619,5620,-5616,-5539]],"type":"Polygon","properties":{"wells":24,"gas":null,"oil":8,"d&a":9}},{"arcs":[[-5546,5621,5622,5623,-5619,-5542]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":1,"d&a":6}},{"arcs":[[-5549,5624,5625,5626,-5622,-5545]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-5552,5627,5628,5629,-5625,-5548]],"type":"Polygon","properties":{"wells":7,"gas":null,"oil":1,"d&a":5}},{"arcs":[[-5555,5630,5631,5632,-5628,-5551]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":1,"d&a":0}},{"arcs":[[-5558,5633,5634,5635,-5631,-5554]],"type":"Polygon","properties":{"wells":2,"gas":0,"oil":null,"d&a":2}},{"arcs":[[-5561,5636,5637,5638,-5634,-5557]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[5639,5640,5641,-5637,-5560]],"type":"Polygon","properties":{"wells":4,"gas":1,"oil":null,"d&a":3}},{"arcs":[[-5567,5642,5643,5644,-5563]],"type":"Polygon","properties":{"wells":25,"gas":19,"oil":null,"d&a":null}},{"arcs":[[-5570,5645,5646,5647,-5643,-5566]],"type":"Polygon","properties":{"wells":4,"gas":3,"oil":null,"d&a":null}},{"arcs":[[-5573,5648,5649,5650,-5646,-5569]],"type":"Polygon","properties":{"wells":27,"gas":21,"oil":null,"d&a":0}},{"arcs":[[-5576,5651,5652,5653,-5649,-5572]],"type":"Polygon","properties":{"wells":145,"gas":52,"oil":5,"d&a":17}},{"arcs":[[-5579,5654,5655,5656,-5652,-5575]],"type":"Polygon","properties":{"wells":118,"gas":94,"oil":null,"d&a":5}},{"arcs":[[-5582,5657,5658,5659,-5655,-5578]],"type":"Polygon","properties":{"wells":146,"gas":128,"oil":null,"d&a":3}},{"arcs":[[-5585,5660,5661,5662,-5658,-5581]],"type":"Polygon","properties":{"wells":144,"gas":124,"oil":null,"d&a":2}},{"arcs":[[-5588,5663,5664,5665,-5661,-5584]],"type":"Polygon","properties":{"wells":166,"gas":144,"oil":1,"d&a":9}},{"arcs":[[-5591,5666,5667,5668,-5664,-5587]],"type":"Polygon","properties":{"wells":70,"gas":56,"oil":null,"d&a":9}},{"arcs":[[-5594,5669,5670,5671,-5667,-5590]],"type":"Polygon","properties":{"wells":61,"gas":39,"oil":6,"d&a":8}},{"arcs":[[-5597,5672,5673,5674,-5670,-5593]],"type":"Polygon","properties":{"wells":117,"gas":74,"oil":1,"d&a":23}},{"arcs":[[-5600,5675,5676,5677,-5673,-5596]],"type":"Polygon","properties":{"wells":100,"gas":56,"oil":null,"d&a":28}},{"arcs":[[-5603,5678,5679,5680,-5676,-5599]],"type":"Polygon","properties":{"wells":216,"gas":66,"oil":63,"d&a":24}},{"arcs":[[-5606,5681,5682,5683,-5679,-5602]],"type":"Polygon","properties":{"wells":1461,"gas":4,"oil":778,"d&a":68}},{"arcs":[[-5609,5684,5685,5686,-5682,-5605]],"type":"Polygon","properties":{"wells":1372,"gas":114,"oil":707,"d&a":56}},{"arcs":[[-5612,5687,5688,5689,-5685,-5608]],"type":"Polygon","properties":{"wells":285,"gas":32,"oil":191,"d&a":23}},{"arcs":[[-5615,5690,5691,5692,-5688,-5611]],"type":"Polygon","properties":{"wells":1256,"gas":83,"oil":812,"d&a":15}},{"arcs":[[-5618,5693,5694,5695,-5691,-5614]],"type":"Polygon","properties":{"wells":443,"gas":5,"oil":271,"d&a":19}},{"arcs":[[-5621,5696,5697,5698,-5694,-5617]],"type":"Polygon","properties":{"wells":11,"gas":3,"oil":null,"d&a":6}},{"arcs":[[-5624,5699,5700,5701,-5697,-5620]],"type":"Polygon","properties":{"wells":8,"gas":2,"oil":0,"d&a":6}},{"arcs":[[-5627,5702,5703,5704,-5700,-5623]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-5630,5705,5706,5707,-5703,-5626]],"type":"Polygon","properties":{"wells":4,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-5633,5708,5709,5710,-5706,-5629]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-5636,5711,5712,5713,-5709,-5632]],"type":"Polygon","properties":{"wells":16,"gas":1,"oil":3,"d&a":10}},{"arcs":[[-5639,5714,5715,5716,-5712,-5635]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-5642,5717,5718,5719,-5715,-5638]],"type":"Polygon","properties":{"wells":5,"gas":1,"oil":null,"d&a":4}},{"arcs":[[5720,5721,5722,5723,-5718,-5641]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[5724,5725,-5722,5726]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-5648,5727,5728,5729,-5644]],"type":"Polygon","properties":{"wells":25,"gas":10,"oil":null,"d&a":null}},{"arcs":[[-5651,5730,5731,5732,-5728,-5647]],"type":"Polygon","properties":{"wells":36,"gas":24,"oil":null,"d&a":1}},{"arcs":[[-5654,5733,5734,5735,-5731,-5650]],"type":"Polygon","properties":{"wells":48,"gas":38,"oil":0,"d&a":3}},{"arcs":[[-5657,5736,5737,5738,-5734,-5653]],"type":"Polygon","properties":{"wells":117,"gas":91,"oil":0,"d&a":3}},{"arcs":[[-5660,5739,5740,5741,-5737,-5656]],"type":"Polygon","properties":{"wells":87,"gas":72,"oil":null,"d&a":3}},{"arcs":[[-5663,5742,5743,5744,-5740,-5659]],"type":"Polygon","properties":{"wells":126,"gas":110,"oil":null,"d&a":6}},{"arcs":[[-5666,5745,5746,5747,-5743,-5662]],"type":"Polygon","properties":{"wells":168,"gas":159,"oil":null,"d&a":3}},{"arcs":[[-5669,5748,5749,5750,-5746,-5665]],"type":"Polygon","properties":{"wells":134,"gas":96,"oil":1,"d&a":11}},{"arcs":[[-5672,5751,5752,5753,-5749,-5668]],"type":"Polygon","properties":{"wells":84,"gas":68,"oil":null,"d&a":11}},{"arcs":[[-5675,5754,5755,5756,-5752,-5671]],"type":"Polygon","properties":{"wells":155,"gas":125,"oil":null,"d&a":22}},{"arcs":[[-5678,5757,5758,5759,-5755,-5674]],"type":"Polygon","properties":{"wells":135,"gas":82,"oil":1,"d&a":33}},{"arcs":[[-5681,5760,5761,5762,-5758,-5677]],"type":"Polygon","properties":{"wells":53,"gas":26,"oil":1,"d&a":16}},{"arcs":[[-5684,5763,5764,5765,-5761,-5680]],"type":"Polygon","properties":{"wells":72,"gas":48,"oil":3,"d&a":7}},{"arcs":[[-5687,5766,5767,5768,-5764,-5683]],"type":"Polygon","properties":{"wells":67,"gas":31,"oil":9,"d&a":15}},{"arcs":[[-5690,5769,5770,5771,-5767,-5686]],"type":"Polygon","properties":{"wells":124,"gas":13,"oil":79,"d&a":22}},{"arcs":[[-5693,5772,5773,5774,-5770,-5689]],"type":"Polygon","properties":{"wells":277,"gas":225,"oil":20,"d&a":10}},{"arcs":[[-5696,5775,5776,5777,-5773,-5692]],"type":"Polygon","properties":{"wells":1466,"gas":43,"oil":797,"d&a":47}},{"arcs":[[-5699,5778,5779,5780,-5776,-5695]],"type":"Polygon","properties":{"wells":99,"gas":69,"oil":4,"d&a":11}},{"arcs":[[-5702,5781,5782,5783,-5779,-5698]],"type":"Polygon","properties":{"wells":14,"gas":3,"oil":null,"d&a":8}},{"arcs":[[-5705,5784,5785,5786,-5782,-5701]],"type":"Polygon","properties":{"wells":6,"gas":1,"oil":null,"d&a":4}},{"arcs":[[-5708,5787,5788,5789,-5785,-5704]],"type":"Polygon","properties":{"wells":12,"gas":3,"oil":null,"d&a":3}},{"arcs":[[-5711,5790,5791,5792,-5788,-5707]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":5}},{"arcs":[[-5714,5793,5794,5795,-5791,-5710]],"type":"Polygon","properties":{"wells":34,"gas":null,"oil":10,"d&a":13}},{"arcs":[[-5717,5796,5797,5798,-5794,-5713]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-5724,5799,5800,-5719]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-5726,5801,5802,-5800,-5723]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":null}},{"arcs":[[5803,-5802,-5725]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-5733,5804,5805,-5729]],"type":"Polygon","properties":{"wells":24,"gas":14,"oil":null,"d&a":null}},{"arcs":[[-5736,5806,5807,5808,-5805,-5732]],"type":"Polygon","properties":{"wells":27,"gas":24,"oil":null,"d&a":null}},{"arcs":[[-5739,5809,5810,5811,-5807,-5735]],"type":"Polygon","properties":{"wells":27,"gas":21,"oil":null,"d&a":2}},{"arcs":[[-5742,5812,5813,5814,-5810,-5738]],"type":"Polygon","properties":{"wells":104,"gas":87,"oil":2,"d&a":4}},{"arcs":[[-5745,5815,5816,5817,-5813,-5741]],"type":"Polygon","properties":{"wells":126,"gas":103,"oil":null,"d&a":5}},{"arcs":[[-5748,5818,5819,5820,-5816,-5744]],"type":"Polygon","properties":{"wells":111,"gas":93,"oil":null,"d&a":7}},{"arcs":[[-5751,5821,5822,5823,-5819,-5747]],"type":"Polygon","properties":{"wells":117,"gas":103,"oil":1,"d&a":5}},{"arcs":[[-5754,5824,5825,5826,-5822,-5750]],"type":"Polygon","properties":{"wells":105,"gas":91,"oil":null,"d&a":7}},{"arcs":[[-5757,5827,5828,5829,-5825,-5753]],"type":"Polygon","properties":{"wells":203,"gas":145,"oil":10,"d&a":20}},{"arcs":[[-5760,5830,5831,5832,-5828,-5756]],"type":"Polygon","properties":{"wells":187,"gas":147,"oil":2,"d&a":16}},{"arcs":[[-5763,5833,5834,5835,-5831,-5759]],"type":"Polygon","properties":{"wells":154,"gas":113,"oil":null,"d&a":31}},{"arcs":[[-5766,5836,5837,5838,-5834,-5762]],"type":"Polygon","properties":{"wells":116,"gas":59,"oil":0,"d&a":29}},{"arcs":[[-5769,5839,5840,5841,-5837,-5765]],"type":"Polygon","properties":{"wells":71,"gas":47,"oil":0,"d&a":9}},{"arcs":[[-5772,5842,5843,5844,-5840,-5768]],"type":"Polygon","properties":{"wells":73,"gas":49,"oil":5,"d&a":10}},{"arcs":[[-5775,5845,5846,5847,-5843,-5771]],"type":"Polygon","properties":{"wells":12,"gas":1,"oil":0,"d&a":8}},{"arcs":[[-5778,5848,5849,5850,-5846,-5774]],"type":"Polygon","properties":{"wells":79,"gas":49,"oil":2,"d&a":7}},{"arcs":[[-5781,5851,5852,5853,-5849,-5777]],"type":"Polygon","properties":{"wells":24,"gas":2,"oil":3,"d&a":12}},{"arcs":[[-5784,5854,5855,5856,-5852,-5780]],"type":"Polygon","properties":{"wells":5,"gas":3,"oil":null,"d&a":1}},{"arcs":[[-5787,5857,5858,5859,-5855,-5783]],"type":"Polygon","properties":{"wells":7,"gas":1,"oil":null,"d&a":3}},{"arcs":[[-5790,5860,5861,5862,-5858,-5786]],"type":"Polygon","properties":{"wells":24,"gas":11,"oil":null,"d&a":13}},{"arcs":[[-5793,5863,5864,5865,-5861,-5789]],"type":"Polygon","properties":{"wells":32,"gas":25,"oil":null,"d&a":7}},{"arcs":[[-5796,5866,5867,5868,-5864,-5792]],"type":"Polygon","properties":{"wells":27,"gas":1,"oil":9,"d&a":7}},{"arcs":[[-5799,5869,5870,5871,-5867,-5795]],"type":"Polygon","properties":{"wells":64,"gas":2,"oil":36,"d&a":3}},{"arcs":[[5872,5873,-5870,-5798]],"type":"Polygon","properties":{"wells":2,"gas":null,"oil":null,"d&a":2}},{"arcs":[[-5812,5874,5875,5876,5877,-5808]],"type":"Polygon","properties":{"wells":12,"gas":12,"oil":null,"d&a":null}},{"arcs":[[-5815,5878,5879,5880,-5875,-5811]],"type":"Polygon","properties":{"wells":94,"gas":69,"oil":null,"d&a":4}},{"arcs":[[-5818,5881,5882,5883,-5879,-5814]],"type":"Polygon","properties":{"wells":99,"gas":85,"oil":null,"d&a":2}},{"arcs":[[-5821,5884,5885,5886,-5882,-5817]],"type":"Polygon","properties":{"wells":99,"gas":76,"oil":1,"d&a":12}},{"arcs":[[-5824,5887,5888,5889,-5885,-5820]],"type":"Polygon","properties":{"wells":147,"gas":116,"oil":4,"d&a":5}},{"arcs":[[-5827,5890,5891,5892,-5888,-5823]],"type":"Polygon","properties":{"wells":144,"gas":120,"oil":null,"d&a":7}},{"arcs":[[-5830,5893,5894,5895,-5891,-5826]],"type":"Polygon","properties":{"wells":160,"gas":128,"oil":2,"d&a":12}},{"arcs":[[-5833,5896,5897,5898,-5894,-5829]],"type":"Polygon","properties":{"wells":256,"gas":191,"oil":11,"d&a":26}},{"arcs":[[-5836,5899,5900,5901,-5897,-5832]],"type":"Polygon","properties":{"wells":138,"gas":106,"oil":2,"d&a":16}},{"arcs":[[-5839,5902,5903,5904,-5900,-5835]],"type":"Polygon","properties":{"wells":176,"gas":128,"oil":1,"d&a":26}},{"arcs":[[-5842,5905,5906,5907,-5903,-5838]],"type":"Polygon","properties":{"wells":71,"gas":51,"oil":null,"d&a":8}},{"arcs":[[-5845,5908,5909,5910,-5906,-5841]],"type":"Polygon","properties":{"wells":48,"gas":31,"oil":null,"d&a":5}},{"arcs":[[-5848,5911,5912,5913,-5909,-5844]],"type":"Polygon","properties":{"wells":57,"gas":30,"oil":null,"d&a":8}},{"arcs":[[-5851,5914,5915,5916,-5912,-5847]],"type":"Polygon","properties":{"wells":29,"gas":5,"oil":3,"d&a":4}},{"arcs":[[-5854,5917,5918,5919,-5915,-5850]],"type":"Polygon","properties":{"wells":178,"gas":102,"oil":28,"d&a":12}},{"arcs":[[-5857,5920,5921,5922,-5918,-5853]],"type":"Polygon","properties":{"wells":10,"gas":4,"oil":2,"d&a":1}},{"arcs":[[-5860,5923,5924,5925,-5921,-5856]],"type":"Polygon","properties":{"wells":16,"gas":6,"oil":1,"d&a":1}},{"arcs":[[-5863,5926,5927,5928,-5924,-5859]],"type":"Polygon","properties":{"wells":6,"gas":2,"oil":0,"d&a":0}},{"arcs":[[-5866,5929,5930,5931,-5927,-5862]],"type":"Polygon","properties":{"wells":9,"gas":1,"oil":null,"d&a":7}},{"arcs":[[-5869,5932,5933,5934,-5930,-5865]],"type":"Polygon","properties":{"wells":3,"gas":0,"oil":1,"d&a":2}},{"arcs":[[-5872,5935,5936,5937,-5933,-5868]],"type":"Polygon","properties":{"wells":74,"gas":7,"oil":33,"d&a":6}},{"arcs":[[-5874,5938,5939,-5936,-5871]],"type":"Polygon","properties":{"wells":18,"gas":4,"oil":5,"d&a":3}},{"arcs":[[-5877,5940,5941]],"type":"Polygon","properties":{"wells":5,"gas":5,"oil":null,"d&a":null}},{"arcs":[[-5881,5942,5943,5944,-5941,-5876]],"type":"Polygon","properties":{"wells":48,"gas":40,"oil":null,"d&a":null}},{"arcs":[[-5884,5945,5946,5947,-5943,-5880]],"type":"Polygon","properties":{"wells":62,"gas":41,"oil":null,"d&a":5}},{"arcs":[[-5887,5948,5949,5950,-5946,-5883]],"type":"Polygon","properties":{"wells":161,"gas":127,"oil":6,"d&a":9}},{"arcs":[[-5890,5951,5952,5953,-5949,-5886]],"type":"Polygon","properties":{"wells":127,"gas":95,"oil":2,"d&a":11}},{"arcs":[[-5893,5954,5955,5956,-5952,-5889]],"type":"Polygon","properties":{"wells":157,"gas":146,"oil":null,"d&a":4}},{"arcs":[[-5896,5957,5958,5959,-5955,-5892]],"type":"Polygon","properties":{"wells":124,"gas":111,"oil":0,"d&a":5}},{"arcs":[[-5899,5960,5961,5962,-5958,-5895]],"type":"Polygon","properties":{"wells":178,"gas":153,"oil":null,"d&a":15}},{"arcs":[[-5902,5963,5964,5965,-5961,-5898]],"type":"Polygon","properties":{"wells":137,"gas":124,"oil":0,"d&a":3}},{"arcs":[[-5905,5966,5967,5968,-5964,-5901]],"type":"Polygon","properties":{"wells":183,"gas":136,"oil":3,"d&a":25}},{"arcs":[[-5908,5969,5970,5971,-5967,-5904]],"type":"Polygon","properties":{"wells":70,"gas":57,"oil":1,"d&a":6}},{"arcs":[[-5911,5972,5973,5974,-5970,-5907]],"type":"Polygon","properties":{"wells":45,"gas":30,"oil":null,"d&a":12}},{"arcs":[[-5914,5975,5976,5977,-5973,-5910]],"type":"Polygon","properties":{"wells":67,"gas":52,"oil":null,"d&a":5}},{"arcs":[[-5917,5978,5979,5980,-5976,-5913]],"type":"Polygon","properties":{"wells":18,"gas":6,"oil":null,"d&a":2}},{"arcs":[[-5920,5981,5982,5983,-5979,-5916]],"type":"Polygon","properties":{"wells":195,"gas":73,"oil":19,"d&a":8}},{"arcs":[[-5923,5984,5985,5986,-5982,-5919]],"type":"Polygon","properties":{"wells":95,"gas":59,"oil":9,"d&a":8}},{"arcs":[[-5926,5987,5988,5989,-5985,-5922]],"type":"Polygon","properties":{"wells":47,"gas":20,"oil":1,"d&a":6}},{"arcs":[[-5929,5990,5991,5992,-5988,-5925]],"type":"Polygon","properties":{"wells":34,"gas":3,"oil":11,"d&a":2}},{"arcs":[[-5932,5993,5994,5995,-5991,-5928]],"type":"Polygon","properties":{"wells":24,"gas":2,"oil":11,"d&a":4}},{"arcs":[[-5935,5996,5997,5998,-5994,-5931]],"type":"Polygon","properties":{"wells":10,"gas":4,"oil":null,"d&a":5}},{"arcs":[[-5938,5999,6000,6001,-5997,-5934]],"type":"Polygon","properties":{"wells":29,"gas":17,"oil":1,"d&a":7}},{"arcs":[[-5940,6002,6003,6004,-6000,-5937]],"type":"Polygon","properties":{"wells":100,"gas":65,"oil":1,"d&a":6}},{"arcs":[[-5948,6005,6006,6007,-5944]],"type":"Polygon","properties":{"wells":1,"gas":1,"oil":null,"d&a":null}},{"arcs":[[-5951,6008,6009,6010,-6006,-5947]],"type":"Polygon","properties":{"wells":113,"gas":79,"oil":null,"d&a":1}},{"arcs":[[-5954,6011,6012,6013,-6009,-5950]],"type":"Polygon","properties":{"wells":156,"gas":128,"oil":1,"d&a":8}},{"arcs":[[-5957,6014,6015,6016,-6012,-5953]],"type":"Polygon","properties":{"wells":177,"gas":130,"oil":null,"d&a":8}},{"arcs":[[-5960,6017,6018,6019,-6015,-5956]],"type":"Polygon","properties":{"wells":134,"gas":108,"oil":1,"d&a":5}},{"arcs":[[-5963,6020,6021,6022,-6018,-5959]],"type":"Polygon","properties":{"wells":109,"gas":98,"oil":null,"d&a":7}},{"arcs":[[-5966,6023,6024,6025,-6021,-5962]],"type":"Polygon","properties":{"wells":158,"gas":129,"oil":7,"d&a":7}},{"arcs":[[-5969,6026,6027,6028,-6024,-5965]],"type":"Polygon","properties":{"wells":177,"gas":142,"oil":15,"d&a":7}},{"arcs":[[-5972,6029,6030,6031,-6027,-5968]],"type":"Polygon","properties":{"wells":116,"gas":106,"oil":null,"d&a":7}},{"arcs":[[-5975,6032,6033,6034,-6030,-5971]],"type":"Polygon","properties":{"wells":62,"gas":53,"oil":null,"d&a":9}},{"arcs":[[-5978,6035,6036,6037,-6033,-5974]],"type":"Polygon","properties":{"wells":36,"gas":19,"oil":null,"d&a":10}},{"arcs":[[-5981,6038,6039,6040,-6036,-5977]],"type":"Polygon","properties":{"wells":62,"gas":40,"oil":1,"d&a":9}},{"arcs":[[-5984,6041,6042,6043,-6039,-5980]],"type":"Polygon","properties":{"wells":32,"gas":17,"oil":2,"d&a":3}},{"arcs":[[-5987,6044,6045,6046,-6042,-5983]],"type":"Polygon","properties":{"wells":164,"gas":120,"oil":5,"d&a":9}},{"arcs":[[-5990,6047,6048,6049,-6045,-5986]],"type":"Polygon","properties":{"wells":146,"gas":20,"oil":76,"d&a":19}},{"arcs":[[-5993,6050,6051,6052,-6048,-5989]],"type":"Polygon","properties":{"wells":114,"gas":9,"oil":71,"d&a":7}},{"arcs":[[-5996,6053,6054,6055,-6051,-5992]],"type":"Polygon","properties":{"wells":22,"gas":3,"oil":8,"d&a":0}},{"arcs":[[-5999,6056,6057,6058,-6054,-5995]],"type":"Polygon","properties":{"wells":5,"gas":null,"oil":null,"d&a":4}},{"arcs":[[-6002,6059,6060,6061,-6057,-5998]],"type":"Polygon","properties":{"wells":26,"gas":12,"oil":1,"d&a":10}},{"arcs":[[-6005,6062,6063,6064,-6060,-6001]],"type":"Polygon","properties":{"wells":77,"gas":62,"oil":null,"d&a":13}},{"arcs":[[6065,6066,-6063,-6004]],"type":"Polygon","properties":{"wells":78,"gas":64,"oil":null,"d&a":10}},{"arcs":[[-6011,6067,6068,6069,-6007]],"type":"Polygon","properties":{"wells":17,"gas":9,"oil":null,"d&a":null}},{"arcs":[[-6014,6070,6071,6072,-6068,-6010]],"type":"Polygon","properties":{"wells":113,"gas":74,"oil":null,"d&a":10}},{"arcs":[[-6017,6073,6074,6075,-6071,-6013]],"type":"Polygon","properties":{"wells":119,"gas":99,"oil":1,"d&a":3}},{"arcs":[[-6020,6076,6077,6078,-6074,-6016]],"type":"Polygon","properties":{"wells":134,"gas":118,"oil":null,"d&a":5}},{"arcs":[[-6023,6079,6080,6081,-6077,-6019]],"type":"Polygon","properties":{"wells":121,"gas":108,"oil":null,"d&a":4}},{"arcs":[[-6026,6082,6083,6084,-6080,-6022]],"type":"Polygon","properties":{"wells":132,"gas":123,"oil":null,"d&a":4}},{"arcs":[[-6029,6085,6086,6087,-6083,-6025]],"type":"Polygon","properties":{"wells":184,"gas":145,"oil":13,"d&a":4}},{"arcs":[[-6032,6088,6089,6090,-6086,-6028]],"type":"Polygon","properties":{"wells":120,"gas":97,"oil":2,"d&a":9}},{"arcs":[[-6035,6091,6092,6093,-6089,-6031]],"type":"Polygon","properties":{"wells":162,"gas":94,"oil":14,"d&a":15}},{"arcs":[[-6038,6094,6095,6096,-6092,-6034]],"type":"Polygon","properties":{"wells":97,"gas":57,"oil":null,"d&a":8}},{"arcs":[[-6041,6097,6098,6099,-6095,-6037]],"type":"Polygon","properties":{"wells":123,"gas":81,"oil":null,"d&a":24}},{"arcs":[[-6044,6100,6101,6102,-6098,-6040]],"type":"Polygon","properties":{"wells":64,"gas":39,"oil":1,"d&a":11}},{"arcs":[[-6047,6103,6104,6105,-6101,-6043]],"type":"Polygon","properties":{"wells":69,"gas":39,"oil":5,"d&a":4}},{"arcs":[[-6050,6106,6107,6108,-6104,-6046]],"type":"Polygon","properties":{"wells":127,"gas":46,"oil":40,"d&a":5}},{"arcs":[[-6053,6109,6110,6111,-6107,-6049]],"type":"Polygon","properties":{"wells":25,"gas":0,"oil":17,"d&a":2}},{"arcs":[[-6056,6112,6113,-6110,-6052]],"type":"Polygon","properties":{"wells":14,"gas":4,"oil":5,"d&a":4}},{"arcs":[[-6059,6114,6115,6116,-6113,-6055]],"type":"Polygon","properties":{"wells":3,"gas":0,"oil":null,"d&a":3}},{"arcs":[[-6062,6117,6118,6119,-6115,-6058]],"type":"Polygon","properties":{"wells":1,"gas":null,"oil":null,"d&a":1}},{"arcs":[[-6065,6120,6121,-6118,-6061]],"type":"Polygon","properties":{"wells":38,"gas":34,"oil":1,"d&a":3}},{"arcs":[[-6067,6122,-6121,-6064]],"type":"Polygon","properties":{"wells":68,"gas":64,"oil":null,"d&a":3}},{"arcs":[[-6073,6123,6124,6125,-6069]],"type":"Polygon","properties":{"wells":11,"gas":6,"oil":null,"d&a":1}},{"arcs":[[-6076,6126,6127,6128,-6124,-6072]],"type":"Polygon","properties":{"wells":129,"gas":84,"oil":8,"d&a":12}},{"arcs":[[-6079,6129,6130,6131,-6127,-6075]],"type":"Polygon","properties":{"wells":133,"gas":114,"oil":2,"d&a":6}},{"arcs":[[-6082,6132,6133,6134,-6130,-6078]],"type":"Polygon","properties":{"wells":177,"gas":145,"oil":1,"d&a":6}},{"arcs":[[-6085,6135,6136,6137,-6133,-6081]],"type":"Polygon","properties":{"wells":193,"gas":174,"oil":null,"d&a":6}},{"arcs":[[-6088,6138,6139,6140,-6136,-6084]],"type":"Polygon","properties":{"wells":172,"gas":139,"oil":4,"d&a":6}},{"arcs":[[-6091,6141,6142,6143,-6139,-6087]],"type":"Polygon","properties":{"wells":144,"gas":118,"oil":2,"d&a":6}},{"arcs":[[-6094,6144,6145,6146,-6142,-6090]],"type":"Polygon","properties":{"wells":178,"gas":131,"oil":4,"d&a":10}},{"arcs":[[-6097,6147,6148,6149,-6145,-6093]],"type":"Polygon","properties":{"wells":128,"gas":104,"oil":null,"d&a":6}},{"arcs":[[-6100,6150,6151,6152,-6148,-6096]],"type":"Polygon","properties":{"wells":177,"gas":124,"oil":1,"d&a":13}},{"arcs":[[-6103,6153,6154,6155,-6151,-6099]],"type":"Polygon","properties":{"wells":106,"gas":92,"oil":null,"d&a":4}},{"arcs":[[-6106,6156,6157,6158,-6154,-6102]],"type":"Polygon","properties":{"wells":154,"gas":132,"oil":null,"d&a":7}},{"arcs":[[-6109,6159,6160,6161,-6157,-6105]],"type":"Polygon","properties":{"wells":104,"gas":60,"oil":2,"d&a":6}},{"arcs":[[-6112,6162,6163,-6160,-6108]],"type":"Polygon","properties":{"wells":43,"gas":20,"oil":0,"d&a":3}},{"arcs":[[-6120,6164,-6116]],"type":"Polygon","properties":{"wells":3,"gas":null,"oil":null,"d&a":3}},{"arcs":[[-6129,6165,6166,6167,-6125]],"type":"Polygon","properties":{"wells":9,"gas":8,"oil":null,"d&a":0}},{"arcs":[[-6132,6168,6169,6170,-6166,-6128]],"type":"Polygon","properties":{"wells":130,"gas":108,"oil":1,"d&a":7}},{"arcs":[[-6135,6171,6172,6173,-6169,-6131]],"type":"Polygon","properties":{"wells":185,"gas":156,"oil":1,"d&a":2}},{"arcs":[[-6138,6174,6175,6176,-6172,-6134]],"type":"Polygon","properties":{"wells":118,"gas":106,"oil":null,"d&a":2}},{"arcs":[[-6141,6177,6178,6179,-6175,-6137]],"type":"Polygon","properties":{"wells":178,"gas":157,"oil":null,"d&a":8}},{"arcs":[[-6144,6180,6181,6182,-6178,-6140]],"type":"Polygon","properties":{"wells":145,"gas":128,"oil":null,"d&a":9}},{"arcs":[[-6147,6183,6184,6185,-6181,-6143]],"type":"Polygon","properties":{"wells":143,"gas":120,"oil":null,"d&a":5}},{"arcs":[[-6150,6186,6187,6188,-6184,-6146]],"type":"Polygon","properties":{"wells":197,"gas":151,"oil":null,"d&a":15}},{"arcs":[[-6153,6189,6190,6191,-6187,-6149]],"type":"Polygon","properties":{"wells":216,"gas":140,"oil":36,"d&a":17}},{"arcs":[[-6156,6192,6193,6194,-6190,-6152]],"type":"Polygon","properties":{"wells":151,"gas":127,"oil":3,"d&a":11}},{"arcs":[[-6159,6195,6196,6197,-6193,-6155]],"type":"Polygon","properties":{"wells":88,"gas":82,"oil":null,"d&a":2}},{"arcs":[[-6162,6198,6199,6200,-6196,-6158]],"type":"Polygon","properties":{"wells":87,"gas":72,"oil":null,"d&a":6}},{"arcs":[[-6164,6201,-6199,-6161]],"type":"Polygon","properties":{"wells":5,"gas":3,"oil":null,"d&a":1}},{"arcs":[[-6171,6202,6203,6204,-6167]],"type":"Polygon","properties":{"wells":100,"gas":77,"oil":null,"d&a":2}},{"arcs":[[-6174,6205,6206,6207,-6203,-6170]],"type":"Polygon","properties":{"wells":148,"gas":131,"oil":null,"d&a":2}},{"arcs":[[-6177,6208,6209,6210,-6206,-6173]],"type":"Polygon","properties":{"wells":158,"gas":144,"oil":1,"d&a":3}},{"arcs":[[-6180,6211,6212,6213,-6209,-6176]],"type":"Polygon","properties":{"wells":123,"gas":102,"oil":null,"d&a":8}},{"arcs":[[-6183,6214,6215,6216,-6212,-6179]],"type":"Polygon","properties":{"wells":129,"gas":103,"oil":null,"d&a":13}},{"arcs":[[-6186,6217,6218,6219,-6215,-6182]],"type":"Polygon","properties":{"wells":160,"gas":137,"oil":null,"d&a":10}},{"arcs":[[-6189,6220,6221,6222,-6218,-6185]],"type":"Polygon","properties":{"wells":111,"gas":91,"oil":null,"d&a":10}},{"arcs":[[-6192,6223,6224,6225,-6221,-6188]],"type":"Polygon","properties":{"wells":97,"gas":77,"oil":0,"d&a":4}},{"arcs":[[-6195,6226,6227,6228,-6224,-6191]],"type":"Polygon","properties":{"wells":201,"gas":137,"oil":32,"d&a":15}},{"arcs":[[-6198,6229,6230,6231,-6227,-6194]],"type":"Polygon","properties":{"wells":98,"gas":93,"oil":null,"d&a":3}},{"arcs":[[-6201,6232,-6230,-6197]],"type":"Polygon","properties":{"wells":6,"gas":4,"oil":null,"d&a":2}},{"arcs":[[-6208,6233,6234,6235,-6204]],"type":"Polygon","properties":{"wells":95,"gas":82,"oil":2,"d&a":2}},{"arcs":[[-6211,6236,6237,6238,-6234,-6207]],"type":"Polygon","properties":{"wells":155,"gas":129,"oil":null,"d&a":5}},{"arcs":[[-6214,6239,6240,6241,-6237,-6210]],"type":"Polygon","properties":{"wells":110,"gas":103,"oil":null,"d&a":3}},{"arcs":[[-6217,6242,6243,6244,-6240,-6213]],"type":"Polygon","properties":{"wells":181,"gas":160,"oil":null,"d&a":2}},{"arcs":[[-6220,6245,6246,6247,-6243,-6216]],"type":"Polygon","properties":{"wells":198,"gas":164,"oil":0,"d&a":8}},{"arcs":[[-6223,6248,6249,6250,-6246,-6219]],"type":"Polygon","properties":{"wells":95,"gas":77,"oil":null,"d&a":5}},{"arcs":[[-6226,6251,6252,6253,-6249,-6222]],"type":"Polygon","properties":{"wells":139,"gas":116,"oil":null,"d&a":2}},{"arcs":[[-6229,6254,6255,6256,-6252,-6225]],"type":"Polygon","properties":{"wells":123,"gas":101,"oil":1,"d&a":5}},{"arcs":[[-6232,6257,6258,-6255,-6228]],"type":"Polygon","properties":{"wells":23,"gas":17,"oil":null,"d&a":2}},{"arcs":[[-6239,6259,6260,6261,-6235]],"type":"Polygon","properties":{"wells":70,"gas":63,"oil":null,"d&a":2}},{"arcs":[[-6242,6262,6263,6264,-6260,-6238]],"type":"Polygon","properties":{"wells":114,"gas":102,"oil":null,"d&a":4}},{"arcs":[[-6245,6265,6266,6267,-6263,-6241]],"type":"Polygon","properties":{"wells":101,"gas":89,"oil":null,"d&a":5}},{"arcs":[[-6248,6268,6269,6270,-6266,-6244]],"type":"Polygon","properties":{"wells":184,"gas":167,"oil":null,"d&a":12}},{"arcs":[[-6251,6271,6272,6273,-6269,-6247]],"type":"Polygon","properties":{"wells":211,"gas":179,"oil":2,"d&a":10}},{"arcs":[[-6254,6274,6275,6276,-6272,-6250]],"type":"Polygon","properties":{"wells":121,"gas":110,"oil":null,"d&a":5}},{"arcs":[[-6257,6277,6278,6279,-6275,-6253]],"type":"Polygon","properties":{"wells":80,"gas":72,"oil":null,"d&a":2}},{"arcs":[[-6259,6280,-6278,-6256]],"type":"Polygon","properties":{"wells":9,"gas":7,"oil":null,"d&a":1}},{"arcs":[[-6265,6281,6282,6283,-6261]],"type":"Polygon","properties":{"wells":66,"gas":58,"oil":null,"d&a":4}},{"arcs":[[-6268,6284,6285,6286,-6282,-6264]],"type":"Polygon","properties":{"wells":70,"gas":62,"oil":null,"d&a":4}},{"arcs":[[-6271,6287,6288,6289,-6285,-6267]],"type":"Polygon","properties":{"wells":122,"gas":103,"oil":null,"d&a":7}},{"arcs":[[-6274,6290,6291,6292,-6288,-6270]],"type":"Polygon","properties":{"wells":140,"gas":116,"oil":null,"d&a":8}},{"arcs":[[-6277,6293,6294,6295,-6291,-6273]],"type":"Polygon","properties":{"wells":186,"gas":160,"oil":null,"d&a":11}},{"arcs":[[-6280,6296,6297,-6294,-6276]],"type":"Polygon","properties":{"wells":4,"gas":4,"oil":null,"d&a":0}},{"arcs":[[-6287,6298,6299,6300,-6283]],"type":"Polygon","properties":{"wells":47,"gas":40,"oil":null,"d&a":3}},{"arcs":[[-6290,6301,6302,6303,-6299,-6286]],"type":"Polygon","properties":{"wells":82,"gas":73,"oil":null,"d&a":0}},{"arcs":[[-6293,6304,6305,6306,-6302,-6289]],"type":"Polygon","properties":{"wells":135,"gas":110,"oil":null,"d&a":4}},{"arcs":[[-6296,6307,6308,6309,-6305,-6292]],"type":"Polygon","properties":{"wells":155,"gas":106,"oil":null,"d&a":14}},{"arcs":[[-6298,6310,6311,-6308,-6295]],"type":"Polygon","properties":{"wells":14,"gas":13,"oil":null,"d&a":1}},{"arcs":[[-6304,6312,6313,6314,-6300]],"type":"Polygon","properties":{"wells":32,"gas":22,"oil":null,"d&a":3}},{"arcs":[[-6307,6315,6316,6317,-6313,-6303]],"type":"Polygon","properties":{"wells":85,"gas":75,"oil":null,"d&a":4}},{"arcs":[[-6310,6318,6319,6320,-6316,-6306]],"type":"Polygon","properties":{"wells":119,"gas":99,"oil":null,"d&a":8}},{"arcs":[[-6312,6321,-6319,-6309]],"type":"Polygon","properties":{"wells":8,"gas":6,"oil":null,"d&a":1}},{"arcs":[[-6318,6322,6323,6324,-6314]],"type":"Polygon","properties":{"wells":19,"gas":17,"oil":null,"d&a":2}},{"arcs":[[-6321,6325,6326,6327,-6323,-6317]],"type":"Polygon","properties":{"wells":76,"gas":60,"oil":null,"d&a":4}},{"arcs":[[-6328,6328,6329,6330,-6324]],"type":"Polygon","properties":{"wells":44,"gas":31,"oil":null,"d&a":2}},{"arcs":[[6331,6332,-6329,-6327]],"type":"Polygon","properties":{"wells":22,"gas":17,"oil":null,"d&a":2}},{"arcs":[[-6333,6333,-6330]],"type":"Polygon","properties":{"wells":8,"gas":6,"oil":null,"d&a":1}}]}},"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment