Skip to content

Instantly share code, notes, and snippets.

@espinielli
Last active December 20, 2015 01:09
Show Gist options
  • Save espinielli/6046690 to your computer and use it in GitHub Desktop.
Save espinielli/6046690 to your computer and use it in GitHub Desktop.
Filling bathymetric contours

Lake Michigan

Bathymetry of Lake Michigan modified after the original work of Andrew Thornton.

See also San Francisco contour from Liji Jinaraj.

Changes compared to original work

  • Derived topojson file (with included ZVALUE)

     $ ogr2ogr -f GeoJSON -select ZVALUE,DEPTH michigan.json data/Lake_Michigan_Contours.shp
     $ topojson --force-clockwise -p depth=DEPTH -p depth -p zvalue=ZVALUE -p zvalue -o lm.json michigan.json
  • Experiment with filling the bathymetric contours using zvalue (limited to 40m and 150m depths): THIS DOES NOT WORK (request for help to d3.js community)

Shape files from NOAA.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.michigan {
fill: none;
stroke-width: 0.5px;
}
.michiganfilled {
stroke-width: 0.5px;
}
.axis path, .axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
#loading {
text-align: center;
position: absolute;
padding-left: 200px;
padding-top: 100px;
height: 20px;
z-index: 999;
font-size: 30px;
}
.hidden{
display: none;
}
</style>
<body>
<p><a href="http://en.wikipedia.org/wiki/Bathymetry">Bathymetry</a> of <a href="http://www.ngdc.noaa.gov/mgg/greatlakes/michigan.html">Lake Michigan</a> (limited to 40m and 150m for performance reasons): contour (left) and filled (right).</p>
<div id="map"><div id="loading">Loading...</div></div>
</div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script>
var width = 700,
height = 620;
var svg = d3.select("#map")
.append("svg")
.attr("width", width)
.attr("height", height)
.append("g");
var loading = d3.select("#loading");
var projection = d3.geo.mercator()
.center([-86.00, 43.84])
.scale(6000)
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection);
var colorScale = d3.scale.linear()
.range(["#ff0000", "#0000ff"])
.domain([0, 275])
.interpolate(d3.interpolateHsl);
var y = d3.scale.ordinal()
.domain([0, 25, 50, 100, 150, 200, 250, 300])
.rangeBands([0, 240]);
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
var legend = svg.append("g")
.attr("transform", "translate(40,20)");
legend.append("text")
.text("Depth (m)")
.attr("transform", "translate(-20,-5)")
;
legend.selectAll(".key").data([0, 25, 50, 100, 150, 200, 250, 300])
.enter().append("rect")
.attr("height", 30)
.attr("width", 23)
.attr("y", function(d, i) {
return y(d);
})
.attr("x", 0)
.attr("fill", function(d) {
return colorScale(d);
})
.attr("stroke", "white");
legend.append("g")
.attr("transform", "translate(-3,0)")
.attr("class", "axis")
.call(yAxis);
queue().defer(d3.json,"lm.json")
.await(ready);
function ready(error, michigan) {
loading.classed("hidden", true);
var features = topojson.feature(michigan, michigan.objects.michigan).features;
var fea = features
// .filter(function(d){return [115].indexOf(d.properties.depth) != -1;})
.filter(function(d){return (d.properties.depth === 40 || d.properties.depth === 150);})
.sort(function(a, b) {
return (a.properties.zvalue < b.properties.zvalue) ? -1 : (a.properties.zvalue > b.properties.zvalue) ? 1 : 0;
});
var lake = svg.append("g").attr("transform","translate(-80, 10)");
lake.selectAll(".michigan")
.data(fea)
.enter()
.append("path")
.attr("class", "michigan")
.attr("d", path)
.attr("stroke", function (d) {return colorScale(d.properties.depth);});
var lakefilled = svg.append("g").attr("transform","translate(200, 10)");
lakefilled.selectAll(".michiganfilled")
.data(fea)
.enter()
.append("path")
.attr("class", "michiganfilled")
.attr("d", path)
.attr("fill", function (d) {return colorScale(d.properties.depth);})
.attr("stroke", function (d) {return colorScale(d.properties.depth);});
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0003494566917967194,0.00044728753704177383],"translate":[-87.99268356467512,41.62199356266345]},"objects":{"michigan":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[1],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[3],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[4],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[5],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[6],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[7],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[8],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[9],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[10],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[14],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[20],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[21],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[22],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[23],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[24],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[25],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[26],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[27],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[28],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[29],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[30],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[31],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[32],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[33],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[34],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[35],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[36],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[37],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[38],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[39],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[40],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[41],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[42],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[43],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[44],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[45],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[46],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[47],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[48],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[49],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[50],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[51],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[52],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[53],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[54],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[55],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[56],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[57],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[58],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[59],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[60],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[61],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[62],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[63],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[64],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[65],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[66],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[67],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[68],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[69],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[70],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[71],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[72],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[73],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[74],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[75],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[76],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[77],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[78],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[79],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[80],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[81],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[82],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[83],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[84],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[85],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[86],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[87],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[88],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[89],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[90],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[91],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[92],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[93],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[94],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[95],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[96],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[97],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[98],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[99],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[100,101],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[102],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[103],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[104],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[105],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[106],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[107],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[108],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[109],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[110],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[111],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[112],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[113],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[114],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[115],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[116],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[117],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[118],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[119],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[120],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[121],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[122],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[123],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[124],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[125],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[126],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[127],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[128],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[129],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[130],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[131],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[132],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[133],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[134],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[135],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[136],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[137],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[138],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[139],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[140],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[141],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[142],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[143],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[144],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[145],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[146],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[147],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[148,-101],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[149],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[150],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[151],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[152],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[153],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[154],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[155],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[156],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[157],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[158],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[159],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[160,161,162,163,164],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[165,166,167],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[168,169],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[170,171],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[172],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[173,174],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[175,176],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[177,178,179,180,181,182,183,184],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[185],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[186],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[187],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[188],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[189],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[190],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[191],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[192],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[193,194],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[195,196],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[197],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[198],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[199,200,201,202,203,204],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[205],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[206],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[207,208,209],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[210],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[211],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[212],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[213],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[214],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[215],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[216],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[217,218,219,220],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[221],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[222,223,224,225,226],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[227],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[228],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[229],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[230],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[231],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[232],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[233],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[234],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[235],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[236],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[237],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[238],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[239],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[240],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[241,242,243,244,245,246],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[247,248,249,250,251],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[252],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[253,254,255,256,257],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[258,259,260,261,262,263,264],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[265],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[266],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[267],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[268],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[269],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[270],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[271],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[272,273,-219,274,275,276,277],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[278,279,280,281,282],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[283],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[284],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[285],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[286],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[287],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[288],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[289],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[290],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[291],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[292,293],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[294],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[295],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[296],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[297],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[298],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[299,300,301,302,303,304,305,306],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[307,308,309,310,311,312],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[313,314],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[315],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[316,317,318,319,320],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[321],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[322,323],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[324],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[325],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[326,327],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[328],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[329,330],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[331],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[332],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[333],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[334],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[335],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[336],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[337],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[338],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[339],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[340],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[341],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[342],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[343],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[344],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[345,346,347,348],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[349],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[350],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[351],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[352,353,354],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[355],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[356],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[357,358,359],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[360,361],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[362],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[363],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[364],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[365],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[366],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[367],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[368],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[369,370],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[371],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[372],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[373],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[374],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[375],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[376,377],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[378],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[379],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[380],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[381],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[382],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[383],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[384],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[385],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[386,387],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[388,389,390],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[391,392,393,394,395,396,397,398],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[399],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[400,401,402],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[403],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[404],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[405],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[406],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[407],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[408,409],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[410],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[411],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[412,413,414],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[415,416],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[-371,417],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[418],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[419],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[420],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[421],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[422],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[423],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[424],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[425],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[426,427],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[428],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[429],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[430],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[431],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[432],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[433,434],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[435],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[436,437,438,439,440,441,442],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[443],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[444],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[445],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[446],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[447],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[448],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[449],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[450],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[451,452,453,454,455,456,457,458,459,460,461],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[462],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[463],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[464],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[465,466,467,468,469,470,471,472],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[473],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[474],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[475],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[476],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[477],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[478,479],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[480],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[481],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[482],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[483],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[484],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[485],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[486,487],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[488],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[489],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[490,491,492,493],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[494,495],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[496,497,389,498,499],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[500],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[501],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[502],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[503],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[504,505],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[506],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[507],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[508,509,-414,510,511,512],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[513,514],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[515],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[516,517,518],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[519],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[520,521],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[522],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[523],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[524],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[525],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[526],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[527],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[528],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[529],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[530],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[531,532],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[533],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[534],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[535],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[536],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[537,538,539,540,541,542,543],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[544],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[545,546,547,548,549,550],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[551],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[552],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[553],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[554,555],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[556],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[557],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[558],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[559],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[560],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[561],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[562],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[563],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[564],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[565],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[566],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[567],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[568],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[569],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[570,571,572],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[573,574,575,576,577],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[578],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[579],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[580,581,582,583],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[584,585],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[586,587,588,589],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[590,591,592,593],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[594],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[595,596,597],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[598,599],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[600],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[601],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[602,603],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[604],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[605,606],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[607],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[608],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[609],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[610],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[611,612],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[613],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[614,615],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[616],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[617],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[618],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[619],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[620,621,622,-591],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[623],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[624],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[625],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[626,627],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[628],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[629],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[630],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[631,632],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[633],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[634,635,636,637],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[638,635,639,640,641,642],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[643,644,645,646,647],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[648],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[649,650,651],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[652],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[653],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[654,655,656],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[657,658,659,660,661,662],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[663],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[664],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[665],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[666],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[667],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[668,669,209],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[670],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[671],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[672],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[673],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[674],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[675],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[676],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[677],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[678,679,680],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[681],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[682,683],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[684,685,686,687],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[688],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[689,690],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[691],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[692],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[693],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[694],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[695],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[696],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[697],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[698],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[699],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[700],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[701],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[702],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[703],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[704,705],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[706],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[707],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[708],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[241,709,710,711,712,246],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[713],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[714],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[715],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[716,717],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[718,719,720,721],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[722],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[723,724,725,726],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[727,728,729,730,731,-725,732,733],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[734],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[735,736,737,733,738],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[739],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[740,741,742,743,744,745],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[746],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[747],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[748],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[749],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[750,751,752],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[753,754,755,756,757],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[758,759],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[760],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[761],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[762],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[763],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[764],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[765],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[766],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[767],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[768],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[769],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[770],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[771],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[772],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[773],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[774,775,776],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[777,778,779,780],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[781],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[782],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[783],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[784],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[785],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[786,787,788,789,790,791,792,-542,793],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[794,795,796,797],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[798],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[799],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[800,801,802,803,804,805,806,807,808],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[809,810,811,812,813,814,815,816],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[817],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[818],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[-513,819],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[820],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[821],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[822],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[823],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[824],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[825],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[826],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[827],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[828],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[829],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[830],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[831],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[832],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[833],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[834],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[835],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[836],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[837],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[838],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[839,840,841,842,843,844,845,846],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[847],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[848],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[849],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[850,851,852,853],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[854],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[855],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[856],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[857],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[858],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[859],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[860],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[861],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[862],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[863],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[864,-518,865],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[866],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[867],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[868,869],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[870],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[871],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[872],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[873],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[874],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[875],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[876,877],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[878],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[879],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[880],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[881],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[882],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[883],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[884,885],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[886],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[887],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[888,162,889],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[890],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[891],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[892],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[893],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[894],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[895],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[896],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[897],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[898,899,900],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[901],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[902,903,904],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[905],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[906,907,908,909,910,911],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[912,913,914,915,916],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[917],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[918],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[919,920,921],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[922],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[923],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[924],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[925],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[926,927,255,928],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[929],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[930],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[931],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[932,933,934,935],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[936,937],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[938,937],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[939],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[940,941,942,943,944,945],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[946],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[947],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[948],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[949,950],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[951],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[952],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[953],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[954],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[955],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[956],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[957],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[958],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[959],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[960],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[961],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[962],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[963],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[964],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[965],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[966,967],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[968],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[969,970,971],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[972,973],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[974],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[975],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[976],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[977],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[978],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[979],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[980],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[981],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[982],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[983],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[984],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[985],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[986],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[987],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[988],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[989,990,991],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[992],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[993],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[994],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[995],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[996],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[997,998,999],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1000],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1001,1002],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1003,1004,1005,1006],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1007,1008,1009],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1010],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1011],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1012],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[1013],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1014],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1015],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1016,1017],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1018],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1019],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1020],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1021],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[1022],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1023,1024],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1025,1026,1027,1028],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1029],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1030],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1031],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1032],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1033,1034],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1035],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1036],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1036],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1037],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1038],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1039,1040],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1041,990,1042],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1043,1044],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1045],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1046],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1047],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1048],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1049,1050,1051,1052,1053,1054],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1055],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1056],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1057],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1058],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1059],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[1060],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1061],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1062,1063],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1064],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1065,1066,1067],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1068,1065,1069,1070,1071,1072,1073],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1074],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1075],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1076],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1077],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1078],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1079],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1080],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1095],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1096],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1097],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1098],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1099],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1100],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1101],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1102],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1103],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1123],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1136],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1137],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1138],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1139],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[1140],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1141],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1142],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1143],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1144],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1145],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1146,1147,1148],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1149],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1150],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1151],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1152],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1153],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1154],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1155],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1156],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1157],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1158],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1159],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1160],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1161,1162],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1163,1164,1165],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1166],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1167],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1168],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1169],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1170],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1171],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1172],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1173],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1174],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1175,1176,1177,1178,1179],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1180],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1181],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1182],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1183],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1184],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1185,1186],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1187],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1188,1189,1190,1191,1192,1193,1194],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1195,1196,1197],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1198],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1199],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1200],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1201],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1202],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1203,1204,1205,1206,179,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1237],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1238,1239,1240,1241,1242,1243],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1244],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1245],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1246],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1247],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1248,1249,1250,1251,1252,1253,1254,1255],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1256],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1257],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1258],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1259],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1260,1261],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1262],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1263,1264],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1265],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1266],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1267],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1268,1269,1270],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1271],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1272],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1273],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1274],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1275],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1276],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1277],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1278],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1279,1280],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1281,1282,1283],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1284],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1285],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1286,1287],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1288,1289,1290],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1291],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1292],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1293,1294,1295,1296],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1297],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[1298],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1299],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1300],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1301],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1302],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1303],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1304],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1305],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1306],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1307],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1308],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1309,1310],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1311],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1312],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1313],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1314],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1315],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1316],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1317],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1329,1330,1331,1332,1333],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1334],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1335],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1336],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1337],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1338],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1339],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1340],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1341],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1342],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1343],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1344],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1345,1346],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1347],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1348],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1349],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1350],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1351],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1352],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1353,1354,1355],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1356],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1357],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1358],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1359,1360],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1361],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1362,1363,1364,1365,1366],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1367],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1368,1369,1370,-1165,1371],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1372],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1373,1374,1375,1376],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1377],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1378],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1379],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1380,1381,1382],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1383],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1384,1385],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1386,1387,1388,1389],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1390],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1391],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1392],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1393,1394],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1395,1321,1396,1397,1398],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1399],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1400],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1401],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1402],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1403,1404],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1405],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1406,1407,1408,1409,1410,1411,1412],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1413,1414],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1415],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1416],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1417],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1418],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1419],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1420,1421],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1422],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1423],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1424],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1425],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1426],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1427,1428],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1429],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1430],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1431],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1432,1433],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1434],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1435,1436],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1437,1438,1439],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1440],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1441],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1442],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1443],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1444],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1445],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1446,1447],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1448,1449,1450,1451,1452],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1453],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1454],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1455],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1456,1457],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1458],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1459,1460],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1461,1462],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1463,1464],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1465],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1466,1467],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1468],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1469],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1470,1471,1472,1473],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1474,1475],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1476],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1477],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1478],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1479],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1480,1481,1482,1483,1484],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1485],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1486],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1487],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1488],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1489],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1490],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1491],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1492],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1493,1494,1495],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1496,1497,1498],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1499],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1500],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1501,1502,1503,1504,1505],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1506],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1507],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1508],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1509],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1510],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1511],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1512],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1513],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1514],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1515],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1516],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1517],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1518,1519],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1520,1521,1522],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1523],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1524,1525,-1522,1526],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1527],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1528,1529,1530],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1531,1532,1533,-1216,1534],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1535],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1536],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1537],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1538],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1539],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1540],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1541],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1542],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1543],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1544],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1545,1546,1547],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1548],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1549],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1550],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1551],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1552],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1553],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1554],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1555],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1556],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1557],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1558],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1559],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1560],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1561],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1562],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1563],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1564],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1565,1566],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1567],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1568],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1569,1196,1570],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1571],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1572],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1573],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1574,1575,1576,1577],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1578],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1579],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1580],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[1581,1582],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1583,1584,1213,1585,1216,1586,1220,1587,1223,1588,1589,1590,1227,1591,1229,1592,1593],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1594],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1595],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1596],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1597,1598,1599],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1600],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1601,1602],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1603],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1604],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1605],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1606,1607],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1623,1624,1625,1626,1627,1628,1629,1630,-1178,1631,1632,1633],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1634,-1005,1635],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1636],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1637],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1638,1639,1640,1641,1208,1642,1643,1644,1645,1646,1647],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1648],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1649,1650],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1651],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1652],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1653],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1654],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1655],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1656],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1657],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1658],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1659],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1660],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1661],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1662],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1663],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1664],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1665],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1665],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1665],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1665],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1666,1667,1668,-1082],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1669],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[-1670],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1670],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1671],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1672],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1673],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1674],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1675],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1676,1677,1678],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1679],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1680],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1681],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1682],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1683],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1684,1685,1686,1687,1688,1411,1689,-1126,1690,-1122,1691,-1120,1692,-1118,1693,1694,1695,1696,1697,1698,-1112,1699,-1110,1700,1701,1702,1703,1704,1705],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1706],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1707],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1708],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1709],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1710],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1711],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1712,1713],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1714,1715,1716,1717,1694,1718],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1719],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1720],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1721],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1722],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1723],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1724],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1725],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1726],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1727],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1728],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[1729],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1730],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1731,1732,1733],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1734,1735],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1736,1737,1738],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[1739,1740,1741],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1742],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1743],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1744],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1745],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1746],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1747],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1748,1749],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[1750],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1751,1752,1753,1754,1755,1756,1757,1758],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[1759,1760,1761,1762,1763,1764,1765,1766,1767,1768],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[1769,1770,1771],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1772,1773],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1774],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[1775],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[1776],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1777],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[1778,1779,1780,1781,1782,1783],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1784],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[1785],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1786,1787,1788],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[1789],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[1790,1762,1791],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[1792,1793,1794],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1795,1796,1754,1797,1756,1798,1799,1800,1801,1802],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[1803],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1804],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1805],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1806,1807],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1808],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1809,1810,1811,1812,1813,1814],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1815],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[1816],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1817],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[1818,1819],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1820,1821],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1822],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1823],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1824],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1825],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1826],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[1827],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1828,1829],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1830],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1831,1832,1833,1834,1835,1836,1837,1838],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1839,1840,1841,1842,1843,1844],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[1845],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1846],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[1847],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1848],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1849],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1850,1851],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1852],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[1853],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[1854],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1855],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1856],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1857],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1858,1859],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1860,1861,1862,1863,1864,1865],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1866,1867,1868],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1869],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1869],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1870],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1871,1872],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1873],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1874],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1875],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[1876],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1877],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1878],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[1879],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1880,1881,1882,1883],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1884,1885,1886,1887],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1888],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[1889],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1890],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1891],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[1892],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1893,1894],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[1895],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1896],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[1897],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1898],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1899,1900],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1901],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1902,1903],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[1904],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1905,1906],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1907],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1908,1909,1910,1911,1912,1913,1914,1915,1916,1917],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1918,1919,1920,1909,1921,1922,1911,1923,1924],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1925],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[1926,1927],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1928],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[1929],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1930],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1931],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[1932],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1933],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[1934],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1935],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1936],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1937,1938,1939],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[1940,1941],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1942,1943,1944],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[1945],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1946],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1947],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1948],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1949,1950,1951],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1952],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1953,1954,1955,1956,1957,1958],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[1959,1960,1961],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1962],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1963,1964,1965],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1966],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[1967],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1968,1969,1970,1971,1972],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1973,1974],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1975,1976,1977,1978,1979,1980],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[1981],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1982],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[1983],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[1984],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[1985],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[1986],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[1987],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[1988,1989,1990],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[1991,1992],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[1993],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[1994,1995,1996,1997],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[1998],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[1999],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2000,2001,2002,2003,2004],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[2005],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[2006,2007,2008,2009,2010,2011,2012,2013,2014,2015],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2016],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2017],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2018],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2019,2020,2021],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2022],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2023,2024,2025,2026,2027,2028,2029],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2030],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2031],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2032],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2033],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2034],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2035,2036],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2037],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2038],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2039,2040,2041],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2042,2043],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2044,2045,-1861],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2046],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2047],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2048,2049,2050],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2051],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2052],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2053,2054,2055],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2056,2057,2058],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2059],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2060,2061],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2062],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2063],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2064],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2065],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2066],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2067,2068,2069],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2070],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2071,2072,2073,2074],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2075],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2076],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2077],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2078],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2079],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2080],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2081],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2082,2083,2084,2085],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2086],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2087],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2088,2089,2090,2091],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2092],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2093],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2094,2095,2096,2097,2098,2099,2100],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2101],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2102],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2103,2104,2105],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2106],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2107],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2108],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2109],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2110],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2111],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2112],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2113,2114,2115],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2116],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2117],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2118],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2119,2120,2121],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2122,2123,2124,2125,2126],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2127],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2128,2129,2130,2131],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[2132,2133],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2134,2135,2136,2137],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2138],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2139],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2140,2141],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2142,1760,2143,2144,2145,2146],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[2147],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2148],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2149],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2150],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2151,2152,2153,2154,2155],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2156],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2157],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2158],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2159],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2160],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2161,2162,-1071,2163],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2164],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2165],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2166],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2167],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[2168],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2169,2170,2171,2172],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2173],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2174],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2175],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2176],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2177],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2178],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2179,2180],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2181,2182,-1813,2183,2184,2185],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2186,2187],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[2188],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2189],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2190,2191,2192,2193,2194],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2195,2196],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[2197],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2198],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2199],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2200],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2201],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2202,2203],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2204,2205],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2206],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2207],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2208],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2209,2210,2211,2212,2213,2214,2215],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2216],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2217],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2218,2219,2220,-2213,2221,2222,-1741,2223],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2224],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2225],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2226],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2227],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2228],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2229,2230],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2231],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2232,2233,2234,2235,2236,2237,2238,2239,2240],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[2241,2242,2243],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2244,2245],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[2246],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[2247],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2248],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[2249,2250,2251],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2252],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2253,2254],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2255],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2256],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2268,2269],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2270,2271,2272],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2273],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2274],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2275,2276],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2277],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2278],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2279],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2280],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2281],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2282,2283],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2284,2285,2286,2287,2288,2237,2289,2239,2290],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2291,2292,2293,2294],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2295,2296],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2297,2298,2299,2300,2301,2302,2303],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2304,2305],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2306],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2307],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2308],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2309],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2310],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2311],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2312,2313,2314,2315,2316,2317,2318],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2319],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2320],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2321],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2322,2323],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2324],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2325,2326],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2327],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2328],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2329],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2330],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2331],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2332],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2333,2334,2335,2336,2337,2338],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2339,2340,2341,2342,2343],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2344,2345,2346,2347,2348],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2349],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2350],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2351],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2352],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2353,2354,2355],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2356,-1864,2357],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2358],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2359],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2360],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2361,2362,2363,2364,2365],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2366],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2367,2368,2369,2370,2371],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2372],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2373],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2374,2375,2376,2377,2378,2379],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2380,2381,2382],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2383],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2384],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[2385,2386,2387,2388],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2389,2390,2391],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2392,2393],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2394],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2395],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2396],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2397],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2398,2399],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2400,2401,2402],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2403,2404,2405,2406,2407,2408,2409,2410,2411,2412],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2413],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2414,2415,2416,2417,2418,2419],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2420],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2421],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2422,2423,2424,2425],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2426],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2427,2428,2429],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2430],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2431],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2432],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2433],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2434,2435,2436,2437],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2438],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2439],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2440],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2441,2442],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2443],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2444],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2445,2446],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2447,2448,2449],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2450],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2451],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2452],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2453],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2454],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2455],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2456],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2457],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2458],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2459,2460],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[2461],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2462],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[2463],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2464,2465,2466,2467],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2468,2469],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2470],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2471,2472,2473,2474,2475,2476],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[2477],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2478,2479,2480,2481,2482,2483,2484],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2485,2486,2487,2488,2480,2489,2490,2491],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2492],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2493],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[2494],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2495],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2496,2497,2498],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2499,2500,2501,2502,2503,2504,2505],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2506,2507,2508,2509],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2521],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2522],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2523,2524],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2525,2526],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2527],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2528,2529,2530,2531,2532],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[2533,2534,2535,2536],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2537],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2538,2539],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2560],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2561,2562,2563,2564,2565,2566],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2567],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2568],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2569],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2570,2571,2572],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2573,2574,2575,2576],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[2577,2578,2579],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2580,-2520,2581,2582],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2583,2584,2585,2586,2587,2588,2589,2590],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2591],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[2592],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2593],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2594],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2595],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2596,2597],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2598,2599,2600,2601,2602],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2603,2604,2605],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2606],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2607,2608,2609],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2610,2599,2611],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[2626,2627,2628],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2629],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2630],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[2631,2632],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2633,2634],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2635],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2636],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2637,2638],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2639,2640],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2641],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[2642,2643,2644,2645,2646,2647,2648],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2649,2650],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2651],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[2652,2653],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2654,2655,2656],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2657],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2658],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2659,2660],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[2661,2662,2663,2664,2665,2666],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2667],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2668,2669,2670,2671,2672,2673,2674],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[2675],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2676],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2677],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2678,2679],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2680],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2681],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2682,2683,2684],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2685,2686],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2687],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2688,2689],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2690,2691,2692,2693,2694,2695,2696,2697,2698],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2699],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[2700],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2701],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[2702],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[2703,2704,2705,2706,2707],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2708],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2709,2710],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2711,2712,2465,2713,-2697,2714,2715,2716],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2717,2718,-2419,2719,2720],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2721,2722,-2565,2723,-1957,2724,2725,2726,2727,2728],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2729,2730],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2731],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2732],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2733,2734],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2735],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2736],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2737],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2738],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2739,2740,2741,2742,2743,2744],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2745,2746,2747,2409,2748,2749],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2750,2751,2752,2753],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2754],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2755],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2756,2757,2758,2759,2760,2761],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2762,2763,2764,2765,2766,2767,2768,2769],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[2770],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2771,2772],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2773,2774,2775,2776,2777,2778,2779,2780,2781,2782],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2783,2784,2785],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[2786,2787,2788,2789],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2790],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2791,2792],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2793,2794],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2795],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[2796,2797,2798,2799,2800],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2801,2802],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2803],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2804,2805],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2806],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2807],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[2808,2809],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2810],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2811],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[2812,2813,2814,2815,2816,2817],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2818],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2819,2820],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2821],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2821],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2822],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2823],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2824,2825,2826],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2827,2828],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2829,-2449,2830],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2831],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2832],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2833],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[2834,2835,2836,2837],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2838,2839],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2840,2839],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[2841,2842,2843],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2844],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[2845,2846,2193,2194],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[2847,2848,2849,2850],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2851],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2852,2853],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2854],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2855,2856,2857,2858,2859,2860,2861,2299,2862,2863,2864,2865],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2866],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2867],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2868,2529,2869],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2870],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2871],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[2872,2873],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2874],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2875],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2876],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[2877],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2878],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2879],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2880],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2881],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2882,2883,2884,2885,2886],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[2887,2888],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[2889,2888],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2890],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[2891],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[2892,2893],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2894,2895,2896],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2897,2898,2899],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2900,2901],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2902],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2902],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2903],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2904],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2905],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2906,2907,2908,2909,2910],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2911],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[2912],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2913],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2914],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2915],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2916],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[2917],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[2918,2919],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[2920],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2921,2922,2923,2924,2925],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2926,2927,2928,2929],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2942],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[2943],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2944,2945,2946,2947,2948],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2949],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[2950],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[2951],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2952],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[2953],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2954],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2955,2956],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2957],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[2958,2959,2960],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[2961],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2962],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[2963,2964,2965,2966,2967,2968,2969,2970],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2971,2972,2973],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[2974],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[2975],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[2976,2977,2978,2979],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2980,2981],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[2982],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2983],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2984],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[2985,2986,2987],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[2988],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[2989,2990,2991,2992],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[2993],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[2994,2995,2996,2997],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[2998],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[2999,3000],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3001],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3001],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3002],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3002],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3003],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3004,2405,3005,3006,3007,3008,3009,3010,3011,3012,3013],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3014],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3015],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3016,3017],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3018],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3019],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3020,3021,3022],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3023,3024,3025],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3026,3027],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3028],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3029],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3030],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3031],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3032],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3033],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3034,3035],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3036,3037,3038,3039,3040],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3041],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3042],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[3043],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[3044],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[3045],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3046],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[3047],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[3048,3049,3050],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3051,3052,3053,3054],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3086],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3087,3088,3089,3090,3091,3092],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3093],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3094],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3095],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[3096,3097,-2553,3098,3099,3100,3101,3102,3103,3104],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3105,3106,3107,3108,3109,3110,3111,3112],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3113,3114,3115],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[3116],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3117,3118,3119],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3120,3121],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3122,3123,3124],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3125],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3126],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3126],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3127],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3127],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3128],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3145,3146,3147,3148,-3133,3149,3150,3151,3152,3153],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3154,3155,3156,3157,3158,3159],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3160,3161],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3162],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3163],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3164],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3165,3166,3167,3168],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3169,3170],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3171],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[3172],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3173],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3174,3175,3176,3177,3178,3179],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[3197,3198],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3199,3200],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3201],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3213],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[3214],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3215,3216,3217],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3218],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3219,3220],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[3221,3222,3223,3224,3225],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3226],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[3227,3228],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[3229,3175,3230],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3231,3232],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[3233,3234],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3235],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3236],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[3237],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3238],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3239,3240,3241],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3242,3243],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3244,3245,3246,3247,3248,3249],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3250,3251],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3252,3253],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3254,3255,3256,3257,3258],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3259,3260,3261],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[3262],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3263,3264,3265,3266,3267,3268,3269,3270],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3271,3272],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[3273,3274,3275,3276,3277,3278,3279,3280,3281],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3294],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3295],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3296,3297,3298],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3299,3300,3301,3302,3303,3304,3305,3306,3307,3308],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3309,3310,3311,3312,3313,3314,3315,3316,3317,3303,3318,3319,3320,3321],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3322],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3323,3324,3325],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3326,3327,3328],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[-3123],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[-3329,3329,3330],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3331,3332,3333,3334,3335,3336,3337,-3266,3338,3339,3340],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3341,3342],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3343,3344,3345,3346,3347,3348],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3349],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[3350,3351,3352],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3353,3354],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3355,3356],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3357],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[3358],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3359],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3360,3361,3362,3363,3364,3365,3366,3367,3368,3369],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[3370,3371,3372,3373,3374,3375,3376,3377],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3378,3379,3380,3381],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[3382],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3383],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3384],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3385],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3386],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3387],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[3388,3389,3390,3391,3392,3393,3394,3395,3396,3397],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3398,3399,3400,3401,3402,3403,3404,3405,3406,3407],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3408,3409,3410],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3411],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3412],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3413,3414],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3415,3416,3417],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3418,3419],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3420,3421],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3422,3423],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3424],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3425,3426,3427,3428,3429],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3430,3431],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3432,3433],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3434],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3435,3436],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3437,3438,-3085,3439],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3123,3440,3441,-3438],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3442],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[3443],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3444],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3445,3446,3447,3448,3449,3450,3451],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3452],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3453,3454],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3455,3456,3457,3458,3459],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[3460],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[3461],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3462],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3463,3464],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3465],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[3466],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3467],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[3468,3469],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3470],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[3471,3472,3473,3474,3475,3476,3477,3478,3479,2647,3480,3481],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3482],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3483],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3484],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3485],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3486],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3487,3488,3489,3490,3491,3492],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3493],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3494,3495],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3496],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3497,3498,3499,3500,3501],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3502,3503,3504,3107,3505,3506,3507,3508,3509,3510,3511,3512,3513],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3514,3515,3516,3517,3518],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3519,3520,3521],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3522,3523],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[3524,3525],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3526,3193,3527,3528],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3529],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[3529],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[3530],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3531,3490,3532,3533,3534],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3535],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[3536],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3537],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[3538],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3539,3540,3541,3542,3543,3544,3545],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3546,3547,3548,3549,3550,3551,3552,3553,3554,3555],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3556],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[3557,3558,3559,3560,3561],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3562],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3563,3564,3565],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3566,1995,3567,3568],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3569],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3570,3571,3572,3573],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3574],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[3575,3576],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3577],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3578],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[3579],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3580,3581,3582],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3583],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3584,3585],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3586],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3587],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[3606],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3607],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3608],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3609],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[3610],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3611],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3612],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[3613],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[3614],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3615],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3616,3617,3618],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3619],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3620,3621],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3622,3623,3624],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3625,3626],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[3627],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3628,3629,3630,3631,3632],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[3633,3634,3635,3636,3637,3638,3639,3640,3641,3642],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[3643,3644],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3645,3646,3647],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[3648,3649,3650,3651],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3652,3653,3654],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3655],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3656,3657],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3658,3659,3660,3661,3662,3663,3664,3665,3666],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3667,3668,3669,3670,3671,3672,3673,3674],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3675,3676,-3324],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3677,3678,3679,3680],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3681,3682],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3683,3684,3685],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3686,3687,3688,3689,3690,-3555,3691,3692,3693,3694],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3695,3696],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3697,3698,3699,3700,3701,3702,3703,3704,3705,3706],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3707],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3708],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3709],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3710],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3711],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3712,3713,3714],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3715,2671,3716,3717,3718],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3719,3720],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3721],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[-3309,3722,-3674,3723,3724,3725],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3726],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3727,3728],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[3729,3730],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3731,3732],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3733,3734],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3735,3736,3737],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[3738,3739],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3740],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3741,3742,3743,3744,3745,3746],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3747,3748,3749,-3746,3750,3751],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3752,3748,3753,3754,3755,3756],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3757],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3758],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3759,3760,3761],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[3762],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[3763],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[3764],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[3765,3766],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[3767,3768,3769,3770,3771,3772,3773],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3774,3775,3776,3777,3778,3779],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3780],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,-3277,3347,3791],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3792],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3793],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,-3701,3804,3805,3806],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3807],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3808,3809],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3810,3811,3812,-3803,3813,3814,3815,3816],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3817,3818,3819,3820,3821],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3822],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3823],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[3824,3825],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[3826],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[-3827],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[3827,3828],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3829,3830,3831,3832,3833,3834,3835,3159],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3836,-3140,3837,3838,3839,3840,3841,3842,3843],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3844],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3845,3846],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[3847],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3848],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3849,3850],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3851],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[3852],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3853,3854,3855],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[3856,3857],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[3858],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[3859,3860,3861,3862],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[3863,3864,3865,3866,3867,3868],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3881,3882,3883,3884,3885,3886,3887,3888],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[-3869,3889,-3867,3890,3891,3892,3893],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3894,3895],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[3896,3897,3898,3899,3900,3901],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[3902,3903,3904,3905,3906,3907,3908,3909],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[3910],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[3911,3912],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3913],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3914,3915,3916,3917,3918],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3931,3932,3933,3934,3935,3936,3937,3938],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3939,3940,3941],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[3942,3943],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[3944],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[3945],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[3946,3947,3948,3949,3950,3951,3952,3953,3954],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[3955,3956],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[3957],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[3958,3959],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[3960,3961,3962,3963,3964,3965],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[3966],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[3967],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[3968],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3969,3970,3971,3972,3973,3974],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[3975],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[3976],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[3977,3978],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[3996],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[3997],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[3998,3999,4000],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[4001,4002,4003,4004,4005,4006,4007,4008,4009,4010],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4011,4012],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[4013],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4014,4015,4016,4017],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4018,4019],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[4020,4021,4022,4023,4024,4025,4026,4027,4028,4029],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4030,4031,4032,4033,4034],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4035,4036],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4037,4038,4039],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[4040],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4041,4042,4043,4044,4045,4046],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[4047,4048,4049,4050,4051,4052,4053,4054,4055,4056],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4057],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4058,4059,4060,4061,4062,4063],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4064,4065,4066,4067,4068,4069,-4059],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4070,4071],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[4072,4073,4074,4075],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4076],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4077,4078,4079],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4080,4081,4082,4083,4084,4085,4086],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[4087,4088,4089,4090,4091],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[4092,4093,4094,4095,4096,4097],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[4098],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4111],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4112,4113,4114],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4115,4116],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[4117],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4118],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4119],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4120,4121,4122,4123,4124],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4125,4126,4127],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[-4128,4128],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4129],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[3180,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,3195,4143],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4159],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[4160,4161,4162,4163,4164,4165,4166,4167,4168],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[4169,4170,4171,4172],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4173],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4174,4175,4176,4177],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4178,4179,4180,4181,4182,4183,4184,4185,4186,4187],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4199],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4200,-4198,4201,4202,4203,4204,4205,-4195,4206,4207,4208,4209,4210,4211,4212],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4213],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[-4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4227],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[-4228],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4228],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4229,4230,4231,4232],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4233,4234,4235,4236],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4237,4238,4239],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4240,4241,4242],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4243],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4244,4245],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[-4246,-4245],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4246],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4247],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4248],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[4249,4250],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4251,4252,4253],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4254,4255,4256,4257,4258],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4259],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4260],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4261],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4262,4263,4264],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[4285,4286,4287,4288,4289,4290],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[4291],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4292,4293,4294],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[4295],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[4296],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4297],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[4298],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4299],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4300,4301],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4302],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4303,4304,4305,4306],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4307],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[4308,4309],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[4310,4311,4312,4313,4314,4315],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4316],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4317],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[4318,4319],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4320],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4321],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4322,4323,4324,4325,4326],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4327],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[4328,4329,4330,4331,4332,4333,4334],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4335,4336],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4337,4338,4339,4340,4341,4342],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4343,4344,4345,4346],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4347],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4348],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4349],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4350,4351,4352,4353],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4354,4355,4356,4357,4358,4359,4360],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4361,4362,-4359,4363,4364,4365],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4366],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4367,4368,4369,4370],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[4371],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4383,4384,4385,4386,-3877,4387,-3875,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4398],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[4399],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4400,4401,4402],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[4403,4404,4405,4406,4407],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4408,4409,4410,4411,4412,4413,4414,4415,4416,4417],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4418],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4419,4420,4421,4422,4423,4424,4425],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4426,4427,4428],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4429,3678,4430,4431,4432,4433,4434,4363,4435],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4436,4427,4437],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4438],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4439,4440,4441,4442,4443,4444,4445,4446],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[4447,4448,4449,4450,4451,4452],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4453],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4454],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4455,4456,4457,4458],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[3087,4459,4460,4461,4462,4463,4464],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[4465],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[4466],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4467],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4468,4469,4470,4471,4472,4473,4474,4475],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4476,4477,4478,4479,4480],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4481],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4482],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[4483],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4484,4485,4486,4487,4488],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4489,4490,4491,4492,4493,4494],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4495],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4496],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4497,4498,4499,-4385,4500,4501,4502],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[4503,4504,4505,4506],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4507],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4508,4509,4510],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4511,4512,4513],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[4514,4515,4516],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4517,4518,4519,4520,4521,4522,4523,4524],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[4525,4456,4526,4527],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[4528],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4529],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[4530,4531,4532],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[4400,4533],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4534,4535,4536],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4534,4535,4536],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[4537,4538],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4539],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[4540],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4541],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4542,4543],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4544,4545,4546,4547,4548],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4549,4550,4551,4552],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4553],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4554],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4555],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4556],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[4557],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[4558],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[-4361,4570,4571,4572,4573,4574,3129,4575,4576,4577,4578],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4579,4580],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[4581],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[4582,4583],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4584,4585,4586],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4587],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4588,4589],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4590,4591],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[4592,4593,4594,4595,4596,4597,4598,4599,4600,4021,4601,4602,4603,4604],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4605,4606,4607],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4608,4609,4610],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4611,4612,4613,4614,4615],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4616],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4617,4618],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[4619,4620,4621,4622],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4623,4624,4625,4626,4627,-3151,4628],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4629],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4630],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4631],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4632,4633,4634,4635,4636,4637,4638,4639,4640,4641],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[4642],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4643],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[4644,4645],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[-4646,4646],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[4647,4648,4649,4650,4651],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[4652],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4653,4654,4655,4656],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4607],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4667],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4689],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[4690],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[4691],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4692,4693,4694,4695],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4696,4697,4698,4699,4700,4701,4702,4703],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[4704,4705],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4706,4707],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4708,4709,4710,4711,4712],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4713],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[4714,4715],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[4716],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4717],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4718],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4719],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4720],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4721,4722,4723],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[4724,4725],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[4726],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4727],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[4728],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4265,4729,4730,4269,4731,4271,4732,4733,4734,4276,4735,-3984,4736,4737,4738,4739,4740],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[3902],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4741],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4742,4743,4744,4745,4746,4747,4748],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4749],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[4750],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[-4751],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4751,4752,4753,3915,4754,4755,4697,4756,4757,4758,4083],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[4759,4760,4761],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4762],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[4763],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[4764],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4765,4766,4767],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4768,4769],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4770,4771,4772],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4773,4772],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4774],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4775,4776,4777,4778,4779,3428,4780,4781],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4794],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[4795],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[4796,4797,4798,4799,4800,4801],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[4802],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[4803],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[4804],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[4805,4806,4807],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[4808,-4770,4809,4810,4811],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[4812,4813],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4814],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4815,4816],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4817,4818],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4819,4820,4821,4822],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4823],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4823],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[4824],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[4825,4826],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[4827],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[4828,4829,4830,4831,4832,4833,4834,4835],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[4836,4837,4838,4839,4840,4841,4842,4843,4844],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4845,4846,4847],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4848],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4849,4850,4851,4852,4853,4854,4855],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[4856,4031,4857,4858,4859],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4860],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4861,4862,4863,4864],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[4865,4866],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4867,4868,4869],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4870],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[4871,4872],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[4873,4874,4875,4876,-4834,4877,4878,4879,4880,4881],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4882],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[4883],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[4884,4885,4886,4887,4888,4889],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[4890],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[4891,4892,4893],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4894,4895,4896,4897,4596,4898,4899,4900,4901,4902],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4903,4904,4905,4906,4907,4908,4909,4910,4911,4912],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4913,4914],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4915,4916],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4917,4918,4919,4920,4921,4922],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4923,4924,4925,4926,4927],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[4928,4929],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4930,4931,4932],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[4933],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[4934],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[4935],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4935],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[4936,4937,4938,4939,4940,4941,4942],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4943],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4944,4945],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4946,4947,4948],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[4949],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4950,4951,4952,4953,4954,4955,4956],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[4957,3629,4958,3631,4959,4960,4961,4962,4963,3339,4964,4951,4965,4966,4967],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[4968,4969],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[4970],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4971],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[4972],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[4973],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[4974,4975],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4976],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[4977,4978,4979],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[4980,4981,4982,4983,4984],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[4985,4986],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[-3145,4987,4988],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[4989,4990],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[4991,4992,4993,4994,4995,4996],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[4997],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[4998,4999,5000,5001,5002,5003,5004],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5005],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5006],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[5007,5008,5009],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5010],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5011,5012],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5013,5014,5015],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[5016],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5017,5018,5019,5020,5021],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5022],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[5034,5035,5036,5037],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5038,5039,5040,5041,5042],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[5043],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5044],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5045,5046,5047,5048,5049,5050,5051],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[5052],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5053],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[5054],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5055,5056,5057,5058,5059,5060],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[5061,3076,5062],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[-3678],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5063],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5064,5065,5066,5067],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[5068,5069,5070,5071],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5072],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[5073],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[5074,5075,5076,5077],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5078,5079,5080,5081,5082,5083,5084,5085],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[5086],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5087,5088],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5089,5090,5091,5092,5093,5094,5095,5096],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5097,5098],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[5099,5100,5101,5102,5103,5104],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[5105,5106,5107,-4519,5108,5109],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5110,5111,5112,5113,5114],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[5115,5116,5117,5118],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5119],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5120,5121],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[5122],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[5123,5124],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5125,5126,5127,5128,5129,5130],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5131],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[5132,5133,5134,5135,5136,5137],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5138],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[5139,5140,5141,5142,5143,5144,5145,5146,5147,5148],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[5149,5150,5151,-4313,5152,5153,-3909,5154,5155,5156,5157],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[5158,5159,5160,5161],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[5162,5163],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5164],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5165,5166,5167],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5168,5169,5170,5171,5172],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5173,5174,5175,5176,5177],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[5178,5179],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[5180,5181,5182,5183],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5184,5185],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5186],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[5187,5188,5189,5190,5191],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5192,5193,5194,5195,-4955,5196,5197],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5198],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[5199],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[5200],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[5201],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5202,5203,5204,5205,5206],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5207,5208,5209],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[5210],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[5211],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[5212],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5213],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5214],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5215],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5216,5217,5218,5219,5220,5221,5222,5223,-4904],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5224],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[5236],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5237],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5252],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5253,5254],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[5255],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5256],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[5257],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5258],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5259,-4931],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5260],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5261],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5262],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[5263],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[5264],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5265,5266],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5267],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5268,5269,5270,5271],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[5272],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5273,5274,5275],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5276],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[5277,5278,5279,5280,5281,5282],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5283,5284],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5285],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[5286,5287,5288,5289],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[5290,5291,5292,5293,5294,5295],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[5296,5297],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[5298,-3685,5299,5300],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5301,5302],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[5303],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[5304],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[5305],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5306,5307],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[5319,5320,5321,5322,5323,5324],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5325,5326,5327,5328,5324],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[5329,5330,5331],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5332],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[5333,5334,5335,-4994,5336,5337],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5352,5353],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5354,5355,5356],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[5357,5358,5359],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5360],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5361,5362],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5363,5364,5365,5366,5367],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[5368],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5369,5370,5371,5372,5373,5374],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[5387,5388,5389,5390],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[5391],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[5392,5393],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[5394,5395],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5396],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[5397,5398,5399,5400,5401,5402,5403,5404,5405],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[5406],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[5407],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[5408,5409,5410,5411],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[5412,5413,5414,5342,5415,5416,5417,5418,5419,5382,5420,5421],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[5422,5423],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[5424],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5425],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[5426],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5427,5428],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[5429,5430,5431,5432],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5433,-4919,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[5461],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[5462,5463,5464,5465,5466,5467,5468,5469],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[5470,5471,5472,5473,5474,5475,5476,5477,5478],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[5479,5480,5481],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[5482,5483,5484],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[5485],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[5486,-5484,5487,5488,5489,5490],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[5491],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[5492,5493,5494,5495,5496],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5497],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[5498],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[5499],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[5500,5501,5502,5503,5504,5505,5506],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5507],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5508],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[5509,5510,5511],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5512,5513,5514],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5515,5516,5517,5518,5519,5520,5521,5522],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5523],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[5524,5525,5526,5527,5528,5529],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5530,5531,5532],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5533],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[5534,5535,5536],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5537,5538,5539,5540,5541,5542,5543,5544,5545,5546],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[5547,5548],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[5549],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[5550,5551,5552,-5489,5553,5554],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[5555,5556,5557,5558,5559,5560],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5561,5562,5563,5564,5565],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5566],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5506],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[5583,5584,5585,5586,5587],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5588,5589],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[5607],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5608],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[5609,5610,5611,5612,5613],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5614,5615,5616,5617,5618,5619],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5620,5621,5622,5623,5624],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5625],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[5626,5627,5628,5629,5630,5631,5632,5633,5634],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5635,5636,5637,5638,-5634,5639,5640,-5630,5641],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5642,5643,5644,5645,5629,5630,5646,5647,5648,5632,5649],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[5650,5651,5652,-5631,-5630,-5629,5653,5654,5655,5656,5657],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[5658,5659,5660,5661,-5658,5662,5663],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[5664,5665],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[5666],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[5667,5668],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5669],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[5669],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[5670],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[5671,5672,5673],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5674],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[5675],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[5676],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[5677,5678,5679,5680,5681,5682],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[5683,5684,5685,5686,5687,5688,5677,5689],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[5690,5691,5692,5693,5694,5695,5696,5697],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[5698,5693,5699,5700],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[5701],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[5738,5739,5740],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[5741,5742,5743],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[5744,5745],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[5746,5747,5748,5749],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[5750],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[5790,5791,5792,5793],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[5794,5795,5796,5797,5798,5799,5800,5801],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[5802,5803],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[5804,5805,5806,5807],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[5808,5809,5810,5811],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[5812,5813,5814,5815,5816],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[5817],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[5818],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[5819,5820],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5821],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5822,5823,5824],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[5825,5826,5827],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[5828,5829],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[5830,5831,5832],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,-5844,5904,5905,5906,5907,5908],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[5953,5954,-5952,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5973,5974,5975,5976,5977],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[5978,5979],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[5980,-5668],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[5981],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[5982],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[5983],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[5984],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[5985,5986,5987,5988,5989,5990],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[5991],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[5992,5993,5994,5995],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[5996],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[5997,5998,5999,6000,6001,6002,6003],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[6004,6005,6006,6007],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6008],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[6009],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[6024],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[6025],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[6026],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[6027],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6028,6029,6030,6031],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6032],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6033],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6034,6035,6036,6037],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6038,6039,6040,6041,6042,6043,6044],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6045,6046,6047,6048],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6049,6050,6051,6052,6053,6054,6055,6056,6057],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6058],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[6059],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6060],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[6061,6062,6063],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[6064],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6065,6066,6067],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6068],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6069,6070],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6071],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[-6027],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6083,6084],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[6085,6086,6087],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[6088],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[6089,6090],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[6091],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[6092],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6093,6094],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6095],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[6096,6097,6098,6099,6100,6101],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[6102],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[-6061],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6103,6104,6105],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6106],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[6107],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[6108,6109,6110,6111,6112,6113,6114,-6035],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6115],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6116,6117,6118,6119,6120,6121,6122,5572,6123,6124,6125,6126,6127],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6128,6129,6130,6131,6132,6133],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6134,6135,6136],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[6137,6138],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[6139],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[-6140],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6140],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6141],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[6142,6143,6144,6145,6146,6147,6148],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[6149],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[6150],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6151,6152,6153,6154,6155,6156],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[6157],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[6158],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[6159],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6160],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6161,6162],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6163,6164],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[6165,6166,6167,6168,6169,6170,6171],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[6172,6173,6174,6175,6176],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6177],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[6178],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6179],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[-6180],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[6180,6181,6182],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6183,6184,6185,6186,6187],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[6188],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6189,6190,6191],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6192],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[6193],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6194],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[6195],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6196],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6197,6198,6199,6200],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6212],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6213],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[-5561,6214],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[6215,6216],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[6217],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[6218,6219],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6220,6221,6222],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[6223,6224,6225,5088,6226,6227,6228],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6229],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[6230],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6231,6232,6233],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6234],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6235,6236,6237,6238,6239,6240,6241,6242,6243,6244],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[6245,6246,6247,6248,-4235,6249,6250,6251],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[6252,6253],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[6254,6255],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[6256],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[6257,6258,6259,6260],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6261,6262],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6263,6264,6265,6266,5748,6267,6268,6269,6270],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[6271,6272],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[6273],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6274],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6275,6276,6277,6278,6279],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6280,6281,6282],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6283,6284,6285],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6275,6286,6287,6288],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[6300],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6301,6302],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6314,6315,6316,6317,6318,6319,6320,6308,6321,6322,6311,6323],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6324,6325,6326,6327,6328,6329],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[6330],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6331,6332,-6329,6333,6334,6335,-6325],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6336,6337,6338,6339],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6340,6341,6342,6343,6344],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6345],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6346,6347,6348,6349,6350,6351],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6352],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6353,6354,6355,6356,6258,6357],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6358,6359,6360,6361],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6362],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6363],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6364,6365,6366,6367,6368,6369,6370,6371],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6372,6373],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[6374,6375,6376],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6377],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6390],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6391],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6392,6393,6394,6395,6396,6397,6398,6399,6400,6401],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[6402],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[6414],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6415],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6416],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6417],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6418,6419],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[6420,6421,6422],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6423,6424,6425,6426,6427,6428,6429],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[6430,6431,6432,6433,6434],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6435],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6436],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6437],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6438,6439],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[6440,6441,6442,6443],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6444,6445,6446],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6447],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6448],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6449,6450,6451,6452,5528,6453],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6454],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6455],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6456,6457,6458,6459,6460,6461,6462,6463,6464,6465],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6466],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6467],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6468],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6469],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6470],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6471],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6472,6473,6474,6475,6476,6477,6478,6479,6480,6481],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6482],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6483],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6484,6485,4450,6486,6487,6488,6489,6490,6491,6492,6493],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6494,6495,6496,6497],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[6498,6499,6500,6501,6502,6503],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6504],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6505,6506,6507,6508,6509,6510,6511,6512,6513],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[6514,6515,6516,6517,5711,6518,6519,-5880,6520,6521,6522,6523,6524,6525,6526,6527,6528],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[6544,6545,6546,6547,6548,6549,6550,6551,6552],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[6553,6554],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6555,6556],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6557],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6558],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[6559,6560,6561,6562,6563],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[-6560],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6564],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[6565,6566,6567],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6568,6569,6570],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6571,6572,6573,6574,6575,6576,6577,6578,6579],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[6580,6581,6582,6583,6584,6585],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[6586,6587,6588,6589,6590],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[6591],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6592],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[6614,6615,6616,6617,6618],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[6619,6620,6621,6622,6623,-5726,-5869,6624],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[6625,6626,6627,6628,6629,6630],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[6631],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6632,6633,6634,6635],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[6662,6663,6664,6665,6666,6667,6668],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[6717,6718,6719,6720,6721],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[6717,6722,6723,6724,6725,6726],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[6727,6750,6751,6752,6753,6754,6755,5348,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6749],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[6771],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6772,6773,-5977,6774,6775,6776,6777,6778,6779,6780],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6781,6782,6783,6784],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[6785,6786,6787],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6788,6789,6790,6791,6792,6793],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6794,6795,6796,6797,6798,6799,6800,6801,6802],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[6803,6804,6805,6806,6807,6808],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6809,6810,6811,6812,6813,6807,6814],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6815,6816,6817,6818,6819,6820,6821],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6834,6835,6836,6837,6838,6830,6839,6840,6841,6842],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[6843],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6844],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[6845],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6846,6847],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[6848,6849,6850,6851,6852,6853],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6854,6855,6856,6857,6858,6859],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[6860,6849,6861,6862,6863],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[6864,6865,6862,6866,6867],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6868,6869,6870,6871,6872,6873],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[6874],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[6875,6876],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6877],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[6890],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[6891],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[6892],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[6893,6894,6895],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[6896,6897,6898],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[6899],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[6900],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[6901],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[6902],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[6903,6904,6905,6906,6907,6908],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[-5236,6909,-5234,6910,6911,6912,6913,6914,6915,6916,6917,6918],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[6919],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[6920,6921],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6922],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6923,6924,6925,6926,6927],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[6928],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[6929],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6930,6931,6932,6933,6934,6935,6936],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[6937,6938],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[6939],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[6940],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[6941,6942],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[6943,-6942],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[6944,6945],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[6946,6947,6948,6949,6950,6951,6952],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[6953],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[6954,6955],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6956],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[6957],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[6958,6959,6960,6961,6962,6963],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6964,6965,6966,6967,6968,6969,6970],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[6971,6972,6973,6974],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[6975,6976],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[6988],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[6989,6990,6109,6991,6992,6993,6994],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[6995],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[6996,6997,6998],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[6999],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7000],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[7001],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[7002,7003],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[7004,7005],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[7006,7007],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[7008,7009,7010,7011,7012,7013,7014],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[7015,7016,7017,7018,7019,7020],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[7021],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[7022],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[7023,7024,7025,7026,7027],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[7028],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[7029],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[7030,7031,7032,7033,7034,7035,7036,7037,7038],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[7039,7040,7041],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[-6423,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[7054,7055,7056],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[7057],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[7058,7059],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[7060],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[7061,7062,7063],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[7064,7065,7066,7067],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[7068],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7069],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7070],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[7071,7072],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[7073],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7074,7075,7076,7077,7078],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[7079,7080],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[7081],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[-7082],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[7082,7083,7084],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[7085,7086,7087,7088,7089,7090],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[7091],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[7092],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[7093],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7094,7095,7096],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[7097,7098,7099,7100,7101,7102,7103,7104,6477,7105,7106,7107,7108],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[7109,7110],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[7111,7112,7113,7114,7115,7116,7117,7118,7119,-5736,7120,-6528,7121],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[7122,7123,7124,7125,7126],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[7127,7128,7129,7130,7131,7132,7133,7134,7135],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[7136,7137,7138,7139,7140],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[7141,7142,7143,7144,7145,6368,7146],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[7147],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[7148],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[7149],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7150,7151],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[7152,7153,7154,7155,7156],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[7157],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[7158,7159,7160],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[7161,7162,7163],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[7164,7165],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[7166],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[7167],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7168],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[7169],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[7170],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7171],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[7172,7173,7174,7175],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[7176],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[7230,7231,7232],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[7233,7234,7235,7236],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[7237,7238,7239,7240],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[7241,7242,7243,7244],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[7245,7246,7247],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[7248,-7245,7249,7250,7251,7252,7253,7254],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[7255,7256,7257,7258,7259],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[7260,7261,7262,7263,-7254,7264],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[7311,7312,7313,7314],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[7315],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[7316],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[7317,7318,7319],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[7320],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[7321,7322,7323,7324],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7192,7335,7336],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[7337,7338],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[7339],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[7339],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[7340],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[7389,7390,7391,7392,-7381,7393,7394,7395],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[7396],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[7397,7398,7399,7400],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7401,7402,7403,7404,7405,7406,7407,7408,7409,7292,7410,7411,7412,7413,7296,7297,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[7428,7429,7430,7431,7432,7409,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[7463,-6665,7464,7465,7466],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[7497,7498,7499],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7500],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7501],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7502,7503,7504],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[7505],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7506,7507,7508,7509,7510,7511,7512,7513,6433,7514],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[7515],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[7516],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7517,7518,7519,7520,-7443,7521,7522,7523,7524,7525,-7438,7526,7527,7528,7529,7530,7531,7532,7533,-7434,-7410,-7433,7534,7535,7536,7537,7538],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[7575,7576,7577,7578,7579,7580,7581,-5797,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,-7574,7600,7601,7602,7603,7604,7605,7606,7607,-7565,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[7631,7632,7633,7634,7635,-5249,7636,-5247,7637],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[7638],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[7639],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[7640,7641,7642,7643],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[7644],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7656,7657,7658],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,5713,7670,7671,5715,7672],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[7673],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[7674],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[7675,7676,7677],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[7678,7679,7680,7681,7682,7683,7684,7685],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[7686,7687,7688,7689,7690,7691,7692],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[7693,7694,7695,7696,7697,7698,7699,7700],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[7701,7702,7703,7704,7705,7706],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[7707,7708,7709,7710,7711,7712,7713],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[7714],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[7715],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[7716,7717,7718,7719,7720,7721],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[7722],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[7723,7724,7725,7726,7727,7728],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,6056,7743,7744,7745,7746,7747,7748,7749],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[7750],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[7751],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[7752],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[7753],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[7754],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,-5841,7772,-5838,-5837,7773,7774,7775,7776,7777],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[7778,-7777,7779,7780,7781,7782,7783,7784,7785,7786,7787],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[7801,7802,7803,7804,7805,7806,7807],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[7808,7809,7810,5934,-7796,7811,7812,7813,7814,-7793,7815,7816,7817,7818,7819,7820,7821],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[7822,7823,7824,7825,7826,7827],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[7828,7829,7830,7831,7832,7833,7834,7835],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[7836,7837],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[7838],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[7839,7840,7841,7842,7843,7844],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[7845,7846,7847,7848],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[7849,7850,7851],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[7852],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[7853,7854,7855,7856,7857,7858,7859,7860,7861],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[7862],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[7863],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[7863],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[7864],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[7865],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[7866],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[7867],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[7868],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[7869,7870],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[7871,7872,7873],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[7874,7875,7876,7877],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[7878,7879,7880],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[7881,7882,7883],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[7884],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[7885,7886,7887,7888,7889],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[7890],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[7891],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[7892],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[7893],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[7919,7920,7921,7922,7923,7924,7925,7926,6691,7927,7928,7929],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[7930,7931],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,6711,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,-7972,7995,7996,7997,7998,7999,8000,-7967,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[8026,8027,8028,8029,8030,8031,8032,8033,8034,8035],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[8036,8037,-8035,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[8048],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[8049,8050,8051,8052,7732,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[8064],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8065],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[-8066],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8066,8067],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8068,8069],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[8070,8071],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[8072,8073],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8074,8075,8076,8077],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[8078],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[8079],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[-7064,8080,8081],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[8082,8083,8084,8085,8086,8087,8088,8089],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[8090,8091,8092],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[8093,8094,8095],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[8096],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[8097,8098,8099,8100,8101,8102,8103,8104],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[8105],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[8106,8107,8108],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[8109,8110,8111],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[8112],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[8113,8114,8115],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[8116,-6022,8117,7825,8118],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[8119,8120,8121,8122,8123],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[8124],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8125],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8126,8127,-5906,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[8138,8139,8140],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[8141,8142,8143,8144,8145,8146,8147],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[8148,8149,8150,8151,8152,-8147,8153,8154,8155],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[8156,8157,8158],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[8159,8160,8161,8162],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[8163],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8164,8165,8166,8167,8168],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[8169],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[8170,8171,8172,8173],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[8174],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[8175,8176,8177,8178],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8179,8180],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[8181],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[8182],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[8183],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[8184,8185,8186,8187,8188,8189],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[8190],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[8191,8192],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[8193],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8194],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8195,8196],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[8197],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[8198,8199],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8200,8201,8202,8203,8204,8205,8206],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8207,8208,8209,8210],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[8211],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8212],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[8213,8214,8215],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[8216],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[8228,8229,8230,8231,8232],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,4820,8243,8244,8245],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[8246,8247,8248],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[8249],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[8250,8251,8252,8253,8254,-8165],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[8255,8256,8257,8258],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8259],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8260,8261,8262,8263,8264,8265],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[8266],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8267],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,6462,8279,8280],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[8281,8282,8283,8284,8285,8286,8287,8288,8289,8290],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,-7270,8306,8307],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[8308],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8309],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8310],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8311],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[8312,8313,8314,8315,8316,8317,8318,8319],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[8320,8321,8322,8323,8324,8325,8326],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[8327],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[8328,8329,8330],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[8331],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[8332],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[8333,8334,8335,8336,8337,8338],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[8357],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[8358],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8359,7718,8360,8361,8362],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[8363,8364,8365,8366,8367,8368,8369,8370],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[8371],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8372,-7084,8373],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[8390],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[8391,7960,8392,8393,8394,7968,8395,8396,8397,8398,7971,7972,8399,8400,8401,8402,8403,7978,8404,8405,8406,8407,8408,8409,8410],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[8411,8412,8413,8414,8415,8416,8417,8418,8397,8419,8420,8421,8422,8423,8424,8425,8426,8402,8427,8428,8429,8430,8431,8432,8433,8434,8410,8435],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[8436],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8437,8438,8439],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[8440,8441],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[8442,8443],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[8444],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8445,8446,8447,8448,8449,8450],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[8451,8452,8453],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[8454],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[8455],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[8456,8457,8458,8459,8460,8461,8263,8462,8463],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[8464,8465],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8466,8467,8468,8469,8470,8471,8472,8473,8474,8475],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[8476,8477],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[8478,8479],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,-7357,8495,8496,8497],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[8498,8499,8500,8501,8502,8503,8504,8505,8506],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8499,8533,8534,8501,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[8563,8564,8565,8566,8567,8568,8569,8533,8534,8570,8571,8572,8573,8574,8575,8540,8576,8577,8578,8579,8580,8581,8582,8583],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[8584,8585,8586,8587,-7624,8588,8589,-8573,8590,-7620,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[8608,8609],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8610,8611],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[8612,7235,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8635,8636,8637,8638,8639,8640,7370,8641,-8629,8642,-8625],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[8643,8644,8645,8646,8647,-7374,8648,8649,-7371,8650,-7366,8651,8652,8653,8654],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[8655,8656,8657,8658,8659,8660,8661,8662],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[8663,8664,8665,8666,8667],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8668,8669,8670,8671,8672,8673,8674,8675,8676],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[8677],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8678],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8679,8680],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[8681],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8682],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[8683],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8684],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[8685],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[8686,8687,8688,8689,8690,8691,8692,8693,8694],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[8695],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8696,8697,8566,-8599,8698,8699,-8597,8700,-8594,-8593,-8592,7619,8501,8701,8572,8702,8703,8704,-8587,8705,8706],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[8707,8708,8709,-6918,8710],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[8711],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[8727,-7217,8728,8614,8729,8730,8731,8617,8732,8733,-7210,8734,8735,8736,-7208,8737,8738,8739,8740,8741],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[8742,8743,8744,8717,8745,8746,8747,8748],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[-8639,8749,8750,8751,8752,8753,8754,8755,8756,8757],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8758,8759,8760],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8761],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8762,8763,8764,8765,8766,8767,8768,8769,-7647,8770,8771,8772,8773,8774],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8775],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[8776],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8777,7814,8778,8779,8780,8781,8782,8783,8784],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8799,8800,8801,8802,8803,8804,8805,8806],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,-5959,8822,8823,8824,8825,8826,8827,8828,8829],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8415,8841,8842,8843,8844,8845,8846,8847,8848,8849],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8839,8863,8885,8886,8842,8887,8888,8889,8890,8891,8892,8893,8894,8510],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[8895],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8896],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[8897,-8189,8898,8899,8900,8901],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8902],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[8903],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[8904,8905,8906,8907,8908,8909,8910,8911,8912],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[8913],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[8914],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8915,8916],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[8917,8918,8919,8920,8921,8922],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[8923,8924,8925,8926,8927,8928,8929],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[8930,8931,8932,8933,8934,8935,8936,-8349,8937,8938,8939,8940,-8346,8941],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[8942],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[8943,8944,8945,8946,8947,8948,8949,8950,8951],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[8952,8953],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[8954],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[8955,8956,8957,8958,8959,8960],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[8961,8962,8963,8964,8965,8966],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[8967,8968,8969,8970,8971,-8605,8972,8973],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[8997,8998,8999,-8994,-8993,9000,9001,9002,9003,-7595,-7594,9004,9005,9006,9007,9008,9009,9010,9011,-7584,9012,9013,-6680,9014,9015,9016,-6676,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,5772,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,8987,9061,9062,8865,9063,8868,9064,9065,9066,9067,9068,9069,9070],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[9071,9072,8977,9073,9074,9075,9051,9076,9077,9078,9079,9080,9081,8987,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,8971,9092],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[9093,9094,9095,9096,9097,9098,9099,9100],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9101,9102],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[9103],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9104,9105,9106],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[9107],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9108,9109,9110,9111,7279,9112,9113,9114,7284,9115],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9116,9117,9118,9105,9119,9120,9121,9122],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[9123],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9124],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[9125,9126,9127],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[9128,9129],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[9130,9131,9132,-7726,9133,9134,9135,9136],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9137,9138,9139,9140,9141,9142,9143,9144],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[9145,-8933,9146,9147],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9148,7872,9149,9150],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[9151,7426,9152,9153,9154,9155],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9156,9157,9158,9159,9160,9161,9162,9163],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9164,9165,9166,-9161,9167,9168],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9169,9170,9171,9172,9173,9174,9175,9176,9177],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[9178],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[9179,9180,9181,9182],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[9183,9184,9185,-7935,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[9196,9197,9198,9199,9200,9201,9202,9203,9204],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[-7054,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[9215],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9216,9217],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[9218,9219],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[9232,9233],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9234],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9235],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[9236],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9237],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[9238],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9239],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[9240,9241],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9242,9243,9244,9245,9246,9247,9248],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9249,9250,9251],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[-9265,9265,-9262,9266,9267,9268],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9269],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[-9270],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9270],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[-9271],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9271],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9272,9273,6117,9274,9275,9276],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9277,9278,9279,9280,9281,9282,9283],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[9284],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9285,9286,9287],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9309],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[9310],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9311],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[9312,9313,9314,9315,9316,9317,9318],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[9319],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9320],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[9321],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9322],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9323],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[9324],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9325,9326,9327,9328,9329,9330,9331,9332],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9333],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9334],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9335,9336,9337],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[9338],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9339,9340],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[9341],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[9342,9343],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[9344],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[9345,9346,9347,9348,9349,9350,9351,9352,9353,9354],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9355,9356],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[9357],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9358,9359,9360,9361,9362],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[9363,9364,9365,9366,9367,9368,9369,9370,9371,9141,9372,9373],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[9374],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9375],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9376],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[9377],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[9378,9379,9380,9381],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9393,9394,9395,9396,9397,9398,9399,9400,9401,9402],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9403],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9404],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9405,9406,9407,9408],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9409,9410],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[9411],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9412],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9413],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[9414,9415],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9425,9450],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9451,9452],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[9453],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9454],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9455,9456],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9457,9458,9459,9460,9461],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9462],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[9463],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[9464,9465],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[9466],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[9467],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9468],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[9469],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[9470],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9471,9472,9473,9474,9475,9476,9477,9478,9441,9479,9480,9481,9482,9483,9484,9485,9444,9486,9487,9488,9489,9490,9491,9492,9493],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9494,9495,9480,9496,9482,9497,9484,9498],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9499],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[9500],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[9501],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9502,9503],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[9504],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9505],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9506,9507,9508],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[9509,9510,9511,9512,9513],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9514],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9515,9516],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[9517],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9518,9519,9520,9521,9522,9523,9524,9525],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[9526],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9527,9528,9529,9530],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[9531],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[9532],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9533],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9534,9535,9536],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[9537],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[9538],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[9539],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9540],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[9541],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9542],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9543],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9544],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[9545],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[9546],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[9547],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[9548],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[9549],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9550],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9551],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[9552,9553,9554,-7003],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[9555,9556],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9557,9558],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[9559,9560],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9561,9562,9563,9564],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9565],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9566,9567],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9568,9569,9570,9571,9572],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9573],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9574],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9575],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9576],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[9577],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9578],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9579,9580,9581,9582,9583,9584,9585,9586,9587],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9588,9589,9590,9591,9592],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[9593,9594,9595,9596],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[9608,9609,9610],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[9611,9612,-9607,9613,9614,9615,-9604,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,-6533,9643,9644,9645,9646,9647],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9684],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9685],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[9686],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[9687],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9688,9689,9690],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[9691,9692,9693,9694,9695,9696,9697,9698,9699,9700],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[9701,9702,9703,9704,9705,9706],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9707,9708],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9709,9710],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9711,9712,-9699,9713,9714,9715,-9695,9716,9717,9718,9719,9720],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[9721,9722,9723],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9724],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[9725],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9726],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[9727,8500,8501,8502,8503,9728,9729,9730],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[9731,9732],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[9733,9734,9735,9736,9737,9738],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9739,-9664,9740,9741],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9742,9743,9744,9745,-9655,9746,9747,9748,8270,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[9762,-7480,9763,9764,9765,9766,9767],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9768,9769,9770,9771,9772],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9773],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9774],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9714,9775,9776,9777,9778,9779,9780],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[9781,9782,9783],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9795,9796,9797,9798,9799,9800,9801],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9802,9803,9804,9805,9806,9807,9808,9809],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9810],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[9811,9812],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9813,9814,9815,9816,9817,9818,9819,9820,9821],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9822,9823,9824,9825,9826,-9819,9827,9828,9829,9830,9831,9832,9833],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9834],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9835,9836,9837,9838,9839,9840],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9841,9842,9843,9844],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[9845],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[9846,9847],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[9848],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[9849,9850],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[9851,9852,9853,9854],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9855],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9856],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[9857,9858,9859,9860,9861,9862],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[9863,9864,9865],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[9866,9867,9868,9869,9870,9871,9872,9873],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[9888,9889,-8760,9890,9891,9892,9893,9894],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[-9893,9895,9896,9897,9898,9899,9900,9901,9902,9903],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[9904],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9905,9906,9907,9908,6441,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[9927,9928,9929,9930,9931,9932,9933],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9934,9935],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9936,-9817,9937],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[9938,9939,9940,9941],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9942,9943,9944,9945],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[9946,9947,9948,9949,9950],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[9951,9952,7746,9953,9954,9955],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[9956,9957],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[9958,9959,9960,9961,9962,7098,9963,7100,9964,7102,9965,9966,9967,9968,9969,9970,9971],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[9972],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[9973,9974,9975,9976],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[9977],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[9978],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[9979,9980,9981,9982,9983,9984,9985,9986],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[9987,9988,9989,9990,9991,9992,9993,9994],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[9995,9996,9997,9998,9999,-7343,10000,10001,-9668,10002],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[10003,10004,10005,10006,-9998,10007],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10022,10023,10024,10025],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10026],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10027,10028,10029,10030,10031],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[10032],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[10033],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[10034,10035,10036],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10037],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10038],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10039],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10040,10041,10042],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[10043],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10044],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10045],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10046],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10047],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10048],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10049],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10050],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10051],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10052],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[10053],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10054],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10055],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[10070,10071],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[10072,10073,10074,10075,9491,9492,10076,10077,10078,10079,10080,10081,10082,10083,10084],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10085,10086,10087],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10088,10089],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10090],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10091],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10092],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10093],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10094],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10095],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[10096],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[10097],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10098],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10099],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10100],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10101],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10102],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[10103],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10104,10105,10106,10107,10108,10109,10110,10111,10112,10113],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[10114,-6985,10115,10116],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10117,10118,10119],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[10120],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10121],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[10122],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10123],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10124],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10125],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10126],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[10127],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10128],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10129],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10130],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10131,10132,10133,10134,10135],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10136,10137,10138,10139,10140,10141],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10154,10155],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10156],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10157],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10158],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10159],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[10160],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10161],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10162],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10163],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[10164],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[10165],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[10166,10167,9832,10168,10169],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10170],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10171],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10172],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10173],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10174],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10175],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10176],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10177],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10178],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10179,10180,10181,10182,10183,10184,10185,10186,10187,10188],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[10189],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10190],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10191],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10192],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[10193],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10194,10195,10196,10197],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10198],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[10199,10200],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10201],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10202],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10203],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10204],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10205],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10217],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10218,10219],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10220,10221,10222,10223,10224,10225,10226],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10227,10228,10229,10230,10231],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10232],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[-10233],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10233],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[10233],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[10234,10235,10236],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10249],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10250,10251,10252,10253,10254],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[10255],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[10256],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[10257],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10258],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10259],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[10260],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10261,10262,10263],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10264,10265],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10266,10267],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10268],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10269],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10270,10271,10272,10273,10274,10275],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[10276,10277],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[10278],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[10279,10280,-8103,10281,10282,10283],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10284],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[10285,10286,10287,10288],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10289],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10290,10291],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10292,10293,10294,10295,10296,10297],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10298,10299,10300],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10301,10302,10303,10304],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10305,10306],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10307],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10308,10309,10310,10311,10312,10313,10314,10315],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[10316],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10317],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10318],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10319],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[10320],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[10321],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10322],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[10323],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10324],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10325],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[10326,10327],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10328],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10329,-5496],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10330,10331,10332,10333],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[10334,10335],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10336],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[10337,10338],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10339],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10340,10341],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[10342,10343,10344],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10345],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10346],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[10347,10348,10349,10350,10351,10352],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[10353],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[-10354],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[10354,10355,10356,10357,10358],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10359,10360,10361,10362],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10363,10364],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10365,10366,10367,10368],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10369,10370],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10371],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[10372],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10373],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[10374,10375,10376],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[10377,10378],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[10379],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[10380],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10381],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[10382,10383],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[10384],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10385],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[10386,10387,10388,10389,10390,10391,10392,10393,10394],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[10395,10396],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10397],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10398],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10413,10414,10415,10416,-10409,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10431,10432,10433,10434,10435,10436,10415,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10455,10456,10457,10458,10459,10460,10461,10462,10463,-10445,10464,10465,10466,10467,10468],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10469,-6821,10470,10471,10472],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10473],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10474],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10492],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10493],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[10494,10495,10496,10497,10498],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[10511],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10512],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10513,10514,10515],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10516,10517,10518],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10519],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10520],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10521],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[10522],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10523],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[10524],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10525],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10526,10527,492,10528],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10529,10530],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10531],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10532],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10533,-402,10534],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10535],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[10536],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[10537],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[10538],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10539],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10540],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[10541,10542],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10543],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10544],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[10545,10546,10547],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10548],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[10549],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[10550],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[10551],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10552],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[10553],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10554],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10555],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10556],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10557],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10558],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10559],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10560],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10561],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10562,10563,10564,10565,10566,10567,10568,10569,10570],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[10571],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10572,10573],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10574,10575],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[10576],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10577],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10578,10579,10580],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10581],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10582,10583],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[10584],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[10585,10586],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10587,10588,10589,10590],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10591],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[10592],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[10593],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10594],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10595],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10596],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10597,10598],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[10599],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10600,10601],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[10602],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10603],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10604],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[10605],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10606],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10607,10608],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[10609],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10610],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10611],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10612],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10613],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[10614],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[10615],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10616],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[10617],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10618],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10619],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10620],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10621],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10622],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10623,10624],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10625,10626,10627],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[10628],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[10629],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10630],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10631],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[10632],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[10633],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10634],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10635],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[10636],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10648,10649],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[10650],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10651],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10652],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10653],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10654],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10655],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10656,10657],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10658],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10659],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10660,10661],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10662],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10663],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10664],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10665],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10666],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[10667],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10668],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10669,10670,10671,10672,10673],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10674],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10675],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10676],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10677],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10678],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10679],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10680],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10681],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10682],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[10683],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10684],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[10685,10686],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10687],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10688],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10689],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10690],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[10691],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10692],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10693],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[10694],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[10695],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[10696],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10697],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10698,10699],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10700],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10701],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10702,10703],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10704,10705],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10706],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[10707],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10708],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10709],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10710],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[10727],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10728,10729,10730,10731],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10732,10733],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10734,10735,10736],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10737,10738],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[10739,10740,10741],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10742],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10743],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10744],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10745],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10746],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[10747],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[10748],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10749],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10750],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10751],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[10752],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10753],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10754],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10755],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10756],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[10757],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10758,10759,10760,10761,10762,10763,10764,10765,10766],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10767,10768,10769,10770],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10771],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10772],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[10773],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[10774,10775,10776,10777,10778],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[10779],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10780],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[10781],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[10782],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10783],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10784],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10785],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10786],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10787],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10788],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10789],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10790,10791,10792,10793,10794,10795,10796,10797],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10798],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10799],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10800],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10801],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[10802],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[10803],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10804],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10805],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10806],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10807],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10808],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10809],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[10810],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10811],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10812],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10813],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10814],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10815],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10816],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[10817],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10818],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[10819],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[10820],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10821],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10822],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10823],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10824],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[10825],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[10826],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10827],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10828],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10829],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10830],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[10831],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[10832],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10833],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10834],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10835],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10836],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10837],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10838],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10839],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10840],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10841],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10842],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10843,10844],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[10845,10846,10847,10848,10849,10850,10851],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10852],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10853,10854,10855,10856],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10857],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10858],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10859],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[10860],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10861],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10862],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10863],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10864],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[10865],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10866],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[10867],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10868],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10869,10870],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10871],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[10872],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10873],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10874],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10875],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10876],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10877],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10878],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10879],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10880],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10881],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10882,-10851,10883,10884,10885,10886],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10887,10888],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10889],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[10890],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[10891],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10892,10893],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[10894],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10895],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[10896],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10897],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10898],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10899],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10900],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10901],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10902],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10903,10904],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10905,10906,10907,10908,10909,10910],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10911],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10912,10913,10914],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[10915,10916,10917],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10931,10932,10933,10934,10935,10936,10937,10938],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10939],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[10940],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10941],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10942],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[10943,10944],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[10945],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10946],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10947],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[10948],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[10949],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10950],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10951],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[10952],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[10953],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10968,10955,10969,10970,10971,10972,10973,10974,10975,10976,10977],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10978],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[10979],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10980,10981,10982,10983,10984,10495,10985,10986,10987],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[10988,10989,10990,10991,10992],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[10993],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[10994],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10995],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[10996],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10997],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[10998],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[10999,11000,11001,11002],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11003],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11004],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11005],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11006],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11007],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11008],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11009],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11010,11011,11012,11013,11014],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11015],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[11016,11017],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11018],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11019],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11020],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[11021],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[11022],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11023],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11024,11025],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11026],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11027],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11028],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11029],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11030],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11031],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11032,11033],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11034],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[11035],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11036],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11037],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[11038],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11039],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11040],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11041],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11042,11043],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11044],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11045],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11046],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11047],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11048],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11049],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11050],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11051],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11052],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11053,11054,11055],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11056,9317,11057,10563,11058,11059,11060,11061,11062,11063,11064,11065,11066],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[11067],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11068,11069,11070,11071,11072,11073],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11074],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11075],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11076],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11077],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11078],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11079,11080,11081,11082,11083],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11084],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11085],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[11086],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11087],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11088],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[11089],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11090],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11091],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11092],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11093],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11094],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11095],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11096],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11097],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11098],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11099],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11100],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[11101],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11102],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11103,11104],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11105],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11106,11107,11108],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[11109,11110],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11111,11112,11113,11114,11115,11116,11117],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11118],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11116,11132],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[11133],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11134],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[11135],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11136],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11137],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11138],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11139],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11140],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11141,11142],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11143],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11144,11145,11146],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[11147],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11148],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11149],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[11177,11178],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11179],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11180],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11181],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11182],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11183],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[11184],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11185],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11186],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11187],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11188],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11189],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11190],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[11191],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11192],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11193],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11194],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11195],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[11196],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[11197],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11198],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[11199,11200],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[11201],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11202],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11203],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[11204],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11205,11206],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[11207],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11208,11209,11210],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[11211],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[11212,11213],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11214],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11215],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[11216],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11217],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[11218],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[11219],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[11220],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11221],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11222],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11223],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11224],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11225],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11226],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11227],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11228],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11229],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11230],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11231],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11232],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11233],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11234],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11235],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11236],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11237],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11238,11239,11240,11241,11242,11243,11244],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11245,11246,11247,11248,-10569,11249,11250,11251,11252,11253,11254],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[11255],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11256,11257,11258,11259,11260],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[11261],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11262],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11263],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11264],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11265],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11266],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11267],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11268],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11269],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11270],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11271],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11272],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11273],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11274],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11275],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11276],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11277],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11278],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11279,11280],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11281],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11282],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11283],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11284],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11285,11286,11287],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11288],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11289],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11290],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11291],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11292],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11293],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11294],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11295],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11296],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11297],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11298],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11299],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11300],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[11301],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11302],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11303],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11304,11305],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11306],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11307],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[11308],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11309],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11310],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11311,11312],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[11313,11314,11315],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[11316],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11317],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11318],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11319],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11320],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11321],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11322],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11323],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[11324],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11325],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11326],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11327],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[11328],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11329],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[11330],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[11331],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[11332],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[11333],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11334],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11335],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11336],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11337],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11338],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11339],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[11340],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11341],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11342],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11343],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11344],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11345],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11346],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11347],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[11348],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[11349],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11350],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[11351],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11352],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11353],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11354],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[11355],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11356],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11357],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11358],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[11359],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11360,11361,11362,11363,11364],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11365],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11366],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11367],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11368],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11369],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11370],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11371],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11372],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[11373],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11374,11375],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11376],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11377,11378],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11379,11380,11381,11382,10501,11383,11384],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[11385],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11386],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11387,9868,11388,11389,11390,11391,11392],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[11393],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[11394],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[11395],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11396],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11397],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11398],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[11399],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11400],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11401,11402,11403],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[11404],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11405],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11406],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11407],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[11408],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11409],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11410,11411],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11412],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11413],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[11414,11415,11416],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[11417],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[11418],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11419],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11420],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11421],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11422],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[11423,11424,11425],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11426],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[11427],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11428],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11429],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11430],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11431],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[11432],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[11433,11434],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11435],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11436],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[11437,11438,11439,11440],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11441],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[11442],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11443,11444,11445,10777,11446],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[11447,11448],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11449],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[11450],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11451,11452],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11453],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[11454],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11455],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11456],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11457],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11458],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11459],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11460],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[11461],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11462],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11463],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11464],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11465],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11466,11467],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[11468,11469],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11470],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11471],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11472],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11473],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11474],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11475],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11476],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11477],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11478],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11479],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11480],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11481],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11482,11483,11484],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[11485],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11486],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11487],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11488],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11489,11490],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11491],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11492],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11493],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[11494],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11495],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[11496],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[11497],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[11498],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[11499],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11500],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11501],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11502],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11503],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11504],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[11505],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[11506],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11507],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11508],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11509],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11510],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11511],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11512],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11513],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11514],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11515],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[11516],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[11517],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11518],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[11519],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11520,11521,11522,11523,11524,10644,11525,11526,11527,11528,11529,11530,11531,11532],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11533],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11534,11535,11536,11537],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11538],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11539],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11540],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[11541],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11542],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11543],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[11544],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11545],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[11546],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11547],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[11548,11549,11550],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11551],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11552],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11553],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11554],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11555],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11556,11557],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11558],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11559],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11560],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11561],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11562],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11563],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11564],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11565],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11566],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11567],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11568],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11569],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[11570],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[11571],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[11572],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[11573],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[11574],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11575],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11576],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11577],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11578],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[11579],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11580],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11581],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11582],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[11583],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11584],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11585,11586,11587,11588],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11589,11590,11591,11592],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11593],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[11594],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11595],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11596],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11597],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[11598,11599,11600],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11601],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[11602],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[11603],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11604],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[11605,11606],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11607],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[11608],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[11609,11610],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[11611,11612,11613,11614],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[11615],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[11616],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11617,11618,11619],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[11620,11621,11622,11623],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[11624,11625,11626],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11627],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11628],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11629],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11630],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11631],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[11632],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11633],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11634,11635],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11636],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[11637],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11638],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11639],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11640,11641,11642],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11643],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11644,11645,11646,11647,11648],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11649],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11650],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11651],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11652],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11653],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[11654],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[11655],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11656],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11657],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11658],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11659],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[11660],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11661],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11662,11663],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[11664],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11665],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11666],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[11667],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11668],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11669],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[11670],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11671],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11672],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11673],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11674],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11675],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11676],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11677],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11678],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11679],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11680],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[11681,11682],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[11683],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[11684],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[11685],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[11686,11687],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[11688],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[11689],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11690,11691,11692],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[11693],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[11694],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[11695,11696],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11697],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[11698],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[11699,11700],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11701],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[11702],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[11703,11704,11705,11706,11707,11708,11709,11710,11711],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11712,11713,11714,11715,11716,11717,11718],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11719,11720,11715,11721,11717,11722],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11723],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11724,11725],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[11726],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11727],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11728,11729],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[11730],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11731],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[11732],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[11733],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[11734],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11735,11736,11737],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[11738],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11739,11740,11741,11742,11743,11744],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11745],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11746],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11747],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[11748],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[11749,11750],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11751],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[11752],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11753],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11754],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[11755],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11756],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11757],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11758],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[11759],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11760],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[11761],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11762],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11763],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11764],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[11765],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11766,11767],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[11768],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11769],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11770],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11771],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[11772,11773,11774],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11775],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11776],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[11777],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11778],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11779],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[11780],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11781],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11782],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11783],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[11784],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11785],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11786],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11787],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11788,11789,11790],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11791],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11792],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[11793],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11794],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[11795],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[11796],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[11797],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[11798],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11799],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11800],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11801],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11802],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11803],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11804],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11805],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11806],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11807],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11808],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11809],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11810],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11811],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11812],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11813],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11814],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11815],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11816],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11817],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11818,11819],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[11820],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11821],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11822],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11823],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11824],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11825],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11826],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11827,11828,11829,11830,11831,11743,11832,11833,11834,11835,11836,11837,11838],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11839],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11840],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[11841],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[11842],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[11843],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[11844],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11845],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[11846],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[11847,11848],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11849,11850],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11851],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11852],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[11853],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11854],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[11855],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[11856,11857,11858,11859,11860,11861,11862,10716,11863,10719,11864,10724,11865],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[11866],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[11867],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[11868],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[11869],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11870],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11871,11872],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11873],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[11874],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[11875],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11876],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11877,11878,11879],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[11880],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11881,11882,11883],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11884],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11885],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[11886],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[11887],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[11888],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11889],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11890],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[11891,11892,11893,11894,11895,11896],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11897,11898,11899,11900,11901,11902,11903],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[11904,11905,11906,11907,11908],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11909],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11910],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[11911],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11912],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11913],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[11914],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11915],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[11916],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[11917],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11918],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[11919],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[11920],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11921],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11922],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[11923],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11924],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11925,11926,11927,11928,11929,11930],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11931],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[11932],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[11933],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11934],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11935],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[11936],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[11937],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11938,11939],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[11940],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[11941],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11942],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11943],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11944],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[11945],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[11946],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11947],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[11961,11962,11963,11964,11965,11966,11967,11968,11969,-11953,11970,11971,11972],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[11973],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11974,11975],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11976],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11977,11978],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[11979,11980,11981,11982],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[11983],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[11984],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[11985],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[11986,11987,11988],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[11989],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[11990,11991,11992],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[11993],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12009],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12010],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[12011],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[12012,12013,12014],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[12015],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12016],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12017],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12018],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12019],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12020,12021],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12022],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12023],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12024],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[12025],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12026],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12027,12028],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12029],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12030],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[12031],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12032],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12033],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12034],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12035],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12036],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12037],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[12038],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12039],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12040],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12041],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12042],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[12043],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12044],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12045],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12046],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12047,12048],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12049],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12050,12051],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[12052],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12053],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12054],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12055],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12056],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12057],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12058],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12059],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12060],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[12061],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12062,12063],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12064],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12065],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[12066],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[12067],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12068],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12069,12070,12071,-11883,12072],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12073],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12074],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12075],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12076],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12077],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12078],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[12079],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12080],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12081,12082],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12083],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12084],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12085],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12086],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12087],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12088],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12089],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12090,12091,12092,12093,12094,12095,12096,12097,12098,12099],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[12100],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12101,12102,12103,12104,12105,12106],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[12141],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12142],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12143],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12144],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12145],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12146],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12147],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12148],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12149],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12150],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[12151],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12152],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12153],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12154],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12155,12156],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[12157,12158],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12159,12160],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12161,12162],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12163],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12164,12165,12166,12167],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12168],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12169],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12170],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12171],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12172],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12173,12174,12175],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[12176],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12177,12178],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12179],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12180],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12181],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12182],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12183],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12184],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12185],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12186],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12187],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12188,12189],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12190,12191],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12192],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12193],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12194],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12195],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12196],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12197,12198],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12199],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12200],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12201],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12202],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12203],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12204],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12205],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12206],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12207],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12219],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12220],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12221,12222,12223,12224],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12225,12226,12227,12228,12229,12230,12231],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12232,12233,12234,12235,12236,12237,12238,12239],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12240],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12241],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12242,12243],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12244],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12245],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12246],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12247],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12248],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12249,12250],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12251],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12252],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12253],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12254],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12255],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12256,12257,12258],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12259],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12260,12261],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12262],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12263],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12264],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12265],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12266,12267],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12268],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12269,12270,12271,12272],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12273],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12274,12275,11996,12276,12277,12278,12279,12280,12281,12282],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[12283],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12284],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12285,12286,12287,12288],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12289],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12290,12291],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[12292],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12293],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[12294,12295],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12296],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12297],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12298,12299],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12300],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12301],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12302],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12303],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12304],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12305],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12306,12307,12308,12309,12310],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12311,12312,12313,12314,12315,12316,12317],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12318,12319],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12320],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12321,12093,12322,12323,12324],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12325,12326,12327,12328,12329,12330,12331],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12332],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12333],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12334],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12335,12336,12337,12338],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[12339,12340,12341,12342,12337,12343],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[12344,12345],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[12346],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12347,12348],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12349],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12350,12351,12352],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12353],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[12354],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12355],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12356],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12357,12358],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12359],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12360,12361,12362],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12363],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12364],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[12365],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12366],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[12367],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[12368,12369,12370,12371],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12372],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12373,12374],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12375],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12376],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[12377,12378,12379,12380,12381],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12382],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[12383],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12384],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12385],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12386],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12387],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12388],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12389],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12390,12391],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[12392],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[12393],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[12394],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12395],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[12396],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[12397,12398],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12399],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[12400,12401],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12402],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12403,12404],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12405],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12406],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12407],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12408,12409,12410],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12411,12412],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12413],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12414],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12415],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12416],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[12417],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12418],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12419],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[12420],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[12421],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[12422],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12423],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12424],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12425],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12426],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12427],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12428],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12429],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12430],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12431],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[12432],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12433],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[12434],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12435,12436],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[12437],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12438],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12439,12440],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12441,12442],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[12443],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12444],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12445],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12446],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12447],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12448],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[12449],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12450],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12451],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12452],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12453],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12454],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12455],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12456],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[12457],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12458],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[12459],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[12460,12461,12462,12463,12464,12465],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12466,12467,12468,12469,12470],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12471],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12472,12473,12474],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12475,12476],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12477,12478,12479],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12480],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[12481,12482],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12483],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[12484],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12485],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[12486,12473,12487],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[12488],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12489],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[12490,12491],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12492],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[12493],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[12494,12495],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[12496],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12497,12498,12499,12500],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12501],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[12502],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12503],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12504],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12505],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12506,12507,12508],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12509],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[12510],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12511],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12512],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12513],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12514],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[12515],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12516],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12517],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12518],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12519,12520],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[12521],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12522],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12523],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[12524],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12525,9877,12526,12527,12528,12529],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12530],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12531,12532,12533,12534],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[12535],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12536,12537],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[12538],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[12539,12540,12541,12542,12543],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[12544],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[12545],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12546],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12547],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12548],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12549],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12550],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12551],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[12552],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12553],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12554],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12555],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12556],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12557],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12558],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12559],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12560],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12561],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12562],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12563],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[12564],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12565],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12566],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12567,12568,12569],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12570],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12571,12572,12573],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[12574],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12575],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[12576,12577],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[12578],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12579],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12580],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12581,12582,12583,12584,12585,12586],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12587],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12588],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12589],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12590],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12591],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12592],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[12593],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12594],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12595],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12596],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12597],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12598],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12599],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12600],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12601],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[12602,12603,12604],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12605,12606,12607,12608,12609],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12610,12611],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12612],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12613],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12614],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[12615],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[12616],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[12617],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12618],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12619],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12620],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[12621],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12622],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[12623],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12624,12625,12626],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[12627],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[12628],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12629,12630],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12631],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12632],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12633],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12634],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12635],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12636],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12637],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12638],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12639],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12640],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12641],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12642],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12643,11618,12644],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[12645],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[12646],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12647],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12648],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12649],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12650,12651,12652],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12653],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12654,12655,12656,12657],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[12658],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12659],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[12660,12661],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12662],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12663,12664,12665,12666,12667],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12668],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12669],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[12670],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12671,12672],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12673],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12674],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12675],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[12676],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12677,12678,12679,12680],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12681],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12682],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12683],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12684,12685,12686,12687,12688],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12689,12690,12691,12692,12693,12694,12695,12696],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12697,12698],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12699],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[12700],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12701],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12702],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[12703],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[12704],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12705,12706,12707,12708],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[12709],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[12710],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12711],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12712],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12713],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12714],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12715],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12716],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12717],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12718],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12719],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12720],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12721,12722],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12723],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[12724,12725],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12726],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12727],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[12728],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[12729],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[12730],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12731,12732],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12733,12734],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12735],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12736],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12737],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12738],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12739,12740,12741,12742],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[12743,12744,12745],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12746,12747],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[12748,12749],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12750,12751],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12752,12753],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12754],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12755],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12756,12757],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12758,12759],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12760],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12761],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12762,12763,12764,12765],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[12766],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[12767],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12768,12769,12770,12771],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[12772,12773,12774],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12775],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12776],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12777],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12778],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12779],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12780,12781,12782],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12783,12784,12785],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12786,12787,12788],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[12789,12790,12791,12792],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12793],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12794],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12795],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12796,12797,12798,12799,12800,12801,12802,12803,12804,12805],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12806],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12807],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12808,12809,12810],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12811],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12812,12813,12814],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12815],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12816,12817],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12818],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12819],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12820],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12821],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[12822],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12823],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[12824],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12825],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12826,12827],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[12828],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[12829],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12830,12831,12832],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[12833],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12834],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12835],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12836],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[12837,12838],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12839],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[12840],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12841],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12842],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[12843,12844,12845,12846,12847,12848,12849],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12850],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[12851],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12852],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12853],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12854],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12855],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12856],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12857],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[12858],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12859],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12860],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12861,12862,12863,12864,12865,12866],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12867],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12868],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12869,12870,12871],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12872],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12873],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12874],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[12875,12876],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12877],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12878],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12879,12880],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[12881],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[12882,12883],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[12884,12885,12886],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12887],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[12888],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12889],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12890],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12891],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12892],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[12893],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12894],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[12895,12896],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12897],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[12898],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[12899],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12900],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12901],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12902],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12914,12915,12916,12917,12918],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[12919],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12920,12921,12922],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[12923],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[12924],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12925,12926,12927,12928,12929],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12930],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[12931],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12932],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12933],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12934,12935],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[12936,12937,12938,12939],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12940,12941,12942,12943,12944,12945,12946],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[12947],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12948,12949,12950],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[12951],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[12952,12953,12954],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12955],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[12956,12957,12958,12959,12960,12961,12962,12963,12964],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[12965],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[12966],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[12967,12968,12969,12744,12970,12971,12972,12973,12974],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[12975,12976,12977,12978,12979,12980,12973],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[12981],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12982],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[12983,12984,12985],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[12986,12987,12988,12989],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[12990],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[12991],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12992],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[12993],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[12994],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[12995],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[12996],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[12997],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[12998,12999,13000,13001],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13002],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13003,13004],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13005,13006],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13007],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13008],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13009,13010,12770,13011],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13012],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13013],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13014],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13015],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13016],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13017],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13018],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13019],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13020],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13021],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13022],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13023],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13024,13025,13026,13027,13028,13029,13030],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13031],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13032,13033,13034,13035,13036,13037],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13038],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13039],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13040],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13041],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13042],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13043,13044,13045,13046,13047],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13048],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13049],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13050],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13051],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13052],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13053],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13054,13055,13056,13057],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13058],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13059],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13060],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13061],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13062],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13063],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13064],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13065,13066,13067],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13068],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[13069],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13070],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[13071,13072,13073],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13074],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13075],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13076],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13077],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13078],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13079],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13080],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13081,13082,13083],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13084],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13085],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[13086,13087,13088,13089],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13090,13091,13092],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13093,13094,13095],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13096],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13097],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13098],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13099,13100],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13101,13102],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13103],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13104],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13105],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13106,13107,13108],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[13109,13110,13111,13112,13113],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13114],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13115],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13116],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13117],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13118],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13119],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[13120],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13121],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13122],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13123],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13124],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13125],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13126,13127,-13112,13128],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13129,13130],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13131],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13132,13133],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13134],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13135],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13136],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13137],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13138],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[13139],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[13140],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13141,13142],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13143],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[13156,13157,13158],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13159,13160,13161,13162,13163],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13164],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13165],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13166],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13179],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13180],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13181],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13182],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[13183],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13184],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13185],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13186],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13187],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13188],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13189],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13190],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13191,13192,13193],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13194],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13195,13196,13197,12608,13198],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[13199],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13200,13201,13202],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13203],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13204,13205,13206],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13207],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13208],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13209],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13210,13211],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13212],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13213,13214,13215],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13216],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13217],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13218],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13219],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[13220,13221],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13222],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13223],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13224],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13225],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13226],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13227],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13228],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13229],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13230],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13231],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13232,13233,13234,13235,13236,13237],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13238],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13239],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[13240],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13241],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[13242],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13243,13244],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13245],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13246],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13247],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13248,13249,13250,13251,13252],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13253,13254,13255],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13256],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13257],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13258],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13259,13260,13261],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13262],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13263],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13264],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13265],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13266,13267,13268],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13269],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13270],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13271],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13272],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13273],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13274],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13275],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13276],"properties":{"zvalue":-27,"depth":275}},{"type":"LineString","arcs":[13277,13278,13279],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[13280],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13281],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13282],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13283,13284,13285],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13286],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13287],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13288],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13289],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13290],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13291],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13292],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13293],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13294,13295,13296,13297],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13298],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13299],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13300,13301],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13302],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13303],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13304],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13305],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13306],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13307],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13308],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13309],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13310],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[13311],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13312],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13313],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13314,13315],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13316],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13317],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13318],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13319],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13320],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13321],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13322,13323],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13324],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13325],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13326],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13327],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13328],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13329],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13330],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[13331],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13332,13333,13334,13335],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13336,13337,13338,13339,13340,13341],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13342],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13343],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13344],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[13345],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13346],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[13347],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[13348],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[13349],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13350,13351,13352],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13353],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13354],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13355,13356],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13357],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13358],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13359,13360,13361,13362,-12791,13363],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13364],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13365,13366],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13367,13368,13369],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13370,13371],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13372],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13373],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13374,13375],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13376],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13377],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13378],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13379],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[13380,13381,13382],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13383],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13384],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13385],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13386,13387,13388,13389,13390],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13391],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13392],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13393],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13394],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13395],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13396],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13397,13398,13399,13400,13401,13402],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13403],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13404],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13405],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13406,13407,13408,13409,13410],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13411],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13412],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13413],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13414],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13415],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[13416],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13417,13418,13419,13420],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13421,13422,13423,13424],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13425,13426,13427,13428,13429],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13430],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13431],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[13432],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13433],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13434,13435,13436,13437,13438,13439,13440],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13441],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13442],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13443],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13444],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13445,13446,13447,13448,13449],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13450],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13451],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13452],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13453],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13454],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13455],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13456],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13457],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13458],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13459],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13460],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13461],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13462],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[13463],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[13464],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13465],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13466],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13467],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13468],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13469],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13470],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13471],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13472],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13473],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13474],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13475],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13476],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13477],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13478],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13479],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13480],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[13481,13482,13483,13484,13485,13486,13487,13488,13489],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13490],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13491],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13492],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13493],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13494],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13495],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13496],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13497],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13498,13499,13500],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13501,13502,13503],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13504],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13505],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13506],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13507],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13508,13509,13510,13511],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13512,13513,13514],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13515],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13516,13517,13518,13519,13520],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13521],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13522],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[13523,13524,13525],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[13526,13527,13528],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13529],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13530],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13531],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13532],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13533],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13534],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13535],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13536],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[13537],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13538],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[13539],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13540],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13541,13542],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13543],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13544],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13545],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[13546],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13547],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13548],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13549],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13550],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13551],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13552],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13553],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13554],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13555],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13556,13557],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13558],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[13559],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13560],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13561],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13562],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13563],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13564],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13565,13566],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13567,13568],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13569],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13570],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13571,13572],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[13573],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13574],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[13575],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13576],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13577],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13578],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13579],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13580],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[13581,13582,13583,13584,13585,-13437,13586,13587],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13588],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13589],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13590],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[13591],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13592],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13593],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[13594],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13595],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13596],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13597],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13598],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13599,13600,13601,13602,13603],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13604],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13605],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13606],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13607,13608,13609,13610,13611,13612,13613],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13614],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13615,13616,13617,13618],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13619,13620,13621,13622],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[13623],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13624],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13625],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13626],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13627],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13628],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13629],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13630],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[13631],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13632],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[13633],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[13634],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13635],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13636],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13637],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13638],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13639],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13640],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13641],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[13642],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13643],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13644],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13645],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13646],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13647],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13648],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13649],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13650],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13651],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13652],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13653],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[13654],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13655],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13656],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13657],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13658],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13659],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13660],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13661,13662,13663,13518,13664,13665],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13666],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13667,13668,-13448,13669],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[13670],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[13671],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13672],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13673],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13674],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13675],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13676],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13677,13678,13679],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13680],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13681],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13682],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13683],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13684],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13685],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[13686,13687,13688],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13689,13690,13691,13692,13693],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[13694,13695],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13696],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13697],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13698],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13699],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13700],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13701],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13702],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13703],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13704],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13705,13706],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13707],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13708],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13709],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13710,13711,13712,13713],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13714],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13715],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13716],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13717],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13718],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13719],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13720],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13721],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[13722],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13723,13724,13725],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13726,13727,13728,13729,13730],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13731,13724,13732],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13733],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13734],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13735],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13736],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13737],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13738],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13739],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13740],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13741],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[13742],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13743],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13744],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13745,13746],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13747],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13748],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13749],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13750],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13751],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13752],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13753,13754,13755,13756,13757],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13758],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13759,13760,13761,13762,13763],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[13764],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13765],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13766],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13767],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13768],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13769],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13770],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13771,13772,13773,13774,13775,13776],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13777],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13778,13779,13780,13781,13782],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13783,13784],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13785],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13786],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13787],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[13788],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13789],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13790],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13791],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13792],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13793,13794],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13795],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13796],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13797],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13798],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13799],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[13800],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[13801],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13802],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13803],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13804],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13805],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13806],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13807],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13808],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[13809],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13810],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13811],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[13812],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13813,13814],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13815],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[13816],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13817],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13818],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13819],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13820],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13821,13822],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13823],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13824],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[13825],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13826],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[13827],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[13828],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[13829],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13830],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13831],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13832],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13833],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[13834],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13835],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13836],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[13837,13838,13839],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13840],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13841],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13842],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13843],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[13844],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13845],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13846,13847],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[13848],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13849],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13850],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[13851],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13852],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13853],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13854],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13855],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13856],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[13857,13858,-13728,13859],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13860],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[13861],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13862],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13863],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13864],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13865],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13866],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[13867],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13868],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13869],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[13870],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[13871],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13872],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13873],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[13874],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13875],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[13876],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[13877,13878],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[13879],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13880],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13881],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13882],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[13883],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[13884],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13885],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13886],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13887],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13888],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13889],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[13890],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13891],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[13892],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13893],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[13894,13895,13896],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13897],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[13898],"properties":{"zvalue":-27,"depth":275}},{"type":"LineString","arcs":[13899],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[13900],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13901],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13902],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13903],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13904],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13905],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13906],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13907],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13908,13909,13910],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[13911],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13912,13913,13914,13915,13916,13917,13918],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13919],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[13920],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[13921],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13922],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13923],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13924],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[13925,13926],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13927],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[13928,13929,13930,13931,13932,13933,13934,13935,13936],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13937],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[13938],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[13939,13940,13941,13942,13943,13944,13945,13946],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13947],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13948],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13949],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13950],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[13951],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[13952],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13953],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13954],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[13955,13956,13957],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[13958],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13959],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[13960],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[13961],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[13962],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[13963],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[13964],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13965],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[13966],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13967],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[13968],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13969],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13970],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13971],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13972],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13973,13974],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[13975],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13976],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[13977],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[13978],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13979],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[13980],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[13981],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13982],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[13983],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[13984],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[13985],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[13986],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[13987],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[13988],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[13989,13990,13991],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[13992],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[13993,13994,13995],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[13996],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[13997],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[13998],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[13999],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14000],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14001],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14002],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14003],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14004,14005],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14006],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14007],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14008],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14009],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14010],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14011],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[14012],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14013],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14014],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14015],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14016,14017],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14018],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14019],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14020],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[14021],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14022],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14023],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[14024],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14025],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[14026],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14027],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[14028],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14029],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[14030,14031,14032],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14033],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14034],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14035],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14036,14037],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[14038],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14039,14040],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14041],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14042],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14043],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14044],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[14045],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14046],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[14047],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[14048],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14049],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14050],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[14051],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14052],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14053],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14054],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14055],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[14056],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[14057],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14058],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[14059],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[14060],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14061],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14062],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14063],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[14064],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14065],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14066],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14067],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14068],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14069],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14070],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14071],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14072],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[14073,14074,14075],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14076],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14077,14078],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14079],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14080],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14081],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14082],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14083],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14084,14085],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14086],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14087],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14088],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14089],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14090],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14091],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[14092],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14093],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14094],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[14095],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[14096],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14097],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14098],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14099],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14100],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14101],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14102],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14103],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14104],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14105],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14106],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14107],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14108],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14109],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14110],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[14111],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14112],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14113],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14114],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14115],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14116],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[14117],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14118],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14119],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14120],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14121],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14122],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14123],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14124],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14125],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[14126],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14127],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14128],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[14129],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[14130],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[14131],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[14132],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14133],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14134],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14135],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14136],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14137],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14138,14139,14140,14141,14142,14143],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14144],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14145,14146,14147,14148,14149,14150,14143],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14151],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14152],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14153,14154,14155,13915,14156,14157,14158],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14159],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14160],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14161],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14162],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14163],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14164],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14165,14166],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14167],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14168],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14169],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14170],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14171],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14172],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14173],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14174],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14175],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14176],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14177],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[14178,14179],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14180],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14181],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14182],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[14183],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14184],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14185],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14186],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14187],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14188,14189],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14190],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14191,14192],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14193],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14194],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14195],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14196],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[14197,14198],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[14199,14200,14201],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14202],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14203],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14204],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14205,14206],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14207],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14208],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[14209,14210],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14211],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14212],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14213],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[14214],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[14215],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14216],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14217],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14218],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14219,14220,14221],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14222],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14223],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14224],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14225],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14226],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14227,14228,14229,14230,14231],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14232],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14233,14234],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14235],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[14236],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14237],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14238],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[14239],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14240],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14241],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14242],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[14243,14244,14245,13932,14246],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14247],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14248],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14249],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14250],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14251],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14252],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14253],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14254],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14255],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14256],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14257],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14258],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14259],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14260],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14261],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[14262],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14263],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14264],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14265],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14266],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14267],"properties":{"zvalue":-27,"depth":275}},{"type":"LineString","arcs":[14268],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14269],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[14270],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14271],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[14272],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14273],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14274],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[14275,14276],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14277],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14278],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14279],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14280],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[14281],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14282,14283],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14284],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14285],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14286,14287],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14288],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14289],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14290],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14291],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14292],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14293],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14294,14295],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[14296],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14297],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[14298,14299],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14300],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14301,14302],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[14303],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14304],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14305,14306,14307,14308],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14309],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14310,14311,14312],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14313],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14314],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14315],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14316],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14317],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14318],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14319],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14320],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14321],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[14322],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14323],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[14324],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14325],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14326],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14327],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14328],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14329],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[14330],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14331],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14332],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14333],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14334],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14335],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14336],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14337],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14338],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14339],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14340,14341],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14342],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14343],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14344],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14345,14346],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14347],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14348,14349],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14350,14351],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14352],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14353],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[14354],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14355],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14356],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14357],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[14358,14359,14360,14361,14362,14363,14364,14365],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14366],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14367,14368,14369,14370,14371],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14372],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14373],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14374],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14375],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14376],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14377],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14378],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14379],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14380],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14381],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14382,14383,-14308,14384,14385],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14386],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14387,14388],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14389],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14390,14391,14392,14393],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14394],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14395],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14396],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14397],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[14398],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[14399],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14400],"properties":{"zvalue":-27,"depth":270}},{"type":"LineString","arcs":[14401],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14402],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14403],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14404],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14405,14406,14407],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14408],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14409],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14410,14411,14412],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14413],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14414],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[14415,14416],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[14417],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14418],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14419],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14420],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14421],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14422],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14423],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[14424],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14425],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14426],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14427],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[14428,14429,14430],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14431],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14432],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14433],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14434],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14435],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14436],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14437],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14438],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14439],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14440],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[14441],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14442],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[14443],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[14444],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14445],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14446],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14447],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[14448,14449,14450],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14451],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14452],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14453],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14454],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14455],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14456],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14457],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14458],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[14459],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14460],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14461],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14462],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14463],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14464],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14465,14466],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[14467],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14468],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14469],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14470],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14471],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14472],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14473,14474],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14475,14476,14477,14478,14479],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14480],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[14481,14482,14483,14484,14485,14486,14487],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14488,14489,14490,14491,14492,14485,14493,14494,14495],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[14496],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14497],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14498],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14499],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14500,14501,14502,14503,14504],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14505],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14506],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14507],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14508],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14509,14510],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14511],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14512],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14513],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[14514],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[14515],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14516,14517,14518],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14519],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14520],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14521],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14522],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14523],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14524,14525],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14526],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14527],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14528],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14529],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14530],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14531],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14532],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14533],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14534,14535],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14536],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14537,14538],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14539],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[14540],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14541],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14542],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14543],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[14544],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[14545,14546,14547],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14548],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14549],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14550],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14551],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14552],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14553],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[14554],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14555],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14556],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14557],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14558],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14559,14560],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14561],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14562],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14563],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14564],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14565,14566],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[14567],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[14568],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14569],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[14570,14571],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14572],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14573],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14574],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14575],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14576,14577,14578],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14579],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14580],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14581],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14582],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[14583],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14584],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14585],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14586],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14587],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14588],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14589],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14590],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14591],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14592],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14593],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14594],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14595],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14596],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14597],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14598],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14599],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14600],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[14601],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14602],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14603],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[14604],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14605],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[14606],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14607],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14608],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14609],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[14610],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14611],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14612,14613],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14614,14615,14616,14617,14618,14619],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14620],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14621],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14622],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14623],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14624],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14625],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14626],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14627],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14628],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14629],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[14630],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14631],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[14632],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[14633],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14634],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14635],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14636],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14637],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14638],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14639],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14640],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14641],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14642],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14643],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14644],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[14645],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14646,14647,14648,14649,14650,14651],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[14652],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14653],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14654],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14655],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14656],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14657],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14658],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14659],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14660],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14661],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[14662],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14663],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[14664],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14665],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[14666],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14667],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14668],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14669,14670,14671],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14672,14673],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14674],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14675],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14676,14677],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14678],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14679],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[14680],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14681],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14682],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14683],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14684],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14685],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14686,14687,14688,14689,14690],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14691,14692,14693,14694],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[14695],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[14696],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14697],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14698],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14699],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14700],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14701],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14702],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14703],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[14704,14705],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14706,14707,14708,14709],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14710],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14711],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14712,14713,14714],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14715],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14716],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[14717],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14718],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14719],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14720],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14721],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[14722],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14723],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[14724],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14725],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14726],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14727],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14728],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14729,14730],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14731],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14732],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14733],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[14734],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14735],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14736],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14737],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14738],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14739,14740,14741],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[14742],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[14743,14744,14745],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14746],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14747],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14748],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14749,14750,14751],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14752],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14753],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14754],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14755],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14756],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14757],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14758],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14759,14760,14761],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14762],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14763],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14764,14765,14766,14767],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14768],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[14769],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14770,14771,14772,14773],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14774],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14775],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14776],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14777,14778,14779],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14780],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14781],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14782],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14783],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14784],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14785],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14786],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14787],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[14788],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14789],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[14790],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[14791],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[14792],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[14793],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14794,14795,14796],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[14797,14798],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14799],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14800],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14801],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[14802],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14803],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[14804],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14805],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14806],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14807],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14808],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14809],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14810,14811],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14812],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14813],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[14814],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14815],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14816],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14817],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14818,14819,-14518,14820,14821,14822,14823,14824,14825,14826,14827],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14828,14829,-14826,14830,14831,14832,14833],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14834],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14835],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14836],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14837],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14838],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14839],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14840],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[14841],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14842],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[14843],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14844],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14845],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14846],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14847],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[14848],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14849,-14694,14850,14851],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[14852],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14853],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14854],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[14855],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14856],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14857],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[14858],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[14859],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14860],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14861],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[14862],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14863],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[14864],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14865],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14866],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14867],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14868],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14869],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[14870],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14871],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14872],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[14873],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14874,14875,14876,14877,14878],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14879],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14880],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14881],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14882],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14883,14884],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[14885,14886,14887],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14888],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14889],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14890],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14891],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14892],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14893],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14894],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14895],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14896],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[14897],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[14898],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14899],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14900],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[14901],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14902],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14903],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[14904],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14905],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14906],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14907],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[14908],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14909],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14910],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14911],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14912],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14913],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[14914],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[14915],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14916],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14917],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14918],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[14919],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[14920],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[14921],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[14922],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14923],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14924],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14925],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14926],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[14927],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[14928],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[14929],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14930],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[14931],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[14932],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[14933],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14934],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14935],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14936],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[14937],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14938,14939,14940,14941],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14942],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14943,14944],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[14945],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14946],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[14947],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14948,14949],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14950],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14951],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[14952],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14953],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[14954,14955],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[14956],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14957,14958,-14741,14959],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[14960],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14961,14962,14963,14964],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[14965],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14966],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14967],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14968],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14969],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14970],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[14971],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14972,14973],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14974],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[14975],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[14976],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[14977],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14978],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[14979],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14980],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[14981],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[14982],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14983,14984,14985,14986],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[14987,14988],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[14989],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[14990],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[14991],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[14992],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[14993,14994],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[14995],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[14996],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[14997],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[14998],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[14999],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15000],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15001],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15002],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15003],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15004],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15005],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15006],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15007,15008,15009],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15010],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15011],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[15012],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15013],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15014],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15015],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15016],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[15017],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15018],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15019],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15020],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15021,15022,15023,15024,15025],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15026],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15027],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15028],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15029],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15030],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15031,15032],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[15033],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15034],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15035],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15036,15037],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15038],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15039],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[15040,15041,15042,15043],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15044],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15045],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15046,15047,15048],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15049],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15050],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15051],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15052],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15053],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15054],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15055],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15056,15057,15058,15059,15060],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15061,15062,15063],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15064,15065,15066,15067],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15068],"properties":{"zvalue":-25,"depth":255}},{"type":"LineString","arcs":[15069,15070,15071],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15072,15073],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15074],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15075],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15076],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15077,15078,15079,15080,15081],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15082],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15083],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15084],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15085,15086,15087,15088],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[15089],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15090],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15091],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15092],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15093],"properties":{"zvalue":-26,"depth":260}},{"type":"LineString","arcs":[15094,15095,15096,15097,15098],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15099,15100,15101,15102],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15103,15104],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15105],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15106,15107],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15108],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15109],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15110,15111],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[15112],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15113],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15114],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15115],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[15116],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[15117],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15118],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15119],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15120],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15121],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15122,15123,15124,15125,15126,15127,15128,15129,15130],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15131],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15132],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15133],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15134],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15135],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[15136],"properties":{"zvalue":-26,"depth":265}},{"type":"LineString","arcs":[15137],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15138],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15139,15140,15141],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15142],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15143],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15144],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15145],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15146],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15147],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15148],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15149],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15150],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15151,15152,15153],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15154],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15155],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15156],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15157],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15158],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15159],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15160],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15161],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15162],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15163,15164,15165],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15166],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15167,15168],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15169],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15170],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15171],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15172],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15173],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15174],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15175],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15176],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15177],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15178],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15179],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[15180],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15181,15182],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15183],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15184],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15185,15186],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15187,15188,15189,15190,15191,15192,15193,15194],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15195],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15196],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15197],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15198],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15199,15200,15201],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15202],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15203],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[15204],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15205,15206,15207,15208,15209,15210],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15211],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15212],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15213],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15214],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15215,15216],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15217],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15218,15219],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15220],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15221],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15222],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15223],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15224],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[15225],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15226],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15227,15228,15229,15230,15231,15232],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15233],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15234],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15235],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15236],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15237],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15238],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15239],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15240],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15241],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15242],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15243],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15244],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15245],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15246],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15247],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15248],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15249],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15250],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[15251],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15252],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15253],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15254,15255,15256],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15257],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15258],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15259],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15260,15261,15262],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15263],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15264],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15265],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15266],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15267],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15268],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15269],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15270],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15271],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15272],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15273],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15274],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15275],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15276],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15277],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15278],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15279],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15280],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15281],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15282,15283],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15284],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15285],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15286],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[15287],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15288],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15289],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15290],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15291],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15292],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15293],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15294],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15295],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[15296,15297],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15298],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15299],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15300],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15301],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15302],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15303],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15304],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15305],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15306],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15307],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15308,15309,15310,15311],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15312,15313],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15314],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15315],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[15316],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15317],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15318],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15319],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15320,15321,15322],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[15323],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15324],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15325,15326,15327,15328,15329],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[15330],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15331],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15332],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15333],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15334],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15335],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15336],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15337],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15338],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15339],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15340],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15341],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15342],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15343],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15344],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15345],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15346,15347,15348],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15349],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15350],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15351],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15352,15353],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15354],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15355],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15356],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15357],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15358],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15359],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15360],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15361],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15362],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15363],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15364],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15365,15366,15367,15368,15369],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15370],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15371,15372],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15373],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15374],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15375],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15376],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15377],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15378],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15379],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15380],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15381],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15382],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15383],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15384],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15385],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15386],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15387],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15388,15389,15390,15391],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[15392],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15393,15394,15395],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15396],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15397],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15398],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15399],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15400],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15401],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15402],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15403],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15404],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15405],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15406],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15407,15408],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15409],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15410],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15411],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[15412],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15413],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15414,15415],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15416,15417],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15418],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15419],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15420],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15421],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15422],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15423],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[15424],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15425],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15426],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15427],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15428,15429],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[15430],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15431,15432],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15433],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15434],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15435],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15436],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15437],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15438],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15439],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15440],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15441],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15442,15443,15444],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15445],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15446],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15447],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15448],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15449],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15450],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15451],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15452,15453,15454],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15455,15456,15457],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15458],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15459],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15460],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15461],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15462,15463,15464,15465,15466,15467,15468],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15469],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15470],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15471],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15472],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15473],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15474],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15475],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15476],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15477],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15478],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[15479],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15480],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15481],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15482,15483,15484],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15485],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15486,15487,15488],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15489],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15490],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15491],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15492],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15493],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15494,15495],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15496],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15497],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15498],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15499],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15500],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15501,15502,15503,15504,15505,15506,15507,15508],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15509,15510,15511],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15512],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15513],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15514],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[15515],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15516],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15517],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15518,15519,15520,15521],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15522,15523,15524],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15525,15526,15527,15528],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15529,15530],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15531],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15532],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[15533],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15534],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15535],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15536,15537,15538,15539,15540],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[15541],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15542],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15543,15544,15545,-15129,15546,-15127,15547,15548,15549],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15550,15551],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15552],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15553,15554],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15555],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15556],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15557],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15558,15559,-15454],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15560],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15561],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15562,15563],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15564],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15565,15566,15567],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15568],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15569],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15570,15571,15572],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15573],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15574],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15575],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15576],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15577,15578,15579,15580,15581,15582,15583,15584,15585],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15586],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15587],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15588],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15589],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[15590],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15591],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15592],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15593],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15594],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15595],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15596],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15597,15598,15599,15600],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[15601,15602],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15603],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15604],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15605],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15606],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[15607,15608],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15609],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15610],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15611,15612],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15613],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15614],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15615],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15616,15617,15618],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15619,15620,15621,15622,15623,15624],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15625,15626,15627],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15628],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15629,15630],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15631],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15632],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15633],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15634],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15635],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15636],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[15637],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15638,15639,15640,15641],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[15642],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15643],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15644,15645],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15646],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15647],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15648],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15649],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15650],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15651],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15652],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15653],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15654],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15655,15656],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15657],"properties":{"zvalue":-24,"depth":245}},{"type":"LineString","arcs":[15658],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15659],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15660],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15661],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15662],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15663],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15664],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15665],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15666],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15667],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15668],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15669],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15670,15671],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15672],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15673],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15674],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15675,-15567,15676],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[15677],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15678],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15679],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15680],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15681],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15682],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15683],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15684],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15685],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15686],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15687],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[15688],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[15689],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15690],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15691,15692,15693,-15583,15694,15695,15696],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15697],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15698],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15699,15700,15701],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15702],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15703],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15704],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15705],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15706,15707],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15708],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15709],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15710],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[15711],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15712],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15713,15714],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15715],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15716],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15717,15718],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15719,15720],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15721],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15722],"properties":{"zvalue":-25,"depth":250}},{"type":"LineString","arcs":[15723],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15724],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15725],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15726],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[15727],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15728],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15729],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15730,-15256,15731,15732],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15733],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15734],"properties":{"zvalue":-22,"depth":225}},{"type":"LineString","arcs":[15735,15736,15737,15738,15739],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[15740],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15741],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15742],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15743,15744,15745,15746],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15747,15748,15749,15750,15751],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15752],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15753],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15754],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[15755,15756,15757,15758,15759,15760],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[15761],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15762],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15763],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15764],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15765,15766,15767,15768,15769],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15770],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15771],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15772],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15773,15774,15775,15776,15777],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15778],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15779],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15780],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15781],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15782],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15783],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15784],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15785],"properties":{"zvalue":-23,"depth":230}},{"type":"LineString","arcs":[15786,15787],"properties":{"zvalue":-22,"depth":220}},{"type":"LineString","arcs":[15788],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15789,-15322,15790],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[15791],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15792],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15793],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15794],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15795],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15796],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15797],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15798,15799,15800],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15801],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15802],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15803],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15804],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15805],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[15806],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15807],"properties":{"zvalue":-20,"depth":205}},{"type":"LineString","arcs":[15808],"properties":{"zvalue":-23,"depth":235}},{"type":"LineString","arcs":[15809,15810],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15811],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[15812,15813],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[15814],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15815],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15816],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15817],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15818,15819],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[15820],"properties":{"zvalue":-24,"depth":240}},{"type":"LineString","arcs":[15821],"properties":{"zvalue":-20,"depth":200}},{"type":"LineString","arcs":[15822,15823],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15824],"properties":{"zvalue":-21,"depth":215}},{"type":"LineString","arcs":[15825,15826],"properties":{"zvalue":-21,"depth":210}},{"type":"LineString","arcs":[15827],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[15828],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15829],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15830],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15831],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[15832],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15833],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15834],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15835],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15836],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15837],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15838],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[15839],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15840],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15841],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[15842],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15843],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15844],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15845],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[15846],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15847],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15848],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15849],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[15850],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15851],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15852],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15853],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15854],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15855],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15856],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15857],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15858],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15859],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15860],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[15861],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15862],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15863],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15864],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15865],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15866],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15867],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15868],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15869],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15870],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15871],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15872],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15873],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15874],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15875],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15876],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[15877],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15878],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[15879],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15880],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[15881],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15882],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15883],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15884],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15885],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[15886],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15887],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15888],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15889],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15890],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15891],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15892],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15893],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15894],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15895],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15896],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15897],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[15898],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15899],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15900],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15901],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15902],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15903],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15904],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[15905],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15906],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[15907],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15908],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[15909],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15910],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15911],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15912],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15913],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15914],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15915],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15916],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15917],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15918],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15919],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15920],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[15921],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15922],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15923],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15924],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15925],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15926],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15927],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15928],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[15929],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15930],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15931],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15932],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15933],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15934],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15935],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15936],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15937],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15938],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15939],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15940],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15941],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[15942],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15943],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15944],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15945],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15946],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15947],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15948],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15949],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15950],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15951],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[15952],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[15953],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15954],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15955],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15956],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15957],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15958],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15959],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15960],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15961],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15962],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15963],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[15964],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15965],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[15966],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15967],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[15968],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[15969],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15970],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15971],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15972],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15973],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15974],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15975],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[15976],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[15977],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15978],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15979],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[15980],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[15981],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15982],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15983],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[15984],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[15985],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[15986],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[15987],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[15988],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[15989],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15990],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[15991],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[15992],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[15993],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[15994],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[15995],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[15996],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[15997],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[15998],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[15999],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16000],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16001],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16002],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16003],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16004],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16005],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[16006],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16007],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16008],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16009],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16010],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16011],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16012],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[16013],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16014],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16015],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16016],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16017],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16018],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16019],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16020],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16021],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[16022],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[16023],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16024],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16025],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16026],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16027],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16028],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16029],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16030],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16031],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16032],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16033],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16034],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16035],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16036],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16037],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16038],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16039],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16040],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16041],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16042],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16043],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[16044],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16045],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16046],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16047],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16048],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16049],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16050],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16051],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16052],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16053],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16054],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16055],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16056],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16057],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16058],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16059],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16060],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16061],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16062],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16063],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16064],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16065],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16066],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16067],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16068],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16069],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16070],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16071],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16072],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16073],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16074],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16075],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16076],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16077],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16078],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[16079],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16080],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16081],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16082],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16083],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16084],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16085],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16086],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16087],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16088],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16089],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16090],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16091],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16092],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16093],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16094],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16095],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16096],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16097],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16098],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16099],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16100],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16101],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16102],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16103],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16104],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16105],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16106],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16107],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16108],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16109],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16110],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16111],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16112],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16113],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16114],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16115],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16116],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16117],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16118],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16119],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16120],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16121],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16122],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16123],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16124],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16125],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16126],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16127],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16128],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16129],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16130],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16131],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16132],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16133],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16134],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16135],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16136],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16137],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16138],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[16139],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16140],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16141],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16142],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16143],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16144],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16145],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16146],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16147],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16148],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16149],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16150],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16151],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16152],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16153],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16154],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16155],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16156],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16157],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16158],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16159],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16160],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16161],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16162],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16163],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16164],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16165],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16166],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16167],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16168],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16169],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16170],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16171],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16172],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16173],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16174],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16175],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16176],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16177],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16178],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16179],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16180],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16181],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16182],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16183],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16184],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16185],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16186],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16187],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16188],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16189],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16190],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[16191],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16192],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16193],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16194],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16195],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16196],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16197],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16198],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16199],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16200],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16201],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16202],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16203],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16204],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16205],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16206],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16207],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16208],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16209],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16210],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16211],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16212],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16213],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16214],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16215],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16216],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16217],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16218],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16219],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16220],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16221],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16222],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16223],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16224],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16225],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16226],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16227],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16228],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16229],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16230],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16231],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16232],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16233],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16234],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16235],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16236],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16237],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16238],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16239],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16240],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16241],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16242],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16243],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16244],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16245],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16246],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16247],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16248],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16249],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16250],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16251],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16252],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16253],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16254],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16255],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16256,16257,16258],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16259],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16260,16261,16262,16263],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16264,-12342,16265],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16266],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16267,16268],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16269],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16270],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16271,16272],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16273,16274,16275,16276],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16277],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16278],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16279],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16280],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16281],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16282],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16283],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16284],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16285,16286],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16287],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16288],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16289],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16290,16291],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16292],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16293],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16294],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16295],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16296,16297],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16298,16299,16300,16301,16302,16303,16304],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16305,16306,16307,16308],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16309,16310,16311,16312,16313,16314,16315],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16316],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16317],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16318],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16319],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16320],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16321],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16322],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16323],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[16324],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16325],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16326],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16327,16328],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16329],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16330,16331,16332,16333,16334,16335],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16336],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16337],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16338],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16339],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16340,16341,16342],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16343,16344,16345,16346,16347,16348,16349,16350],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16351],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16352],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16353],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16354],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16355],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16356],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16357,16358,16359,16360,16361],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16362],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16363,16364,16365,16366,16367,16368,16369,16370,16371],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16372,16373,16374,16375,-9508,16376,16377],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16378],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16379,16380],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16381],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16382],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16383],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16384],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16385,16386,16387,16388],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16389,16390,16391,16392],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16393],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16394],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16395],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16396],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16397],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16398],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16399],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16400],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16401],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16402,16403],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16404,16405,16406,16407,16408,16409,16410,16411,16412,16413,16414,16415,16416,16417,16418,16419],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16420],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16421],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16422],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435,16436],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16437,16438],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16439],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16440,16441],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16442,16443,16444,16445,16446,16447],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16448,16449],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[16450],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16451],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16452],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16453,16454,16455,16456,16457,16458,16459,16460,16461,16462,16463,16464],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16465,16466,16467,16468,16469,16470],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16471,16472],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16473],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[16474],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16475],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16476],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16477],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16478],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16479,16480],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16481],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16482],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16483],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16484],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16485,16486,16487,16488,16489,16490],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16491,16492],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16493,16494],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16495],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16496],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16497],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16498],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16499,16500,16501,16502,16503,16504,16505,16506,16507],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16508,16509],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16510],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16511],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16512,16513,16514],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16515,16513,16516],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16517,16518,16519,16520,16521],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16522],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16523],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[16524,16525,16526],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[16527,16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16549,16550,16551,16552,16553,-10247,16554,16555,-10244,16556,16557,16558,16559,-10241,16560,16561,16562,16563,16564,16565,16566,16567,-10222,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16580],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16581,16582,16583,16584,16585,16586],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16587,12953,16588],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16589,-16583,16590],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16591,16592,16593,16594],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16595,16596],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16597,16598],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16599,16600,16601,16602,16603],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16604,16605,16606],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16607],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16608],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16609],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16610,16611,16612],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16613],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16614],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16615,16616,16617],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[16618],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16619,16620,16621],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16622,16623],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16624],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16625],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16626],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16627,16628,16274,16629,16630,16631,16632],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16633,16634,16635,16636,16637,16638],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16639,16640,16641,16642,16643,16644],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16645,16646],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[16647],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16648],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16649,16650],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16651,16652,16653],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16654,-16653,16655],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16656,16657,16658],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16659,16660,16661,16662,16663,16664,16665],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16666],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16667],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16668,16669,16670],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16671,16672,16673,16366,16674,16675,16676,16677,16678,16679,16680],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16681],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16682],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16683],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16684],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16685,16686,16687],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16688],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16689,16690],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16691],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16692],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16693],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16694],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16695],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16696],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16697],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16698],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16699],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16700],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16701],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16702],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16703,16704,16705],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16706,16707,16708,16709,16710,16711],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16726],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16727],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16728],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16729],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16730],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16731],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16732],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16733,16734],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16735],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16736],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16737],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16738],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16739],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16740],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16741,16742,16743],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16744],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16745],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16746],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16747,16748],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16749],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16750],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16751,16752],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16753],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16754],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[16755],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16756],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16757],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16758,16759,16760],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16761,16762],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16763],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16764],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16765],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16766],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16767],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16768],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16769],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16770],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16771],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16772],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16773],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16774],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16775],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16776],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16777],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16778],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16779],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[16780],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[16781],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16782],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16783],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16784],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16785],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16786,16787,16788,16789,16489],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16790],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16791],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16792],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16793,16794],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[16795,16796],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[16797],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16798],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16799],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16800],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16801],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16802],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16803],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16804],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16805],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16806],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16807],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16808],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16809],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16810],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16811],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16812],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16813],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16814],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16815],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16816],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16817],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16818],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16819],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16820],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16821],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16822],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16823],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16824],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16825],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16826],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16827],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16828],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16829],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16830],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16831],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16832],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16833],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16834],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16835],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[16836],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16837],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16838],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16839],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16840],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16841],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16842],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16843],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16844],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16845],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16846],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16847],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16848],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16849],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16850],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16851],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16852],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16853],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16854],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16855],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16856],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16857],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16858],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16859],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[16860],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16861],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[16862],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16863],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16864],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16865],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16866],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16867],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16868],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16869],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16870],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16871],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16872],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16873],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16874],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16875],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16876],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16877],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16878],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16879],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16880],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16881],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16882],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16883],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16884],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16885],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16886],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[16887],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[16888],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[16889],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16890],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16891],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16892],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16893],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16894],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16895],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16896],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[16897],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[16898],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16899],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16900],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16901],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16902],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16903],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16904],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16905],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16906],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16907],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16908],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16909],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16910],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16911],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16912],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16913],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16914],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16915],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16916],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16917],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16918],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16919],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16920],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[16921],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16922],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16923],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16924],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16925],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16926],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16927],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16928],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[16929],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16930],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16931],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[16932],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[16933],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[16934],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16935],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[16936],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16937],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16938],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16939],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16940],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16941],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16942],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16943],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16944],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16945],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[16946],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16947],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16948],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16949],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16950],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16951],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16952],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16953],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16954],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16955],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16956],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[16957],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16958],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[16959],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16960],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16961],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16962],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[16963],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16964],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[16965],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[16966],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[16967],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[16968],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[16969],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16970],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16971],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16972],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16973],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[16974],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[16975],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16976],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16977],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16978],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16979],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16980],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[16981],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[16982],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16983],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[16984],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[16985],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16986],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[16987],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[16988],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[16989],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[16990],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[16991],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16992],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[16993],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[16994],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[16995],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[16996],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[16997],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[16998],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[16999],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17000],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17001],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17002],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17003],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[17004],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17005],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17006],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17007],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17008],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17009],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17010],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17011],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17012],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17013],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17014],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17015],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17016],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17017],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17018],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17019],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17020],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17021],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17022],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17023],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17024],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17025],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17026],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17027],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17028],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17029],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17030],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17031],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17032],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17033],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17034],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17035],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17036],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17037],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17038],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17039],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17040],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17041],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17042],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17043],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17044],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17045],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17046],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17047],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17048],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17049],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17050],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17051],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17052],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17053],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17054],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[17055],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17056],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17057],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17058],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17059],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17060],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17061],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17062],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17063],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17064],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17065],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17066],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17067],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17068],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17069],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17070],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17071],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17072],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17073],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17074],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17075],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17076],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17077],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17078],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17079],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17080],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17081],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17082],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17083],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17084],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17085],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17086],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17087],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17088],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17089],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17090],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17091],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17092],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17093],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17094],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17095],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17096],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17097],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17098],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17099],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17100],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17101],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[17102],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17103],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17104],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17105],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17106],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17107],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17108],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17109],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17110],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17111],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17112],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17113],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17114],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17115],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17116],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17117],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17118],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17119],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17120],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17121],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17122],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17123],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17124],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17125],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17126],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17127],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17128],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17129],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17130],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17131],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17132],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17133],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17134],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17135],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17136],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17137],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17138],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17139],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17140],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17141],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17142],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17143],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17144],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17145],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17146],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17147],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17148],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17149],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17150],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17151],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17152],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17153],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17154],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17155],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17156],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17157],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17158],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17159],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17160],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17161],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17162],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17163],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17164],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17165],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17166],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17167],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17168],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17169],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17170],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17171],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17172],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17173],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17174],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17175],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17176],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17177],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17178],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17179],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17180],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17181],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17182],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17183],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17184],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17185],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17186],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17187],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17188],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17189],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17190],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17191],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17192],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17193],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17194],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17195],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17196],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17197],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17198],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17199],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17200],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17201],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17202],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17203],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17204],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17205],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17206],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17207],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17208],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17209],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17210],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17211],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17212],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17213],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17214],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17215],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17216],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17217],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17218],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17219],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17220],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17221],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17222],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17223],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17224],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17225],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17226],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17227],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17228],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17229],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17230],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17231],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17232],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17233],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17234],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17235],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17236],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17237],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17238],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17239],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17240],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17241],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17242],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17243],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17244],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17245],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17246],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17247],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17248],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17249],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17250],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17251],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17252],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17253],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17254],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17255],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17256],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17257],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17258],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17259],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17260],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17261],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17262],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17263],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17264],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17265],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17266],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17267],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17268],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17269],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17270],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17271],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17272],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17273],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17274],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17275],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17276],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17277],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17278],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17279],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17280],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17281],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17282],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17283],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17284],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17285],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17286],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17287],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17288],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17289],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17290],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17291],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17292],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17293],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17294],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17295],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17296],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17297],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17298],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17299],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17300],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17301],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17302],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17303],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17304],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17305],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17306],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17307],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17308],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17309],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17310],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17311],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17312],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17313],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17314],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17315],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17316],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17317],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17318],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17319],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17320],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17321],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17322],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17323],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17324],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17325],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17326],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17327],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17328],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17329],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17330],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17331],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17332],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17333],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17334],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17335],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17336],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17337],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17338],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17339],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17340],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17341],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17342],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17343],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17344],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[17345],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17346],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17347],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17348],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17349],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17350],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17351],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17352],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17353],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17354],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17355],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17356],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17357],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17358],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17359],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17360],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17361],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17362],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17363],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17364],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17365],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17366],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17367],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17368],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17369],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17370],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17371],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17372],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17373],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17374],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17375],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17376],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17377],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17378],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17379],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17380],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17381],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17382],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17383],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17384],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17385],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17386],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17387],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17388],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17389],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17390],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17391],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17392],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17393],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17394],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17395],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17396],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17397],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17398],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17399],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17400],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17401],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17402],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17403],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17404],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17405],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17406],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17407],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17408],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17409],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17410],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17411],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17412],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17413],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17414],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17415],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17416],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17417],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17418],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17419],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17420],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17421],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17422],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17423],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17424],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17425],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17426],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17427],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17428],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17429],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17430],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17431],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17432],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17433],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[17434],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17435],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17436],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17437],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17438],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17439],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17440],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17441],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17442],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17443],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17444],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17445],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17446],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17447],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17448],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17449],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[17450],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17451],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17452],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[17453],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17454],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17455],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17456],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17457],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17458],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17459],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17460],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17461],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17462],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17463],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17464],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17465],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17466],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17467],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17468],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17469],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17470],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17471],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17472],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17473],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17474],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17475],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17476],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[17477],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17478],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[17479],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17480],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17481],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17482],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17483],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17484],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17485],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[17486],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17487],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17488],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17489],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17490],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17491],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17492],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17493],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17494],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17495],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[17496],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17497],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17498],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[17499],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17500],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17501],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17502],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17503],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17504],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17505],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17506],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17507],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17508],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17509],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17510],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17511],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17512],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17513],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17514],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17515],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17516],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17517],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17518],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17519],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17520],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17521],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17522],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17523],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17524],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17525],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17526],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17527],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17528],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17529],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17530],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17531],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17532],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17533],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17534],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17535],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17536],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17537],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17538],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17539],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17540],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17541],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17542],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17543],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17544],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17545],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17546],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17547],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17548],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17549],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17550],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17551],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17552],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17553],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17554],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17555],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17556],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17557],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17558],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17559],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17560],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17561],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17562],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17563],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17564],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17565],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17566],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17567],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17568],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17569],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17570],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17571],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17572],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17573],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17574],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17575],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17576],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17577],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17578],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17579],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17580],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17581],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17582],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17583],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17584],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17585],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17586],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17587],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17588],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17589],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17590],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17591],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17592],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17593],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17594],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17595],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17596],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[17597],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17598],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17599],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17600],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17601],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17602],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17603],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17604],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17605],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17606],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17607],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17608],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17609],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17610],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17611],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17612],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17613],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17614],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17615],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17616],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17617],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17618],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17619],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17620],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17621],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17622],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17623],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17624],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17625],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17626],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17627],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17628],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17629],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17630],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17631],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17632],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17633],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17634],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17635],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17636],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17637],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17638],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17639],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17640],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17641],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17642],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17643],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17644],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17645,17646],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17647,-17646],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17648],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17649],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17650],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17651],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17652],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17653],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17654],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17655],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17656],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17657],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17658],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17659],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17660],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17661],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17662],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17663],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17664],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17665],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17666],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17667],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17668],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17669],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17670],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17671],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17672],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17673],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17674],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17675],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17676],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17677],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17678],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17679],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17680],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17681],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17682],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17683],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17684],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17685],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[17686],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17687],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17688],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17689],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17690],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17691],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[17692],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[17693],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17694],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[17695],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17696],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[17697],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17698],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17699],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17700],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17701],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17702],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17703],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17704],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17705],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17706],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17707],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17708],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17709],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[17710],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[17711],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[17712],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17713],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17714],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17715],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17716],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17717],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17718],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17719],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17720],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17721],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17722],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17723],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17724],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17725],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17726],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17727],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17728],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17729],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17730],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17731],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17732],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17733],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17734],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17735],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17736],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17737],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17738],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17739],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17740],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17741],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17742],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17743],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17744],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17745],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17746],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17747],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17748],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17749],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17750],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17751],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17752],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17753],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17754],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17755],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17756],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17757],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17758],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17759],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17760],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17761],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17762],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17763],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17764],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17765],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17766],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17767],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17768],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17769],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17770],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17771],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17772],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17773],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17774],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17775],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17776],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17777],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17778],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17779],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17780],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17781],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17782],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17783],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17784],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17785],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17786],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17787],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17788],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17789],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17790],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17791],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17792],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17793],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[17794],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17795],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17796],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17797],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17798],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17799],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17800],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17801],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17802],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17803],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17804],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17805],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17806],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17807],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17808],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17809],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17810],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17811],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17812],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17813],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17814],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[17815],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17816],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17817],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17818],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17819],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17820],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17821],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17822],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17823],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17824],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17825],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17826],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17827],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17828],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17829],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17830],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17831],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17832],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17833],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17834],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17835],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17836],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[17837],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17838],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17839],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17840],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17841],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17842],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17843],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[17844],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17845],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17846],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17847],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17848],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17849],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17850],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17851],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17852],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17853],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17854],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17855],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17856],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17857],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17858],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[17859],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17860],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17861],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17862],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[17863],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17864],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17865],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17866],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17867],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17868],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17869],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[17870],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17871],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17872],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17873],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17874],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17875],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17876],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17877],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17878],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17879],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17880],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17881],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17882],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17883],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17884],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17885],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17886],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17887],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[17888],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17889],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17890],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17891],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17892],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17893],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17894],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17895],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17896],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[17897],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17898],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[17899,17900,17901,17902],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17903,17904,17905],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17906,17907,17908,17909],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17910,17911,17912,17913],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17914],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17915],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[17916],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[17917,17918],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17919],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17920],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17921,17922,17923,17924,17925,17926,17927,17928,17929,17930,17931,17932,17933,17934,17935,17936,17937,17938],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17939],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17940],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[17941],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17942],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17943],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17944,17945,17946],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17947,17948,17949,17950,17951,17952],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[17953],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[17954],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[17955],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[17956],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[17957,17958,17959,17960],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17961],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17962],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17963],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[17964],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[17965],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[17966,17967,17968],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17969,17970,17971,17972,17973,17974,17975,17976,17977,17978,17979,17980,17981,17982,17983,17984,17985,17986,17987,17988],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[17989],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[17990],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[17991],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[17992],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[17993,17994,17995,17996,17997,17998],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[17999,18000,18001,18002,18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18014,18015,18016,18017,18018,18019,18020,18021],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18022],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18023],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[-8952,18024,18025,18026,18027,18028,18029,18030,18031,18032,18033,18034,18035,18036,18037,18038,18039,18040,18041,18042],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18043,18044],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18045,18046,18047,18048,18049,18050,18051,18052,18053,18054,18055,18056],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18057,18058,18059,18060],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18061],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18062],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18063,18064,18065,18066],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18067,18068,18069,18070,-18016,18071,18072,18073,18074,18075,18076,18077,18078,18079,18080,18081,18082,18083,18084],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18085],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18086],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18087],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18088,18089,18090,18091,18092,18093,18094,18095,18096,18097],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18098,18099,18100,18101],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18102],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18103],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18104],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18105],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18106],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18107],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18108,18109,18110,18111,18112,16454,18113,-18077,18114,18115,18116,18117,18118,18119,18120,18121,18122,18123,18124,18125,18126,18127,18128],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18129,18130,18131,18132,18133],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18134],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18135],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18136],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18137],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18138,18139],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18140],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18141],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18142],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18143],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18144,18145,18146,18147,18148,18149,18150,18151,18152,18153,18154,18155],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18156,18157],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18158],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18159],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18160],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18161,18162],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18163],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18164],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[18165],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18166],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18167],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18168],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18169],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18170],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18171,18172,18173,18174,18175,18176],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18177],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18178,18179],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[18180,18181,18182,18183,18184,18185,18186,18187,18188,18189,18190,18191,18192,18193],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[18194],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18195],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18196],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18197,18198,18199,18200,18201,18202],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18203,18204],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18205,18206],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18207],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18208],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18209],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18210],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18211],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18212],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18213],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18214],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18215],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18216],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18217],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18218,18219],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18220,18221,18222,18223,18224,18225,18226],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18227],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18228],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18229,18230],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18231,18232,18233],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18234,18235,-18131,18236],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18237],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18238],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18239],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18240],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18241],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18242],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18243],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18244],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18245],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18246],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18247],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18248,18249,18250,18251,18252,18253],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18254,18255,18256,18257,18258,18259,18260,18261],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18262,18263,18264,18265],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18266,18267,-18265,18268,18269],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18270],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18271],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18272],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18273],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18274],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18275],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18276],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18277],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18278],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18279],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18028,18280,18281,18282,18283,18284,18285,18286,18287,18033,18288,18289,18290,-17972,18291,18292,18293],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18294,18295,18296,18297],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18298,18299,18300,18301,18302,18303],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18304],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18305],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18306],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18307],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18308],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18309],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18310],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18311],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18312],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18313],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18314],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18315,18316,18317,18318],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18319],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18320],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18321],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18322],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18323],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18324],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18325],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[18326],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18327],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18328],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18329],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18330],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18331,18332,18333,18334],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18335,18336,18337],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18338],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18339],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18340],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18341],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18342],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18343,18344,18345,18346,18347,-18147,18348],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18349],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,11164,18361,18362,11167,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18386],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18387],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18388],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18389],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18390],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,-18089],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18402,18403,18404,18405],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18406],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18407,18408],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18409,18410,-18382,18411,18412,-18376,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18442,18443,18444,18445,18446,16429,18447,18448,18449,18450,18451,18452,18453],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18454],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18455],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18456],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18457],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18458,18459,18460],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18461,18462,18463,18395,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18479,18480,18481,18482,18483],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18484],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18485],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18486,18487,18488],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18489,18490,18491,18492,18493],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18494,18495,18496,18497,18498,18499],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18500,-18496,18501],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18502,-12167,18503,18504,18505],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18506,18507,18508,18509,18510,18511,18512,18513],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18514,18515,18516,18517,18518,18519,18520,18521,18522,18523,18524,18525,18526,18527,18528,18529,18530,18531],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18532,18533,18534,18535,18536,18537,18538,18539,18540,18541,18542,18543,18544,18545,18546,18527,18547,18548,18549,18550],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18551],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18552],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18553],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18554,18555,18556],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18557],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18558,18559],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18560,18561,18562,18563,18564,18565,18566,18567,18568,18569,18570,18571],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18572,18573,18574,18575],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18576],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18577],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18578],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18579],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18580],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18581],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18582],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18583],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18584],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18585],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18586],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18587],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18588],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18589,18221,18590,18591,18592],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18593],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18594,18595],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18596],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18597],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18598],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18599],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18600],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18601],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18602],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18603],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18604],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18605],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18606],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18607],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18608],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18609],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18610],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18611],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18612],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18613],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18614],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18615],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18616],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18617],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18618],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18619],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18620],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18621],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18622],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18623],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18624],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18625],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18626],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18627],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18628],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18629],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18630],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18631],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18632],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18633],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18634],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18635],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18636],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18637],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18638],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18639],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18640],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18641],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[18642],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18643],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18644],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18645],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18646],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18647],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18648],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18649],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18650],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18651],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18652],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18653],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18654],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18655],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18656],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18657],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18658],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18659],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18660],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18661],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18662],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18663],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18664],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18665],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18666],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18667],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18668],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18669],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18670],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18671],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18672],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18673],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18674],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18675],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18676],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18677],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18678],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18679],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18680],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18681],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18682],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18683],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18684],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18685],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18686],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18687],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18688],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18689],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18690],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18691],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18692],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18693],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[18694],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18695],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18696],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18697],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18698],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18699],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18700],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18701],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18702],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18703],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18704],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18705],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18706],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18707],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18708],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18709],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18710],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18711],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18712],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18713],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18714],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18715],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18716],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18717],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18718],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18719],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18720],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18721],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18722],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18723],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18724],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18725],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18726],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18727],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18728],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18729],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18730],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18731],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18732],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18733],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18734],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18735],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18736],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18737],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18738],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18739],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18740],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18741],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18742],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18743],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18744],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18745],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18746],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18747],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18748],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18749],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18750],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18751],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18752],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18753],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18754],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18755],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18756],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18757],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18758],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18759],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18760],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18761],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18762],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18763],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18764],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18765],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18766],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18767],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18768],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18769],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18770],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18771],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18772],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18773],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18774],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18775],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18776],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18777],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18778],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18779],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18780],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18781],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18782],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18783],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18784],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18785],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18786],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18787],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[18788],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18789],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18790],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18791],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18792],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18793],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[18794],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18795],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18796],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18797],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18798],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18799],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18800],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18801],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18802],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18803],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18804],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18805],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18806],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18807],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18808],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[18809],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18810],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18811],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18812],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18813],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18814],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18815],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18816],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18817],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[18818],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18819],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18820],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18821],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18822],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18823],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18824],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18825],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18826],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18827],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18828],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18829],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18830],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18831],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18832],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[18833],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18834],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18835],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18836],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18837],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18838],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18839],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18840],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18841],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18842],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[18843],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18844],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[18845],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[18846],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18847],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18848],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18849],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18850],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18851],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18852],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18853],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18854],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18855],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18856],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18857],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18858],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18859],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18860],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18861],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18862],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18863],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18864],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18865],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18866],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18867],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18868],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18869],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18870],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18871],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18872],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[18873],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18874],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18875],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[18876],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18877],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18878],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18879],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18880],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18881],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18882],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18883],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18884],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18885],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18886],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18887],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18888],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18889],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18890],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18891],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18892],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18893],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[18894],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18895],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18896],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18897],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[18898],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18899],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[18900],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18901],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18902],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18903],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18904],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18905],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18906],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18907],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[18908],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[18909],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18910],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18911],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18912],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18913],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18914],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18915],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18916],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18917],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18918],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[18919],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18920],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18921],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18922],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18923],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18924],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18925],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18926],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18927],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18928],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18929],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[18930],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18931],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18932],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18933],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18934],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18935],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18936],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18937],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18938],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18939],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18940],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18941],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18942],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18943],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18944],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18945],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18946],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[18947],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18948],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18949,18950],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18951],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18952],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18953],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18954],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18955],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[18956],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18957],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[18958],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[18959],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18960],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18961],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18962],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18963],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18964],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18965],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[18966],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18967],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[18968],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18969],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[18970],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[18971],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[18972],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18973],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18974],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[18975],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18976],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[18977],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[18978],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18979],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18980],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[18981],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18982],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18983],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[18984],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[18985],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[18986],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[18987],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18988],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[18989],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[18990],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18991],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[18992],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[18993],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[18994],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[18995],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[18996],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18997],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[18998],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[18999],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19000],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19001],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[19002],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19003],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19004],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19005],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19006],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19007],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19008],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19009],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19010],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19011],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19012],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19013],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19014],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[19015],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19016],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19017],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19018],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19019],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19020],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19021],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19022],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19023],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[19024],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19025],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19026],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19027],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19028],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19029],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19030],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19031],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19032],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19033],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19034],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19035],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19036],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19037],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19038],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19039],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[19040],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19041],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19042],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[19043],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19044],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19045],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19046],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19047],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19048],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19049],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19050],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19051],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19052],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19053],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19054],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19055],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19056],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19057],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19058],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19059],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19060],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19061],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19062],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19063],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19064],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19065],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19066],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19067],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19068],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19069],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19070],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19071],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19072],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19073],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19074],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19075],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19076],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19077],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19078],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19079],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19080],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19081],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19082],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19083],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19084],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19085],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19086],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19087],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19088],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19089],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19090],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19091],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19092],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19093],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19094],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19095],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19096],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[19097],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19098],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19099],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19100],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19101],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19102],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19103],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19104],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19105],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19106],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19107],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19108],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19109],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19110],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19111],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19112],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19113],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19114],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19115],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19116],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19117],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19118],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19119],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19120],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19121],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19122],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19123],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19124],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19125],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19126],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19127],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19128],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19129],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[19130],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[19131],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19132],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19133],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19134],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19135],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19136],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19137],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19138],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19139],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19140],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19141],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19142],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19143],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19144],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19145],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19146],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19147],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19148],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19149],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19150],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19151],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19152],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19153],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19154],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19155],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19156],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19157],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[19158],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19159],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19160],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19161],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[19162],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19163],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19164],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19165],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19166],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19167],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19168],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19169],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[19170],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[19171],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19172],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19173],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19174],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19175],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19176],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19177],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19178],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19179],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19180],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19181],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19182],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19183],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[19184],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19185],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19186],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19187],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19188],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[19189],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19190],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19191],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19192],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19193],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19194],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19195],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19196],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19197],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19198],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[19199],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19200],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19201],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19202],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[19203],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19204],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19205],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19206],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19207],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19208],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19209],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19210],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19211],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19212],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19213],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19214],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19215],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19216],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[19217],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19218],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19219],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19220],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19221],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19222],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19223],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19224],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19225],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19226],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19227],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19228],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19229],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19230],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19231],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19232],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19233],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19234],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19235],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[19236],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19237],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19238],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19239],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19240],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19241],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19242],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19243],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19244],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19245],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[19246],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19247],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19248],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19249],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19250],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19251],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19252],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19253],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19254],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19255],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19256],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19257],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19258],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19259],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19260],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19261],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19262],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19263],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19264],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19265],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19266],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[19267],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[19268],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[19269],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19270],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19271],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19272],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19273],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[19274],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19275],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19276],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19277],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19278],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19279],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19280],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19281],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19282],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19283],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19284],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19285],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19286],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19287],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19288],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19289],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19290],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[19291],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19292],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19293],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19294],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19295],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19296],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19297],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19298],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19299],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19300],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19301],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19302],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19303],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19304],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19305],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19306],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19307],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19308],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19309],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19310],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19311],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19312],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19313],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19314],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19315],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[19316],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[19317],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19318],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19319],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19320],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19321],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19322],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[19323],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[19324],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19325],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19326],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[19327],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[19328],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[19329],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19330],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19331],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19332],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19333],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19334],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19335],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[19336],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19337],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19338],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19339],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19340],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19341],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19342],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19343],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19344],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[19345],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[19346,19347,19348],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19349,19350,19351,19352,19353,19354,19355,19356,19357],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19358,19359,19360,19361,19362,19363,19364,19365,19366,19367,19368,19369,19370,19371,19372,19373,19374,19375,19376,19377,19378,19379,19380,19381,19382,19383,19384],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19385,19386,19387,19388,19372,19373,19374,19389,19390,19381,19391,19392,19393],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19394,19395],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19396,19397,19398,19399,19400,19401,19402,19403,19404],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19405,19406,-16506,19407,19408,19409,19410],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[19411,19412],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19413],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[19414],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[19415,19416,19417,19418],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[19419,19420,19421],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19422,19423,19424,19425,19426,19427],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[19428,19429],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19430],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19431],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19432,19433,19434,19435,19436,19437,19438,19439,19440,19441,19442,19443,19444,19445,19446,19447,19448,19449,19450,19451,19452,19453],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19454,19455,19456,19457,19458,19459,19460,19461,19462,19463,19464,19465,16723,19466],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[19467,19468,19469],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19470],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19471,19472,19473,19474,19475,19476,19477],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[19478,19479,19480,19481,19482,19483,19484,19485,19486,19487,19488,-19474,19489,19490,19491],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19492,19493,19494,19495,19496],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19497,19498,19499],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19500,19501,19502],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19503,19504],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19505],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19506],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[19507,19508,19509,19510,19511,19512,19513,19514],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19515,19516,19517,19518],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19519,19520],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[19521],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19522],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19523,19524,19525,19526,19527,19528],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19529],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19530],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[19531],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19532],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19533],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19534],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19535,19536,19537,19538],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[19539,19540,19541,19542],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19543,19544,19545,19546,19547],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19548,19549,19550,19551,19552,19553,19554,19555,19556,19557],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19558],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19559,19560,19561],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19562,19563,19564,19565,19566,19567,19568,19569,19570],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19571,19572],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19573,19574,19575,19576,19577],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[19578,19579],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[19580],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19581],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[19582,19583,19584,19585,19586,19587,19588,19589,19590,19591,19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604,19605,19606,19607,19608,19609,19610,19611,19612,19613,19614,19615,19616,19617,19618,19619,19620,19621,19622,19623,19624,19625,19626,19627,19628,19629,19630,19631,19632,19633,19634,19635,19636,19637,19638,19639,19640,19641,19642,19643,19644,19645,19646,19647,19648,19649,19650,19651,19652,19653],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19654,19655,19656,19657,19658,19659],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19660,19661],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19662,19663,19664,19665,19666,19667,19668,19669,19670,19671,19672],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19673],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19674],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19675],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[19676],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19677],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19678],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19679,19680,19681,19682,19683],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19684,19685,19686],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19687],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19688],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19689,19690,19691],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19692,19693],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19694],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19695],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[19696],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19697],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19698],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19699,19700,19701,19702,19703,19704],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[19705,19706,19707,19708,19709,19710,19711,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726,19727,19728,19729,19730,19731,19732,19733,19734,19735,19736,19737,19738,19739,19740,-19741,19741,19742,19743,19744,19745,19746,19747,19748,19749,19750,19751,19752],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19753,19754,19755,19756,19757,19758,19759],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[19760,19761,19762,19744,19763,19764,19765,19766,19767,19768,19769],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[19770,19771,19772,19773,19774,19775,19776,19777,19778,19779,19780,19781,19782,19783],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19784,19772,19773,19785,19786,19779,19780,19787],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19788,19789,19773,19790,19791,19792],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[19793,-19723,19794,19795],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19796,19797,19798,19799,19800,19801,19802],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[19803,19804,19805],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[19806,19807,-19807],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19808],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19809,19810,19811,19812,19813],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19814],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[19815],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19816,19817,19818],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19819],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[19820,19821,19822],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19823],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[19824],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[19825],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19826],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19827,19828],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19829],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[19830,19831,19832,19833,19834],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[19835,19836,19837,19838,19839,19840,19841],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[19842,19843,19844,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,19859,19860,19861,19862,19863,19864,19865,19866,19867,19868,19869,19870,19871,19872,19873,19874,19875,19876,19877,19878,19879,19880,19881,19882,19883,19884,19885,19886,19887,19888,19889,19890,19891,19892,19893,19894,19895,19896,19897,19898,19899,19900,19901,19902,19903,19904,19905,19906,19907,19908,19909,19910,19911,19912,19913,19914,19915,19916,19917,19918,19919,19920,19921,19922,19923,19924,19925,19926,19927,19928,19929,19930,19931,19932,19933,19934,19935,19936,19937,19938,19939,19940,19941,19942,19943,19944,19660,19945,19946,19947,19948,19949,19950,19951,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19962,19963,19964,19965,19966,19967,19968,-19641,19969,19970,19971,19972,19973,19974,19975,19976,-19636,19977,19978,-19630,-19629,19979,-19624,19980,19981,19982,19983],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[19984,-19723,19794,19985,-19721,19986,19987,19988,19989,19990,-19726],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[19991,19992,19993,19994,19995,19996,19997,19998,19999,20000,20001,20002,20003,20004,20005,20006,20007,20008,20009,20010,20011,20012,20013,20014,20015,20016,20017,20018,20019,20020,20021,20022,20023,20024,20025,20026,20027,20028,20029,20030,20031,20032,20033,20034,20035,20036,20037,20038,20039,20040,20041,20042],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[20043,20044,20045,19771,20046,20047,20048,20049,20050,19779,19780,20051,20052,20053],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[20054,20055,20056,20057,20058,20059,20060,20061,20062,20063,20064,20065,20066,20067,20068,20069,20070,19754,20071],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[20072,20073,20074,20075,20076,20077,20078,20079,20080,20081,20082,20083,20084,20085,20086,20087,20088,20089,20090,20091,20092,20093,20094,20095,-20070,20096,20097,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20110,20111,20112,20113,20114,20115,20116,20117,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,20128,20129,20130,20131,20132,20133,20134,20135,20136,20137,20138,20139,19590,20140,19592,20141,20142,20143,20144,20145,20146,20147],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[20148,20149,20150,20151,20152,20153,20154,20155,20156,20157,20158,20159,20073,20160,20161,20162,20163,20164,-19737,20165,20166,20167,20168,20169,20170,20171,20172,20173,20174,20175,20176],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[20177,20178,20179,20180,20181,20182,20183,20184,20185,20186,20187,20188,20189,20190,20191,20192],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[20193,20194,20195,20196,20197,20198,20199,20200,20201,20202,20203,-20137,20204,20205,20206,20207,20208,20209,20210,20211,20212,20213,20214,20215,20216,19718,20217,-20128,20218,20219,20220,19988,19989,-20121,19727,20221,-20119,-20118],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[20222,20223,20224,20225,20226,20227,20228],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[20229,20230,20231,20232,20233,20234],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[20235,20236,20237,20238,20239],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[20240],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20241,20242,20243,20244,20245,20246,20247,20248,20249,20250,20251,20252,20253,20254,20255,20256,20257,20258,20259,20260,20261,20262,20263,20264,20265,-20198,20147,-19896],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20266,20267,20268,20269,20270,20271,20272,20273,20274,20275,20276,20277,20278,20279,20280,20281,20282,20283,20284],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[20285,20286,20287,20288,20289,20290,20291,20292,20293,20294,20295],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[20296,20297,20298],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[20299,20300],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[20301,20302,20303],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[8511,8425,20304,20305,20306,20307,20308,20309,20310,20311,20312,20313,8517,20314,8519,20315,20316],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[20317,20318,20319],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[20320,20321,20322,20323],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[20324],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[20325,20326,20327,20328,20329,20330],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20331,20332,20333,20334,20335,20336,20337],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20338,20339,20340,20341,20342,19628,20343,20344,20345,20346,20347,20348],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[20349,20350,20351,20352,20353,20354,20355,20356,20357,20278,20358,20359],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[20360,20361,20362,20363,20364,20365,20366,20367,20368,20369,20370,20371,20372,20373,20374,20375,20376,20377,20378,20379,20380,20381,20382,20383,20384,20385,20386,20387,20388,20389,20390],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[20391,20392,19716,20393,19705,20394],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[20395],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[20396],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[20397],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20398,20399,20400,20401,20402,20403,20404,20405,20406,20407,20408,20409,20410],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[20411,20412,20413,20414,20415,20416,-20404,20417,-20401,20418],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[20419,20420,20421,20422,20423,20424,20425,20426,20427],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[20428,20429,20430,20431,20432,20433],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[20434,20435,20436],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[20437,20438,20439,20440,20441,20442,20443,20444,20445,20446],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[20447,20448],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[20449,20450,20451],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20452],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20453],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20454],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20455],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20456],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[20457],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[20458],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20459],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[20460],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20461],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[20462],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[20463],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[20464],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[20465,20466],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[20467,20468],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[20469],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[20470,20471],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[20472,20473,20474,20475,20476,20477],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20473,20501,20502,20503],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[20504,20505,20506],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[20507],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[20508,20509,20510,20511,20512,20513,20514,20515,20516],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[20517,20518,20519,20520,20521,20522,20523],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[20524,20525,20526,20527,20522,20528],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[20529],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[20530],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[20531],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[20532],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20533,20534,20535,20536],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20537,20538,20539,20540],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20541],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20542,20543,20544,20545,20546,20547],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[20548,20549,20550,20551,20552,20546,20553],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[20554],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[20555],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[20556,20557,20558,20559,20560,20561],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[20562],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[20563,20564,20565,20566],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[20567,20568,20569,20570,-8046,20571,20572,20573,20574,20575],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[6542,20576,20577,20578,20579,20580,20581,20582,20583,20584,20585,20586,20587,20588,20589,20590,7212,20591,20592,20593,20594,20595,20596,20597,7219,20598,20599,20600,-7132,20601,20602,20603,20604],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[20605,20606,20607,20608,20609,19726,19727,20221,20610,20611,20612,20613,20614,20615,20616,20617,-20113,20618,20619,20620,-20111,20621,19845,20622,20623,-20105,20624,20062,20625,19849,19850,20626,20627,20628,20629,20630,20631,20632,20633,20634,20635,20636,20637,19861,-20094,20638,20639,20640,20641,20642,20643,20644,20645,20646,20647,20648,20649,20650,20651,20652,20653,20654,-20161,-20074,20655,20656,20657,-20157,20658,20659,19889,20660,-20186,20661,20662,20663,20664],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20665,20666,20667,20668,20669,20670,-19606,20671,20672,20673,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,20693,20694,20695,20696,20697,20698,20699,20700,20616,20617,20701,20702],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[20703,20704],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20705],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20706],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[20707],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[20708,20709,20710,20711,20712,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[20723,20724,20725,20726,20727,20728,20729,20730,20731,20732],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20733,20734,20735,20736,20737,20738,20739,20740],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[20741],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[20742,20743,20744,20745,20746,20747],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[20748,20749],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[20750,20751],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[20752,8424,8425,20753,20754,20755,20756,8428,20757,20758,20759,20760,20761,8433,20762,20763,8535,20764,9280,20765,20766,20767],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[20768],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[20769],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[20770,19540,20771,20772],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[20773],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[20774,20775,-10357,20776,20777,20778,20779,20780,20781,20782,20783,-5596,20784,20785,20786,20787,20788],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[5590,5591,20789,20790,20791,20792,20793,20794,20795,20796],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[20797],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[20798,20799,20800,20801,20802,20803,20804,20805,20806,20807,20808,20809,20810,20811,20812,20813],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[20814,20815,20816,20817,20818,20819,20820,20821,20822,20823,20824,20825,20826,20827,20828,20829,20830,20831,20832,20833,20834,20835,20836,20837,20838,20839,20840,20841,20842,20843,20844,20845,20846,20847,20848,20849,20850,20851,20852,20853,20854,20855],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[20856,20857,20858,20859,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20875,20876,20877,20878,20879,20880,20881],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[20882,20883,-20813,20884,20885,20886,20887,20888,20889,20890,20001,20891,20892,20893,20894,20895,20896,20897,20898,20899,20900,20016,20901,20902,20903,20904,20905,20906,20907,20908,20909,20910,20911,20912,20913,20914,20915,20916,20917,20918,20919,20920,20036,20921,19376,20922,20923,20924],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[20925],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20926],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[20927],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[20928,20929,20930,20931,20932,20933,20934,20935,20936,20937,20938,20939,20940,20941,20942],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[20943,20944],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[20945,20946,20947,20948,20949],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[20950,20951,20952,20953,20947,20954,20955,20956,20957,20958],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[20959,20960,20961],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[20962,20963,20441,20964,-20737,20965,20966,20967,20968,20969],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[20970,20971,20972,20973,20974,20975,20976,20977,20978,20979,20980,20981,20982,20983,20984,20985],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[-20797,20986,20987,20988,20989,20990,20991,20992,20993,20994,20995,20996,20997,20998,20999,21000,21001,-20979,21002,21003,21004,21005,21006],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21007,21008,21009,21010,21011,21012,21013,20994,21014,21015,21016,21017,21018,21019,21020,21021,21022,21023,21024,21025,21026,21027],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21028,21029],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21030,21031,21032,21033],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21034,21035],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21036],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21037],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[21038,21039,21040,21041,6673,21042,21043,21044,21045,21046],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[21047,21048,21049,7455,21050,21051,21052,21053,21054,21055,7460,21056,21057,21058],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[21059],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21060,21061],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[21062,-19512,21063],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[21064],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[21065],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21066,21067,21068,21069,21070,21071],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[21072,21073,21074,21075,21076,21077,21078,21079,21080,21081,21082,21083,21084,21085,21086,21087,21088,21089,21090,21091,21092,21093,21094],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21095,21096,21097,21098,-21089,21099,21100,21101,21102,21103,21104,21105,-21082,21106,21107,21108,21109,21110,21111,21112,21113],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21114,21115,21116,21117,-21111,21118,21119,21120,21121,21122,21123,21124,21125,-21107,21126,21127,21128,21129,21130,21131,-21103,21132,21133,21134,21135,21136,21137,21138,21139,21140,21141,21142,21143,21144,21145],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[21146,21147,21148,21149,21122,21150,21125,21151,21127,21152,21153,-21103,21154,21155,21156,21157,21158,21159,21160,21161,21162,21163,21164,21165,21166,21167,21168,21169,21170],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[21171,21172,21173],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[21174,21175,21176,21177,21178,21179,21180,21181,21182,21183,21184,21185,21186,21187,21188,21189,21190,21191,21192,21193,21194,21195],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21196,21179,21197,21198,21199,21200,21201,21202,21183,21184,21203,21186,21204,21205,21206,21207,21208,21209,21210,21211,21212,21213,21214,21215,21216,-19577,21217,21218,21219,21220,21221,21222,21223,21224,21225,21226,21227,21228,21229],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21230,21231,21232,21233,21234,21235,21236,21237,21238,21239,21240,21241,21242,21243,21244,21245,21246,21247,21248,21249,21250,21251,21252,21253,21254,21255,21256,21257,21258,21259,21260,21261,21262,21263,21264],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[21265,21266,21267,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21281,21282,21283,21284,21285,21286,21287],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21288,21289,21290,21291,21292,21293,21294,21295,21296,21297,21298,21299,21300,21301,21302,21303,21304,21305,21306,21307,21308,21309,21310,21311],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[21312,21313,21314,21315,21316,21317,21318,21319,21320],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[-21293,21321,21322,21323,-21290,21324,21325,21326,21327,21328,-21259,21329,21330,-21255,21331,-19813,21332,21333,-21252,21334,21335,21336,21337,21338,21339,21340,21341,21342,21343,21344,21345,21346,21347,21348],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21349,21350],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[21351,21352,21353,21354,21355],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[21356,21357,21358,21359,21360],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[21361],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21362],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21363,21364,21365,21366],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21367,21368,21369,21370,-20878,21371,21372,21373,21374,21375,21376,20828,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,-20865,21389,21390,21391,21392,21393,21394,21395,20850,20851,21396,21397,21398,21399,21400,-20811,-20810,21401,-20808,21402,21403],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[21404,21405,21406,21407],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[21408,21409,21410,21411,21412,21413,21414,-21309,21415,21416,21417,21418,21419,21420,21421,-21296,-21295,-21294],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21422,21423,21424,21425,21426,21427,21428],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[21429],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[21430,21431,21432,21433,21434,21435,21436,21437],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[21438,21439,21440,21441],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[21442,21443,21444,21445,21446,21447,21448,21449,21450,21451,21452,21453],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[21454,21455,21456,21457,21458,21459,21460,21461,21462,21463,21464,-21447,21465,21466,21467,21468],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[21469],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[21470],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[21471],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21472,21473,21474,21475],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[21476,21477],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[21478,21479],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[21480,21481,21482,21483,21484,21485,21486,21487,21488,21489,21490,21491,21492,21493,21494,21495,21496,21497,21498,21499,21500,21501,21502,21503,21504,21505,21506,21507,21508,21509,21510,21511,21512,21513,21514,21515,21516,21517,21518,21519,21520,21521,21522,21523,21524,21525,21526,21527,21528,21529,21530,21531,21532,21533,21534,21535,21536,21537,21538,21539,21540,21541,21542,-21226],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[21543,21544,21545,21546,21547,21548],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[21549,21550,21551,21552,21553,21554,21555,21556,21557,21558,21559,21560,21561,21562,21563,21564,21565,21566,21567,21568,21569,21570,21571,21572,21573,21574,21575,21576,21504,21577],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[21578],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[21579],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[21580],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21581],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21582],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21583],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[21584],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21585],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21586,21587],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21588,21589],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21590,21591,21592,21593,21594,21595,21596,21597,21598],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21599],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21600,21601,21602,21603,21604],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21605],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[21606],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[21607],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[21608,21609],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21610],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21611],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21612],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21613,21614,21615],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[21616,21617,21618,21619,21620,21621,-20565],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21622,21623],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21624],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21625,21626,21627,21628,21629,21630,21631],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21632,21633],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[21634,21635,21636,21637,21638],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21639],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[21640,21641],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[21642],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[21643],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[21422,21644,21645,21646,21647,21648,4634,21649],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[21650],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[21651,21652],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[21653],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[21654,21655,21656,21657,21658,21659,21660,21661,21662,21663,21664],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[21665,21666,21667,21668,21669,21670,21671,21672,21673,21674,21675,21676],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[21677,21678,21679],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[21680],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[21681],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[21682],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[21683],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[21684],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[21685],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[21686,21687,21688,21689,21690,21691,21692,21693,-20861,20715,21694,21695,21696,21697,21698,21699,21700,21701,21702,21703,21704,21705,21706,21707],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21708,21709],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21710,21711,21712,21713,21714,21715,21716,21717],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21718,21719,21720,21721,21722,21723,21724,21725,21726,21727,21728,21729,21730],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21731,21732,21733,21734,21735,21736,21737,21738,21739,21740,21741,21742,21743,21744,21745,21746,21747,21748],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21749,21750,21751,21752,21753,21754],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21755],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21756],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21757],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21758,21759,21760,21761],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21762,21763,21764,21765,21766,21767,21768,21769,21770,21771,21772,21773,21774,21775,21776,21777],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21778,21779],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21780],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[21781,21782,21783,21784,21785,21786,21787,21788,21789],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[21790],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[21791,21792,21793,21794,21795],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[21796,21797,21798,21799,21800,21801,21802,21803,21804,21805,21806,-20935,21807,21808,21809,21810,-20932,21811,21812,21813],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[21814],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[21815],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[21816],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[21817,21818,21819,21820,-21620,21821,21822,21823,21824,21825],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21826,21827,21760,21828],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21829,21830,21831],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21832,21833,21834,21835],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21836,21837],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21838,21839,21840,21841,21842,21843,21844,21845,21846,21847,21848,21849,21850,21851,21852,21853,21854,21855,21856,-21089,21857,21858,21859,21860,21861,21862,21863,21864,21865,21866,21867,-21079,21868,-21077,21869,21870,21871,21872,21873,21874,21875,21876],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21877,21878,21879,21880,21881,21882,21883],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21884,21885,21886,21887,21888],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21889,21890,21891,-21882,21892,21893,21894],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21895],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21896],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[21897,21898],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21899,21900,21901,21902],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[21903,21904,21905,21906,21907,21908,21909],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[21910,21911,21912,21913,21914,21915,-20198,-20197,20178,20179,20180,21916,21917,21918,20152,21919,-19748,20190,20154,20155,21920,-19743,21921,21922,21923,21924,20159,21925,21926,20162,21927,21928,20047,21929,20171,21930,21931,21932,21933,21934,-20072,21935,21936,21937,21938,21939,-19734,21940,21941,-20059,21942,21943,20118,20119,-19727,21944,-19989,21945,21946,21947,21948,21949,21950,21951,21952,-20211,21953,21954,-20207,21955,21956,21957,21958],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[21959],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[21960,-20179,21961],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[21962,21963],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21964],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[21965,21966,21967,21968,21969,21970,21971],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[21972,21973,21974],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[21975,21976],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[21977,15502,21978,21979,15506,21980],"properties":{"zvalue":-13,"depth":135}},{"type":"LineString","arcs":[21981,21982,21983,21984,21985],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[21986,21987,21988,21989,21990],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21991,21992],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[21993],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21994],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21995],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[21996,21997,21998,21999],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[22000,22001,22002,22003,22004,22005,22006,22007],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[22008],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[22009,22010,22011,22003,22012,22013,22014,22015],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[22016,22017,22018],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[22019,22020,22021,22022,22023,22024,22025],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[22026,22027,22028,22029,22030,22031],"properties":{"zvalue":-15,"depth":155}},{"type":"LineString","arcs":[22032,22033,-21984,22034,-21982],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22035],"properties":{"zvalue":0,"depth":0}},{"type":"LineString","arcs":[22036],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22037],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22038],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22039],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22040],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[22041],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[22042,22043],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[22044],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22045,22046,22047],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22048,22049],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22050,22051,22052,20538,22053,22054,22055],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22056,22057,22058,22059,22060,22061,22062,22063],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22064,22065],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22066,22067,22068,22069,22070,22071,22072,22073,22074,22075,22076,22077,22078,22079,22080,22081,22082,22083,22084,22085,22086,22087,22088,22089,22090,22091,22092,22093,22094,22095,22096,-20009,22097,22098,22099,22100,22101,22102,-20000,22103,22104,22105,22106,22107,22108,22109,22110],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[22111,22112,22113,22114,22115,22116,22117,22118,22119,22120,22121,-20288,22122,22123,22124,22125,22126,22127,22128,22129,22130,22131,22132,22133,22134,22135,22136,22137,22138,22139,19610,-20370,22140,22141,22142,22143,22144,19616,22145,22146,-20363,22147,22148,20338,22149,22150,22151,22152,22153,22154,22155,19634,19635,22156,22157,20960,22158,22159,22160,22161,22162,22163],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[22164,22165,21482,22166,22167,22168,19967,22169,22170,22171,22172,22173,22174,22175,22176,22177,-19634,22178,22179,22180,22181,22182,22183,22184,22185,21501,22186,22187,22188,22189,22190,22191,22192,22193,21511,22194,22195,22196,22197,21515,22198,22199,22200,22201,21519,22202,22203,22204,22205,22206,22207,22208,22209,22210,20687,22211,22212,22213,22214,22215,-19584,22216,20695,22217,22218,22219,22220,22221,22222,22223,20617,-20113,20618,22224,22225,22226,22227,22228,22229,22230,22231,22232,22233,22234,22235,22236,19860,22237,22238,22239,22240,22241,22242,22243],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[22244,19867,22245,22246,22247,22248,22249,19872,22250,22251,22252,22253,22254,22255,22256,22257,22258,20652,20653,22259,22260,22261,22262,22263,22264,20798,22265,22266,22267,22268,22269,22270,22271,22272,22273,22274,22275,22276,22277,22278,22279,22280,22281,19904,22282,22283,22284,19912,22285,22286,-20257,22287,22288,22289,22290,22291,22292,22293,22294,22295,22296,22297,19922,22298,22299,22300,-20845,-20844,22301,22302,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22313,22314,22315,22316,22317,22318,22319,22320,22321,22322,22323,22324,22325,22326,22327,22328,22329,22330,22331,22332,22333,22334],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[22335],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22336,22337,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,22354,22355,22356],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[22357,22358],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22370,22371,22372,22373,22374,22375,22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[22394,22395,22396,22397,22398,22399,22400,22401,22402,22403,22404,22405,22406,22407,22408,22409,22410,22411,22412,22413,22414,-22089,22415,22416,22417,22418,22419,22420],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[22421,-22015,22422,22423,22424,22425],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22426],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22427],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22428],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22429],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22430],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22431],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22432],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22433,22434,22435,22436,22437,22438,22439,22440,22441,22442,22443,22444,22445],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[22446,22447,22448],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[22449,22450,22451,22452,22453,22454],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[22455,22456,22457],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[22458,22459,22460],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[22461,22462,22463,22464,22465,-19461,22466,22467],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[22468,22469,22470],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[22471,22472,22473,22474,22475,22476,22477,22478,22479,22480,22481,22482,22483,22484,22485,22486,22487],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[22488],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[22489],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22490],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22491],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22492,22493,-22356,22494,-22354,22495,22496,22497,22498,22499,22500,22501,22502,22503],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[22504,22505,22506,22365,22507,22508,22509,22510,22511,22512],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[22513,22514,21276,22515,22516,22517,22518,22519,22520,22521,22511,22512,22522,22523,21286,22524,-21320,22525,-21317,22526,21412,22527],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22528,22529,22530],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22531,22532,22533,-20489,22534,22535,22536,22537,22538,22539,22540,22541],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22542],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[22543],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[22544,22545,22546,22547,22548],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[22549],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22550,22551,22552,22553,22554],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[22555,22556,22557],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[22558],"properties":{"zvalue":-11,"depth":110}},{"type":"LineString","arcs":[22559,22560,22561,-22539,22562,22563,22564,22565,22566,20488,22567,22568,22569,22570,22571,22572,22573,22574],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[22575],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[22576,22577],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[22578,22579],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22580,22581,22582],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[22583],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22584],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[22585,22586,22587,22588,22589,22590],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22591,22592,22593],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[22594],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22595],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22596],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22597],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22598],"properties":{"zvalue":-12,"depth":120}},{"type":"LineString","arcs":[22599],"properties":{"zvalue":-12,"depth":125}},{"type":"LineString","arcs":[22600],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[22601],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[22602],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[22603],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[22604],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[22605],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22606,22607],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22608],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22609],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22610],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[22611],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[22612],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22613],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22614],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22615],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[22616],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[22617],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22618],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22619],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22620,22621,22622,22623,22624,22625,22626,22627,22628,22629,22630,22631,22632,22633,22634,22635,22636,22637,22638,22639,22640,22641,22642],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22643,22644,22645,22646,22647,22648,22649,22650,22651,22652,22653,22654,22655,-22634,22656,22657,22658,22659,22660,22661,22662,22663,22664],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[22665],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[22666],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22667],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[22668],"properties":{"zvalue":-18,"depth":185}},{"type":"LineString","arcs":[22669,22670],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22671],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22672],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22673],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22674],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[22675],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[22676],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[22677],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22678],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22679],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22680],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22681],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[22682],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22683],"properties":{"zvalue":-19,"depth":195}},{"type":"LineString","arcs":[22684],"properties":{"zvalue":-19,"depth":190}},{"type":"LineString","arcs":[22685],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[22686],"properties":{"zvalue":-17,"depth":175}},{"type":"LineString","arcs":[22687],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[22688],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22689],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22690],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22691],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[22692],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22693,22694,22695,22378,22696,22697,22698],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22699,22700,22701,22702,22406,22703,22704,22705],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22706],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[22707,22708,22709,22710,-21970,22711,22712,22713,22714],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[22715],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[22716],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[22717],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22718],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22719],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[22720],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[22721,22722],"properties":{"zvalue":-16,"depth":160}},{"type":"LineString","arcs":[22723,22392,22724,22725,22726,22727,22728,22729,22730,22731,22732,22733,22734,22735,22736,22737,22738,22739,22740,22741,22742,22743,22744,22479,22745,22746,22747,22748,22749,22750,22751],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22752,22753,22339,22340,22754,22755,22756,22757,22758,22759],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22760],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22761,22762,22763,22764,22765,21672,22766,22767,22768,22769,22770,22771,22772,22773],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22774],"properties":{"zvalue":-60,"depth":60}},{"type":"LineString","arcs":[22775,22776,22777,22778],"properties":{"zvalue":-15,"depth":150}},{"type":"LineString","arcs":[22779],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[22780],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22781],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22782,22783,-22442,22784,22785,22786,22787,22788,22789,22790,22791,22792,22793],"properties":{"zvalue":-14,"depth":145}},{"type":"LineString","arcs":[22794,22795],"properties":{"zvalue":-13,"depth":130}},{"type":"LineString","arcs":[22796],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[22797],"properties":{"zvalue":-17,"depth":170}},{"type":"LineString","arcs":[22798,22799,22800,19564,22801,22802,22803,22804],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[22805,22806,22807,22808],"properties":{"zvalue":-65,"depth":65}},{"type":"LineString","arcs":[22809,22810],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22811],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22812,22813,22814,22815,22816,22817,22818,22819,22820,22821,22822,22823,22824,-22530,22825],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[22826,-22823,22827,22828,22829,22830,22831,22832,22833],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22834,22835,22836,22837],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22838,22839],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[22840,22841,22842,22843],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[22844,22845,22846,22847],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[22848,22849,22850,22851],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[22852,22853],"properties":{"zvalue":-11,"depth":115}},{"type":"LineString","arcs":[22854,22855,22856],"properties":{"zvalue":-10,"depth":105}},{"type":"LineString","arcs":[22857,22858,22859,22860,22861,22862,22863,22864],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[22865,22866],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[22867,22868,22866],"properties":{"zvalue":-85,"depth":85}},{"type":"LineString","arcs":[22869,22870,22871,22872,22873,22874,22875,6498,22876],"properties":{"zvalue":-80,"depth":80}},{"type":"LineString","arcs":[22877,22878],"properties":{"zvalue":-16,"depth":165}},{"type":"LineString","arcs":[22879],"properties":{"zvalue":-18,"depth":180}},{"type":"LineString","arcs":[22880],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22881,22882,22883,22884],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22885],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22886],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22887,22888,22889,22890],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[22891],"properties":{"zvalue":-55,"depth":55}},{"type":"LineString","arcs":[22892],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[22893,22894,22895,22896],"properties":{"zvalue":-75,"depth":75}},{"type":"LineString","arcs":[22897,22898,22899,22900,22901,22902,22903,22904,22905,22906,22907,22908,22909],"properties":{"zvalue":-70,"depth":70}},{"type":"LineString","arcs":[22910,22911,22912,22913,22914,22915,22916,22917,22918,22919,22920],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[22921,22922,22923,22924],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[22925],"properties":{"zvalue":-14,"depth":140}},{"type":"LineString","arcs":[22926,22927,22469,22928],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[22929,-22557,22930],"properties":{"zvalue":-10,"depth":100}},{"type":"LineString","arcs":[22931],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22932,22933,22934,22935,22936,22937,22938,22939,22940,22941],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22942],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22943],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22944,-22938,22945,22946,22947,22948,22949,22950],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[22951,22952,22953,22954,22955,22956,22957,22958,22959,22960,22961,22962,22963,22964],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[22965,22966,22967,22968,22969,22970,22971,22972,22973,22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[22987,22988],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[22989,22990,22991],"properties":{"zvalue":-20,"depth":20}},{"type":"LineString","arcs":[22992],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[22993],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[22994,22995,20558,22996,22997,22998,22999,23000],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[23001,23002,20563,20564,23003,-21620,23004],"properties":{"zvalue":-15,"depth":15}},{"type":"LineString","arcs":[23005,23006,23007,23008,23009,23010,23011,23012,23013,23014,23015,23016,23017,21274,23018,23019,23020,21279,23021,23022,23023,23024,23025,23026,23027,21287,23028,23029,23030,23031,23032,23033,23034,23035,23036,-21300,23037,-21295,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[23048,23049,23050,23051,21338,23052,23053,23054,-19357,23055],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[23056,23057,23058,23059,23060,23061,23062,23063],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[23064,23065,20720,23066,23067,23068,23069,23070,23071],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[23072,-21774,23073,23074,23075,23076,23077,23078,23079,23080,23081,23082,23083,23084,23085,23086,21753,23087],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23104,23105,21236,23106,23107,21239,23108,23109,21242,23110,23111,23112,23113,23114,23115,23116,23117],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[23118,23119,23120,23121,23122,-22385,23123,23124,23125,23126,23127,23128,21302,23129,23130,23131,21308,23132,23133],"properties":{"zvalue":-50,"depth":50}},{"type":"LineString","arcs":[23134,23135,23136,23137,21513,23138,23139,23140,23141,23142,23143,23144,23145,23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23161,23162,23163,23164,23165,23166,23167,-21228,21542,-21226,23168,23169,23170,23171,23172,23173,23174,-21221,23175,23176,23177,23178,23179,23180,-21208,23181,-21206,23182,-21184,-21203],"properties":{"zvalue":-45,"depth":45}},{"type":"LineString","arcs":[23183,23184,23185,23186,-23160,23187,23188,23189,23190,23191,-23153,23192,23193,23194,23195,23196,-23142,23197,23198,23199,-23136,23200,23201,23202,23057,23203,23204,23205,23206,23207,23208,23209,23210,23211,23212,23213,23214,23215,23216],"properties":{"zvalue":-40,"depth":40}},{"type":"LineString","arcs":[23217,23218],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[23219],"properties":{"zvalue":-95,"depth":95}},{"type":"LineString","arcs":[23220,23221],"properties":{"zvalue":-90,"depth":90}},{"type":"LineString","arcs":[23222,23223,23224,22424,23225,23226,22622,23227,23228,23229,23230],"properties":{"zvalue":-10,"depth":10}},{"type":"LineString","arcs":[23231,23232,23233,23234,23235,23236,23237],"properties":{"zvalue":-5,"depth":5}},{"type":"LineString","arcs":[23238],"properties":{"zvalue":-35,"depth":35}},{"type":"LineString","arcs":[23239],"properties":{"zvalue":-30,"depth":30}},{"type":"LineString","arcs":[23240],"properties":{"zvalue":-25,"depth":25}},{"type":"LineString","arcs":[23241],"properties":{"zvalue":-20,"depth":20}}]}},"arcs":[[[1228,4104],[-2,2],[-3,3],[-4,5],[-2,2],[-9,8],[-2,2],[-2,1],[-3,2],[-4,3],[-3,3],[-4,4],[-4,4],[-1,1],[-2,3],[-1,3],[-2,4],[0,4],[0,3],[1,2],[1,3],[2,2],[2,2],[1,2],[4,4],[2,2],[4,2],[4,3],[3,1],[4,1],[2,0],[2,1],[3,1],[4,1],[4,0],[3,1],[6,0],[5,0],[5,0],[7,0],[5,0],[5,1],[3,0],[10,2],[4,1],[1,0],[5,1],[3,2],[2,1],[3,3],[6,4],[2,1],[4,3],[3,4],[2,3],[1,4],[1,2],[1,3],[1,4],[1,2],[1,3],[0,3],[0,1],[1,2],[1,4],[1,2],[0,2],[1,2],[1,3],[0,2],[1,3],[-1,4],[-1,5],[-2,4],[-3,5],[-1,2],[-1,2],[-1,1],[-1,3],[0,2],[-1,3],[0,2],[0,4],[0,3],[0,2],[5,12],[2,3],[2,3],[1,2],[1,3],[1,5],[1,3],[1,2],[0,1],[1,3],[-1,4],[0,1],[0,2],[-1,3]],[[823,4107],[5,-2],[3,-1],[1,0],[1,0],[0,-1],[1,0]],[[3653,4102],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-16,7],[-7,2],[-6,3],[-7,3],[-4,2],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-4,4],[-6,8],[-2,1],[-1,2],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-2,2]],[[498,4044],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-2,-2],[-1,-1],[-2,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-2,0],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-3,-2],[-1,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-1,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[0,-1],[-3,-2],[-3,-4],[-1,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1]],[[3782,4012],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-3,-5],[-2,-5],[-1,-1],[-2,-3],[-5,-5],[-1,-1],[-1,0],[0,-1],[-1,0],[-4,-2],[-4,-3],[-4,-2],[-4,-3],[-1,0],[0,-1],[-1,0]],[[3168,4114],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[2,3],[1,2],[2,3],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[1,7],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,0]],[[980,4113],[0,1],[1,0],[0,1],[0,1],[1,0],[0,6],[-2,5],[0,1],[0,1],[-1,1],[0,1],[-3,5],[-2,5],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[2,1],[1,2]],[[2264,4132],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2434,3962],[-1,0],[-1,0],[-3,1],[-5,2],[-5,2],[-4,2],[-8,4],[-5,2],[-5,3],[-4,2],[-3,2],[-3,1],[-3,2],[-2,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-8,2],[-2,1],[-2,1],[-6,2],[-2,1],[-3,0],[-2,1],[-2,0],[-4,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-6,0],[-4,0],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-2,0],[-5,-1],[-3,-1],[-3,-2],[-4,-1],[-6,-3],[-27,-5],[-5,-2],[-6,-1],[-5,-1],[-2,-1],[-2,0],[-2,0],[-2,-1],[-3,0],[-2,0],[-2,0],[-4,0],[-5,-1],[-2,-1],[-5,-1],[-4,0],[-5,-2],[-3,-1],[-3,-1],[-4,0],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-3,-2],[-3,-1],[-6,-2],[0,-1],[-1,0],[-1,0],[0,-1]],[[2884,3961],[1,1],[2,4],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[7,2],[9,4],[5,2],[5,2],[5,3],[5,3],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[2,4],[3,6],[3,4],[1,5],[4,9],[3,10],[1,2],[2,7],[1,3],[1,7],[0,3],[1,6],[0,4],[0,1],[0,1],[0,1]],[[603,4027],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,2],[1,1],[5,9],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,2],[1,2],[1,1],[1,2],[2,2],[1,2],[2,1],[1,2],[1,1],[2,3],[5,8],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[5,7],[1,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[2,4],[1,2],[2,2],[1,2],[3,3],[1,3],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1]],[[2267,4026],[1,0],[1,1],[0,1],[1,0],[3,2],[2,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[5,0],[5,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0]],[[3077,4106],[-1,-1],[-1,-1],[-1,-1],[-9,-8],[-5,-5],[-12,-12],[-8,-8],[-3,-5],[-6,-9],[-2,-3],[-8,-12],[-2,-4],[-2,-5],[-1,-3],[-4,-12],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-12],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0]],[[2680,4163],[0,1],[-1,0],[0,1],[-1,0],[-3,7],[-2,5],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1]],[[4395,4066],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[3784,4042],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-2,3],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,4],[-1,4],[-1,6],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[687,4024],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-4,-8],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-3,-6],[-6,-7],[-1,0]],[[4327,4021],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-3],[0,-10],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[4,-6],[3,-3],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[2,-5],[0,-1],[0,-1],[0,-1]],[[1876,4171],[1,0],[0,1],[1,0],[5,4],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[25,13],[1,1],[2,1],[2,0],[2,1],[2,2],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,2],[0,1]],[[3923,4059],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-4],[0,-4],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2]],[[719,4071],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,-2],[-12,-10],[0,-3],[-2,-7],[0,-4],[-2,-6],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1]],[[4292,4162],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-5,9],[-4,9],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-3,4],[-2,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,5],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[2,2],[0,1],[0,1],[-1,0]],[[2719,4182],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2692,4162],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[2274,4097],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-6,-1],[-7,-1],[-7,-1],[-4,-1],[-13,-3],[-7,-2],[-5,-1],[-13,-3],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-3,-1],[-6,-2],[-6,-1],[-6,-1],[-6,-2],[-9,-3],[-11,-3],[-6,-2],[-8,-2],[-7,-2],[-9,-4],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,0]],[[515,4072],[-4,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-3,-5],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-4,-5],[-4,-4],[-1,0],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[-1,0]],[[2253,4084],[-14,-3],[-13,-3],[-4,-1],[-5,-1],[-5,-1],[-5,-1],[-5,-1],[-1,-1],[-25,-6],[-7,-2],[-7,-1],[-6,-2],[-7,-2],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1]],[[1987,4183],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-6,-1]],[[591,4174],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1]],[[595,4171],[0,-1],[-1,0],[-1,0],[-1,0]],[[592,4170],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[1,0]],[[4408,4042],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-3],[1,-1],[0,-1],[1,-2],[1,0],[0,-1],[0,-1]],[[610,3955],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[2,7],[1,2],[1,7],[1,3],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,10],[0,2],[0,1],[0,1]],[[2465,4283],[-1,0],[-8,-4],[-8,-3],[-6,-4],[-5,-2],[-11,-6],[-5,-3],[-3,-1],[-10,-5],[-8,-5],[-11,-5],[-8,-5],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-7,-3],[-11,-4],[-13,-5],[-8,-2],[-2,0],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-5,-3],[-9,-5],[-9,-4],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[1375,4161],[29,5],[8,1],[9,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,1],[2,0],[1,0],[2,1],[2,0],[1,0],[2,0],[2,1],[1,0],[2,0],[2,0],[2,0],[1,0],[1,1],[2,0],[3,0],[2,1],[3,0],[3,1],[2,0],[3,0],[2,1],[3,0],[2,0],[2,0],[2,0],[2,1],[2,0],[3,0],[2,0],[2,1],[1,0],[1,0],[3,0],[3,1],[3,0],[15,3],[10,1],[12,2]],[[1878,4161],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[4,1],[4,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[7,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[4271,4037],[-2,4],[-2,4],[-2,6],[0,2],[-2,7],[0,2],[-1,2],[-3,6],[-2,5],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-3,4],[-6,9],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-2,3],[0,3],[-1,3],[-5,9],[-1,2],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-2,3],[-5,9],[-5,10],[-4,9]],[[2714,3980],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[2,0],[2,-1],[2,-1],[1,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0]],[[2084,3967],[1,0],[1,0],[0,1],[1,0],[19,5],[10,1],[11,2],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[5,2],[4,3]],[[2263,4200],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-5,-1],[-8,-2],[-8,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-16,-3],[-8,-1],[-13,-2],[-11,-3],[-17,-3],[-9,-1],[-13,-4],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1]],[[612,4167],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2415,4167],[10,2],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[4445,3966],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2031,3963],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[4448,3954],[1,0],[1,0],[0,-1],[1,0]],[[549,4110],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1]],[[1009,4097],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[3,4],[3,4],[0,2],[0,1],[1,7],[-1,1],[-1,6],[0,2],[0,2],[-1,6],[0,3],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,2],[2,2]],[[2392,4127],[-3,-1],[-3,0],[-4,-1],[-2,0],[-14,-2],[-11,-1],[-17,-4],[-7,-1],[-17,-4],[-9,-2],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-7,-3],[-1,-1],[-3,-1],[-3,-2],[-1,0],[-1,-1],[-1,0]],[[4443,3970],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[4257,3966],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-4,6],[-5,9],[-1,3],[-4,8],[-4,9],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,1],[-2,3],[-4,4],[-4,6],[-4,5],[-2,4],[-2,3],[-4,7],[-1,2],[-2,4],[-1,4],[-1,3],[-1,3],[-2,3],[-2,4],[-2,3],[-1,3],[0,3],[-3,7],[-2,4],[-2,7],[-3,5],[-1,5],[-2,4],[-1,6],[-2,9],[-4,9],[-3,10],[-3,9],[-1,2],[-3,7],[-2,10],[-3,10],[-1,10],[-2,9],[-1,4],[-1,6],[0,3],[-1,5],[1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[-1,6],[-1,4],[-4,10],[-4,9],[0,3],[-1,3],[-1,4],[-1,2],[-1,5],[-1,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1]],[[2155,4126],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0]],[[809,4143],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-6,-2],[-2,-1],[-4,-2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[3,-2],[3,-1],[3,0],[3,-1],[3,-1],[3,-1],[6,-2],[11,-3]],[[1535,3950],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[3,0],[2,1],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[5,1],[5,1],[3,1],[4,1],[7,2],[4,1],[6,2],[7,1],[4,1],[7,1],[9,1],[7,1],[8,2],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[6,1],[7,1],[6,1],[7,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[4381,3981],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-3],[2,-3]],[[3025,4487],[0,-1],[-1,0],[0,-1],[0,-5],[0,-9],[-1,-4],[-1,-6],[-2,-5],[-1,-5],[0,-6],[0,-3],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-7,-3],[-4,-3],[-10,-3],[-7,-2],[-6,-1],[-11,-1],[-5,-1],[-9,-1],[-9,-1],[-4,0],[-5,0],[-8,-1],[-7,-1],[-9,-1],[-15,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-4,0],[-5,-1]],[[2587,4398],[2,2],[3,3],[4,4],[2,3],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,1],[2,0],[1,0],[2,0],[2,0],[2,0],[5,0],[4,0],[5,0],[5,-1],[4,0],[13,0],[13,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[3,-1],[3,0],[2,0],[25,0],[26,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[10,0],[6,0],[9,0],[9,0],[12,0],[6,0],[8,1],[5,1],[4,0],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[2,0],[3,0],[2,0]],[[2340,4427],[1,-1],[1,0],[1,0],[15,-3],[13,-4],[6,-3],[6,-3],[1,0],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0]],[[2065,4005],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,-3],[-6,-6],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1]],[[1557,3965],[1,0],[2,0],[1,1],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[2,0],[2,0],[1,1],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[2,1],[3,0],[1,0],[0,1],[1,0]],[[3796,4107],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,3],[-1,2],[-1,3],[-1,4],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,4],[2,5],[2,4],[2,2],[1,3],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,2],[-2,3]],[[3114,4227],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-3,-3],[-3,-5],[-5,-4],[-5,-5],[-7,-6],[-3,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-5],[0,-2],[0,-5],[1,-8],[0,-5],[0,-4],[0,-3],[0,-5],[0,-3],[-1,-2],[0,-3],[-2,-4],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1]],[[1905,4179],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-7,-4],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[1863,4324],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-6],[-4,-6],[-2,-3],[-3,-3],[-5,-6],[-7,-11],[-3,-6],[-2,-7],[-1,-6],[2,-8],[5,-7],[7,-7],[6,-4],[22,-10],[7,-2],[4,-3],[6,-3],[6,-4],[4,-3],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-3,-5],[-7,-6],[-4,-2],[-2,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0]],[[3782,4164],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-3,2],[-3,1],[-5,3],[-4,2],[-5,2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,1],[-7,3],[-6,2],[-8,3],[-7,3],[-3,2],[-5,1],[-3,1],[-3,3],[-5,2],[-5,3],[-5,4],[-1,0],[0,1]],[[851,4318],[-1,0],[-4,4],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[2100,4357],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1]],[[891,4350],[-1,-1],[-1,-1],[-2,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-3,-4],[-1,0],[0,-1]],[[2015,4000],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-6,-6],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-3,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-5,-2],[-9,-2],[-6,-1],[-8,-2],[-7,-1],[-5,-1],[-8,-2],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-8,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[1921,3964],[-1,0],[-1,0],[0,-1]],[[3711,4175],[-1,0],[-1,0],[-7,4],[-7,2],[-3,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-5,2],[-7,3],[-5,1],[-2,1],[-4,2],[-4,2],[-4,2],[-6,2],[-4,2],[-4,2],[-2,2],[-2,2],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2692,4106],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1]],[[1602,4110],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[2698,4031],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-3,1],[-4,1],[-3,0],[-4,1],[-3,1],[-2,1],[-3,1],[-2,1],[-3,0],[-2,1],[-3,1],[-2,1],[-2,1],[-3,1],[-2,1],[-3,1],[-7,3],[-8,6],[-5,2],[-6,3],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,2],[-2,1],[-3,2],[-2,2],[-2,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0]],[[3190,4164],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[980,4164],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[3,4],[8,14],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,2],[0,8],[0,5],[-1,2],[-1,3],[0,5],[1,2],[0,2],[1,8],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[3,2],[5,7],[4,4],[3,3],[2,3],[1,1],[0,1],[2,3],[4,4],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1]],[[934,4382],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,-10],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-2],[-1,-2],[-7,-5],[-11,-10],[-2,-3],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-3,-3],[-1,-1],[0,-1],[-1,-1],[0,-1],[-6,-6],[0,-1],[-1,0]],[[862,4315],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0]],[[4098,4446],[1,-2],[1,-3],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,-6],[3,-4],[1,-2],[1,-2],[2,-3],[1,-2],[1,-3],[3,-7],[2,-2],[1,-2],[3,-4],[0,-1],[2,-1],[2,-3],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[1,-2],[2,-4],[2,-2],[2,-3],[3,-4],[5,-6],[3,-2],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[3,-5],[2,-5],[2,-3],[2,-3],[2,-4],[2,-3],[3,-5],[1,-1],[2,-2],[3,-3],[1,0]],[[4183,4314],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[2,-4],[1,-4],[1,-2],[2,-5],[2,-3],[1,-2],[4,-9],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-4],[1,-5],[1,-5],[2,-6],[2,-3],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[2,-2],[1,-1],[1,-2],[1,-1],[2,-2],[5,-7],[2,-3],[2,-3],[5,-6],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[5,-4],[4,-4],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[2,-5],[2,-5],[2,-5],[1,-1],[0,-1],[1,-1]],[[588,4176],[1,0],[1,0],[1,0],[0,-1],[0,-1]],[[1961,4174],[3,0],[2,1],[3,0],[3,1],[3,1],[1,0],[3,1],[7,1],[6,1],[7,1],[8,1],[10,2],[7,1],[5,1],[10,1],[12,3],[9,2],[8,2],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0]],[[955,4175],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-10],[-1,-2],[-6,-15],[-5,-6],[-2,-3],[-3,-3],[-7,-7],[-2,-3],[-5,-7],[-3,-4],[0,-2],[-1,-3],[-1,-1],[-3,-5],[-1,-2],[-2,-3],[-2,-2],[-2,-2],[-2,-3],[-3,-2],[-3,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-7,-6],[-3,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1]],[[1752,4030],[5,6],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[11,6],[1,0],[0,1],[1,0],[2,2],[1,0],[0,1],[4,2],[1,2],[2,0],[1,1],[2,1],[2,1],[2,0],[8,4],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0]],[[4343,4097],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-4],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-3],[1,-7],[2,-10],[1,-9],[2,-10],[0,-4]],[[721,4164],[1,0],[1,3],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,2],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[4,4],[0,1],[1,0],[0,1],[0,1],[1,0],[0,3],[0,1]],[[2745,4197],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,-2],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-3,-9],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1]],[[3205,4383],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-11,-3],[-5,-1],[-4,-2],[-11,-4],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-7,-7],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-3,-5],[-2,-2],[-3,-5],[-1,-3],[-3,-4],[-3,-4]],[[4385,4044],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-2],[2,-3],[1,-2],[2,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1]],[[2894,4022],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[3,-4],[4,-6],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-2,-2],[0,-2],[-3,-3],[-4,-5],[-1,-2],[-3,-2],[-6,-6],[-2,-1],[-3,-3],[-1,-2]],[[2939,4173],[1,1],[5,2],[5,3],[4,1],[5,2],[5,2],[15,3],[9,3],[8,3],[6,2],[4,2],[5,3],[4,3],[4,3],[2,3],[0,1],[1,1],[0,1],[0,1],[0,1],[-2,5],[-1,1],[-2,4],[-2,4],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,5],[0,3],[0,1]],[[1870,4172],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[2,1],[3,2],[2,2],[3,1],[1,2],[3,2],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[1695,4173],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-2,0],[-2,0],[-1,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-18,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-3,0],[-3,0],[-3,-1],[-4,0],[-3,0],[-3,0],[-3,-1],[-14,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0]],[[477,4038],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[-6,-3],[-1,-1]],[[2424,4036],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[2087,3958],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1]],[[1876,4101],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[9,5],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[2174,4101],[1,0],[4,0],[4,0],[3,1],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[3,0],[7,1],[6,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[8,1],[1,0],[1,0],[1,0],[1,0]],[[1334,4101],[-1,0],[-1,0],[-1,0],[-2,1],[-3,0],[-1,1],[-2,0],[-2,0],[-3,1],[-3,0],[-2,0],[-4,1],[-4,1],[-4,1],[-3,1],[-2,1],[-2,0],[-2,0],[-2,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,2],[-2,1],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[0,2],[0,2],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[2,2],[4,3],[2,1],[8,3],[8,3],[6,2],[5,1],[4,2],[4,2],[4,1],[2,1],[4,2],[3,1],[2,0],[3,1],[2,0],[3,1],[3,0],[2,0],[6,1],[6,0],[6,1],[3,1]],[[3468,3978],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[2,-1],[2,0],[2,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1]],[[4434,3994],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[551,4114],[1,0]],[[552,4114],[0,-1],[1,0],[0,-1],[0,-1]],[[3441,4142],[-4,-12],[-5,-5],[-4,-5],[-3,-2],[-4,-2],[-9,-2],[-9,-2],[-8,-1],[-10,0],[-13,1],[-7,1],[-13,2],[-9,4],[-9,6],[-9,6],[-11,6],[-18,10],[-4,3],[-4,3],[-3,2],[-2,2],[-2,2],[-1,3],[-2,2],[-1,3],[-2,3],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,2],[1,1],[1,1],[1,2],[1,1],[2,1],[1,2],[1,2],[2,2],[1,2],[2,2],[1,2],[1,2],[2,4],[1,1],[0,7],[0,1],[-1,0],[0,1],[0,1]],[[1693,4123],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-13,-3],[-3,0],[-3,-1],[-3,0],[-3,0],[-1,0],[-4,0],[-3,0],[-3,0],[-3,0],[-3,0],[-4,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-6,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1]],[[4105,3958],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-7,8],[-2,2],[-9,9],[-1,1],[-4,8],[-3,5],[-4,6],[-5,10],[-1,2],[-1,1],[-1,6],[-2,10],[-1,9],[-4,10],[-1,2],[-2,2],[-3,5],[-2,6],[-1,2],[-1,2],[-4,9],[-3,9],[-6,10],[-4,7],[-2,3],[-6,10],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,4],[-1,4],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,0],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,3],[-1,2],[-2,3],[-1,2],[0,1],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1]],[[1692,3958],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,1],[6,3],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[2,0],[1,0],[8,4],[3,1],[8,3],[11,5],[4,3],[5,7],[3,3],[7,6],[2,3],[6,7],[3,3],[2,2],[2,2],[3,3],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0]],[[860,4188],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-7,-5],[0,-2],[-2,-2],[-1,-3],[1,-7],[-1,-1],[1,-1],[2,-7],[0,-1],[1,-1],[0,-5],[-2,-3],[-2,-4],[-1,-2],[-1,-3],[-6,-8],[-1,-1],[-3,-6],[-1,-1],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,-3],[0,-1],[2,-2],[3,-3],[3,-2],[1,-2]],[[2730,4102],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,1],[1,0],[4,2],[1,0],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[2,0],[1,1],[9,3],[3,1],[6,5],[3,3],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[3,3],[5,4]],[[4059,3970],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,2],[0,1],[-1,1],[-1,2],[-6,10],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[3669,3969],[0,1],[2,3],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-2,4],[-2,6],[-1,5],[-2,5],[-1,2],[-1,7],[-1,4],[-1,6],[0,3],[1,7],[1,9],[2,9],[2,10],[3,9],[2,5],[2,5],[0,3],[0,6],[-1,5],[0,1],[0,1],[-1,1],[-2,2],[-1,3],[-2,3],[-3,4],[-4,4],[-6,5],[-1,3],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,6],[0,4],[-1,4],[-1,6],[0,3],[-3,6],[-2,5],[-2,5],[-3,4],[-1,3],[-2,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[3063,4110],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[2,3],[2,4],[1,2],[1,3],[-1,2],[1,2],[0,4],[-1,4],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,4],[0,4],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1]],[[553,4111],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[789,4109],[0,1],[-1,0],[0,1],[-1,0],[-2,2],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0]],[[3159,4109],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1]],[[2020,3965],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[2962,3997],[-1,-1],[-7,-4],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,-1],[-6,-3],[-7,-2],[-11,-4],[-6,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-3,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2021,3956],[1,0],[0,-1],[1,0]],[[2844,4080],[0,-1],[1,0],[1,0],[5,-6],[5,-3],[6,-6],[5,-5],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[3,-6],[2,-3],[1,-2],[2,-2],[2,-2],[2,-4],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[3973,4021],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,6],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,3],[-1,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-2,8],[0,1],[-2,3],[-1,2],[0,1]],[[3804,3897],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[2,4],[2,4],[2,2],[1,2],[1,2],[0,2],[1,2],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,6],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[815,3896],[1,1],[1,3],[1,3],[2,3],[4,8],[0,2],[2,7],[0,2],[5,10],[1,3],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,2],[1,2],[0,2],[1,2],[1,2],[0,2],[1,1],[0,2],[1,1],[0,2],[1,1],[1,3],[1,4],[1,3],[2,9],[2,9],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,9],[-1,3],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[2,1],[2,2],[2,1],[2,2],[1,1],[1,1],[1,1],[2,1],[5,4],[3,2],[3,3],[11,10],[3,2],[1,2],[2,3],[2,2],[4,5],[2,5],[1,0],[0,1],[1,2],[1,1],[1,1],[0,1],[1,1]],[[2242,4108],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[10,3],[5,3],[17,7],[4,2],[3,2],[3,2],[4,2],[2,2],[2,2],[2,1],[2,2],[2,2],[2,2],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[976,4096],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-5,-3],[-2,-1],[-4,-3],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-3,-6],[-2,-4],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-6,-4],[-7,-5],[-5,-4],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1]],[[1296,4419],[-4,-4],[-5,-4],[-3,-3],[-2,-3],[-2,-1],[-2,-3],[-1,-2],[-2,-2],[-1,-1],[-1,-2],[-1,-1],[-3,-3],[-2,-2],[-2,-2],[-7,-6],[-3,-3],[-8,-10],[-9,-9],[-2,-2],[-1,-2],[-1,-2],[-2,-4],[-2,-4],[0,-2],[-1,-1],[0,-2],[-1,-3],[-1,-1],[-1,-3],[0,-2],[0,-1],[-1,-5],[0,-5],[1,-6],[-3,-12],[0,-2],[-1,-4],[-1,-2],[-1,-3],[0,-2],[-1,-3],[0,-2],[-1,-2],[0,-3],[1,-4],[0,-4],[1,-1],[0,-3],[0,-2],[1,-3],[1,-5],[0,-1],[2,-6],[1,-4],[2,-9],[1,-5],[0,-4],[0,-1],[0,-4],[0,-3],[-1,-1],[0,-2],[0,-3],[0,-3],[-1,-2],[0,-1],[-2,-4],[0,-1],[-2,-3],[-3,-2],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-7,-3],[-5,-1],[-6,-2],[-6,-1],[-4,-2],[-6,-1],[-2,0],[-9,-2],[-4,-1],[-7,-1],[-5,0],[-8,-2],[-9,-1],[-7,-1],[-5,-1],[-4,0],[-4,-1],[-4,-1],[-4,-1],[-3,-1],[-3,-1],[-4,-1]],[[2367,4177],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0]],[[2728,4166],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-2,1],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0]],[[4295,4125],[0,-1],[0,-6],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[3,-5],[3,-4],[3,-4],[2,-4],[0,-2],[1,-5],[0,-4],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[4,-6],[2,-4],[1,-2],[1,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-10],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2151,4020],[3,3],[6,6],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[10,6],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[10,4],[15,7],[1,0],[2,0],[3,1],[3,1],[2,0],[14,3],[6,2],[5,2],[2,1],[2,0],[2,0],[2,1],[2,0],[2,0],[2,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[19,-1],[2,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[2,0],[2,0],[3,0],[2,0],[2,-1],[2,0],[3,0],[2,0],[2,-1],[2,0],[3,-1],[8,-1],[9,-1],[8,-1],[1,-1],[2,0],[2,0],[2,-1],[2,0],[1,-1],[2,0],[2,-1],[2,-1],[2,0],[2,-1],[2,0],[1,-1],[2,-1],[3,-1],[4,-1],[4,-2],[5,-2],[4,-1],[4,-2],[2,-1],[2,-1],[2,0],[1,-1],[2,0],[2,-1],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[2,0],[1,0],[0,-1]],[[2748,3969],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[4,-4],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,-5],[1,-4],[0,-1],[3,-8],[1,-1],[1,-6],[2,-4],[5,-5],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-3]],[[4032,3895],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-5,10],[-5,8],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[-1,4],[-1,4],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,4],[-1,0]],[[2997,3944],[-1,-1],[-6,-4],[-8,-8],[-2,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-3],[1,-2],[0,-2],[1,-2],[1,-2]],[[2043,4036],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[1,1],[0,2],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[2,2],[1,1],[2,2],[1,1],[2,1],[2,2],[2,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[9,2],[8,2],[17,3],[8,1],[8,1],[8,1],[6,1],[8,0],[12
@knutole
Copy link

knutole commented Oct 10, 2014

Hey, did you ever get bathymetry fill to work? Having trouble with it, and would love some input. Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment